作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在我的应用程序中集成 react-native-gifted-chat。
我的天才聊天代码是
<GiftedChat
composerHeight={COMPOSER_HEIGHT}
minInputToolbarHeight={COMPOSER_HEIGHT}
messages={this.state.messages}
onSend={messages => this.onSend(messages)}
user={{ _id: this.state.senderUserName }}
loadEarlier={this.state.loadEarlier}
isLoadingEarlier={this.state.isLoadingEarlier}
onLoadEarlier={this.onLoadEarlier}
placeholder="Type your message"
renderSend={this.renderSend}
alwaysShowSend={true}
renderActions={this.imageSend.bind(this)}
renderInputToolbar={this.renderInputToolbar}
renderBubble={this.renderBubble.bind(this)}
renderMessage={this.renderMessage.bind(this)}
renderMessageImage={this.renderMessageImage}
renderAvatar={null}
inverted={true}
/>
这里我需要使用自定义图像渲染器。我知道我需要使用 renderMessageImage 但我找不到合适的例子来实现它。
My RenderMessageImage is
renderMessage(props) {
if(this.state.messages.length !==0){
return <Message {...props}
/>;
}else{
return <View style={{flex:1, backgroundColor:'red'}}>
<Text>Hello no data found</Text>
</View>
}
return null
}
但它不起作用。
我的另一个问题是,如果没有任何消息,我需要显示有天赋的聊天屏幕,因为没有找到消息而不是白屏。我怎样才能实现这两个目标。
我需要这样的屏幕
最佳答案
您可以尝试从您的样式中删除 flex:1
可能是一个解决方案。
编辑
使用系统消息,如果 messages.length === 0
,则将其包含在您的消息列表中。
编辑 2
您必须创建一个叠加层,请参阅此处的示例:https://snack.expo.io/@xcarpentier/gifted-chat
render() {
return (
<>
{this.state.messages.length === 0 && (
<View style={[
StyleSheet.absoluteFill,
{
backgroundColor: 'white',
justifyContent: 'center',
alignItems: 'center',
bottom: 50
}]}>
<Image
source={{ uri: '/image/qLdPt.png' }}
style={{
...StyleSheet.absoluteFillObject,
resizeMode: 'contain'
}}
/>
</View>
)}
<GiftedChat
messages={this.state.messages}
onSend={(messages) => this.onSend(messages)}
renderCustomView={this.renderCustomView}
user={{
_id: 1,
}}
parsePatterns={linkStyle => [
{
pattern: /#(\w+)/,
style: { ...linkStyle, color: 'lightgreen' },
onPress: props => alert(`press on ${props}`),
},
]}
/>
</>
);
}
关于javascript - 如何使用 renderMessage、renderMessageImage 函数以及如何在消息对象为空时显示未找到的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54529508/
我正在我的应用程序中集成 react-native-gifted-chat。 我的天才聊天代码是 this.onSend(messages)} user={
我是一名优秀的程序员,十分优秀!