This is for a React Native Chat app.
My data should be something like this:
JavaScript
x
30
30
1
const data = [
2
{
3
id: 1,
4
name: John Doe,
5
messages: [
6
{text: 'Hello', sentAt: 'time here'},
7
{text: 'How are you?', sentAt: 'time here'},
8
{text: 'Can we meet?', sentAt: 'time here'}
9
]
10
image: { uri: "https://randomuser.me/api/portraits/med/men/97.jpg" },
11
},
12
{
13
id: 1,
14
name: Robert Smith,
15
messages: [
16
{text: 'Hi', sentAt: 'time here'},
17
{text: 'Can I call now?', sentAt: 'time here'},
18
]
19
image: { uri: "https://randomuser.me/api/portraits/med/men/97.jpg" },
20
},
21
{
22
id: 1,
23
name: Roy Pinkham,
24
messages: [
25
{text: 'Please give me a call', sentAt: 'time here'},
26
]
27
image: { uri: "https://randomuser.me/api/portraits/med/men/97.jpg" },
28
}
29
]
30
I am listing the Chat list using a FlatList:
JavaScript
1
21
21
1
<FlatList
2
data={data}
3
keyExtractor={(message) => message.id.toString()}
4
renderItem={({ item }) => (
5
<MessageItem
6
name={item.name}
7
message={item.messages.map((message) => message.text)}
8
image={item.image}
9
read={item.read} // Hard-coded value in data array
10
time={item.time} // hard-coded value in data array
11
renderRightActions={() => (
12
<MessageDelete onPress={() => deleteMessage(item)} />
13
)}
14
onPress={() => navigation.navigate("Chats", item)}
15
/>
16
)}
17
ListHeaderComponent={
18
showSearch && <Search query="" onSearchChange={onSearchChange} />
19
}
20
/>
21
The messages shows like this all stacked up and I am not what is the workaround. What I am trying to achieve is displaying the last message based on timestamp.
Advertisement
Answer
To get the last message of the messages array, set the message attribute of the MessageItem
element to the last message, like so:
JavaScript
1
2
1
message={item.messages[item.messages.length - 1].text}
2