Using Dialogflow, I had onLongPress to GiftedChat component like this:
<GiftedChat
onLongPress={this.onLongPress}
....
....
/>
onLongPress returns context, message. Then you can show an ActionSheet and add the logic to delete and copy.
onLongPress(context, message) {
console.log(context, message);
const options = ['copy', 'Delete Message', 'Cancel'];
const cancelButtonIndex = options.length - 1;
context.actionSheet().showActionSheetWithOptions({
options,
cancelButtonIndex
}, (buttonIndex) => {
switch (buttonIndex) {
case 0:
Clipboard.setString(this.props.currentMessage.text); this code not work and brakes my app :(
break;
case 1:
//code to delete
break;
}
});
}
Here i have the send properties of code:
sendBotResponse(text) {
let msg = {
_id: this.state.messages.length + 1,
text,
//createdAt: new Date(Date.UTC(2019, 5, 11, 17, 20, 0)),
createdAt: new Date(),
user: BOT_USER,
};
this.setState(previousState => ({
messages: GiftedChat.append(previousState.messages, [msg]),
}));
}
handleGoogleResponse(result) {
console.log(result);
let text = result.queryResult.fulfillmentMessages[0].text.text[0];
this.sendBotResponse(text);
}
onSend(messages = []) {
this.setState(previousState => ({
messages: GiftedChat.append(previousState.messages, messages),
}));
let message = messages[0].text;
Dialogflow_V2.requestQuery(
message,
result => this.handleGoogleResponse(result),
error => console.log(error)
);
}
I did a very silly mistake this only works in arrow function unless you bind this manually to the normal function so have to use the arrow function in onLongPress