mastodon/app/javascript/mastodon/features/ui/components/messaging/mockConversation.js

34 lines
742 B
JavaScript

export const mockMessages = [
{ text: 'oh hello there! 😋 ', who: 'theirs' },
{ text: 'General Emoji', who: 'ours' },
{ text: 'we just achieved comedy', who: 'theirs' },
]
;
export const mockMessages2 = [
{ text: 'oh oh oh ', who: 'theirs' },
{ text: 'General Emoji', who: 'ours' },
{ text: 'DANGER!!', who: 'theirs' },
{ text: 'JUST KIDDING WILL ROBINSON.', who: 'theirs' },
]
;
export const mockRecipient = [
{
id : 3,
username : 'chuck norris',
newMessages: 5,
messages : mockMessages,
},
]
;
export const mockRecipient2 = [
{
id : 4,
username : 'the Bo botte',
newMessages: 0,
messages : mockMessages2,
},
]
;