import { View, Text } from "react-native"; import React, { useState, useCallback, useEffect } from "react"; import { Bubble } from "react-native-gifted-chat"; import { useTailwind } from "tailwind-rn"; import "dayjs/locale/zh-cn"; import { GestureHandlerRootView, TouchableOpacity, } from "react-native-gesture-handler"; import AutoAnswerBtn from "../AutoAnswerBtn"; export default function OwnBubble({ navigation, route, onSend, currentMessage, ...props }) { const tailwind = useTailwind(); const [currentHeight, setCurrentHeight] = useState(null); return ( { const { height } = event.nativeEvent.layout; // 如果内容高度超过最小高度,动态更新气泡高度(可选) // console.log("气泡高度:", height, currentMessage._id); // 设置气泡的高度 // props.onLayout({ height }); setCurrentHeight((prev) => height); // currentOwnHeight = height; // 动态设置气泡的高度 }} > {/* {currentMessage.text} */} ) : ( currentMessage.text ), }} /> ); } const AutoMessage = ({ message = "", mType, height, currentMessage, ...props }) => { // console.log("data", height); const tailwind = useTailwind(); const test = message.split("|"); const btns = test[1].split(","); return ( {test[0]} {btns.map((item, index) => { return ; })} ); // data.m_type===1?it?.text.split("|")it?.text };