-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathchat_data.js
52 lines (47 loc) · 1.73 KB
/
chat_data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
let chats = [
{ "id": 1,
"user": "@promptbroker",
"last_message": "test message ",
"timestamp": "1 minute ago",
"image": "https://firebasestorage.googleapis.com/v0/b/promptbase.appspot.com/o/DALLE_IMAGES%2Fic5ASefHHEUQNeovrEKj0NqK5343%2Fresized%2F1680855838510_100x100.webp?alt=media&token=29379ebf-839f-4b1c-8371-e6fd0fdfd568"
},
{ "id": 2,
"user": "@hadgood",
"last_message": "much longer test message",
"timestamp": "just now",
"image": "https://firebasestorage.googleapis.com/v0/b/promptbase.appspot.com/o/DALLE_IMAGES%2FSUUXdtiIyIc8XKWDYL9noDx3GG73%2Fresized%2F1679531684727_100x100.webp?alt=media&token=b7478fe8-40ae-454f-b777-c79aa425fcb3"
},
{ "id": 3,
"user": "@7cloud",
"last_message": "lorem ipsum dolor sit amet",
"timestamp": "3 minutes ago",
"image": "https://firebasestorage.googleapis.com/v0/b/promptbase.appspot.com/o/DALLE_IMAGES%2FSUUXdtiIyIc8XKWDYL9noDx3GG73%2Fresized%2F1679531684727_100x100.webp?alt=media&token=b7478fe8-40ae-454f-b777-c79aa425fcb3"
},
]
let messages = [
{
"chat1": [
{ "id": 1,
"received": {
"user":"@hadgood",
"message": "hi"
},
"sent": {
"user":"@promptbroker",
"message": "hello"
}
},
{ id: 2,
"received": {
"user":"@hadgood",
"message": "hi"
},
"sent": {
"user":"@promptbroker",
"message": "hello"
}
}
]
}
]
export default chats