Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
const conversations = [
{
id: '1',
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
title: 'Daryl Duckmanton',
createdAt: '10/6 4:20pm',
latestMessageText: 'This is a message',
messages: [
// {
// imageUrl: null,
// imageAlt: null,
// messageText: 'Ok then',
// createdAt: '10/6 4:20pm',
// isMyMessage: true
// },
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: `
Yeah I think it's best we do that. Otherwise things won't work well at all.
I'm adding more text here to test the sizing of the speech bubble and the
wrapping of it too.
`,
createdAt: '10/6 4:20pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: 'Maybe we can use Jim\'s studio.',
createdAt: '11/6 5:30pm',
isMyMessage: true
},
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: `
All I know is where I live it's too hard
to record because of all the street noise.
`,
createdAt: '11/6 5:30pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: `
Well we need to work out sometime soon where
we really want to record our video course.
`,
createdAt: '11/6 5:30pm',
isMyMessage: true
},
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: `
I'm just in the process of finishing off the
last pieces of material for the course.
`,
createdAt: '11/6 5:30pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: 'How\'s it going?',
createdAt: '10/7 7:30pm',
isMyMessage: true
},
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: ' Hey mate what\'s up?',
createdAt: '10/7 7:30pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: 'Hey Daryl?',
createdAt: '10/7 7:30pm',
isMyMessage: true
},
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: `
All I know is where I live it's too hard
to record because of all the street noise.
`,
createdAt: '11/6 5:30pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: `
Well we need to work out sometime soon where
we really want to record our video course.
`,
createdAt: '11/6 5:30pm',
isMyMessage: true
},
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: `
I'm just in the process of finishing off the
last pieces of material for the course.
`,
createdAt: '11/6 5:30pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: 'How\'s it going?',
createdAt: '10/7 7:30pm',
isMyMessage: true
},
{
imageUrl: sample,
imageAlt: 'Daryl Duckmanton',
messageText: ' Hey mate what\'s up?',
createdAt: '10/7 7:30pm',
isMyMessage: false
},
{
imageUrl: null,
imageAlt: null,
messageText: 'Hey Daryl?',
createdAt: '10/7 7:30pm',
isMyMessage: true
}
]
},
{
id: '2',
imageUrl: sample,
imageAlt: 'Kim O\'Neil',
title: 'Kim O\'Neil',
createdAt: 'Oct 20',
latestMessageText: 'Ok fair enough. Well good talking to you.',
messages: []
},
{
id: '3',
imageUrl: sample,
imageAlt: 'John Anderson',
title: 'John Anderson',
createdAt: '1 week ago',
latestMessageText: 'Yes I love how Python does that',
messages: []
},
{
id: '4',
imageUrl: sample,
imageAlt: 'Ben Smith',
title: 'Ben Smith',
createdAt: '2:49 PM',
latestMessageText: 'Yeah Miami Heat are done',
messages: []
},
{
id: '5',
imageUrl: sample,
imageAlt: 'Douglas Johannasen',
title: 'Douglas Johannasen',
createdAt: '6:14 PM',
latestMessageText: 'No it does not',
messages: []
},
{
id: '6',
imageUrl: sample,
imageAlt: 'Jacob Manly',
title: 'Jacob Manly',
createdAt: '3 secs ago',
latestMessageText: 'Just be very careful doing that',
messages: []
},
{
id: '7',
imageUrl: sample,
imageAlt: 'Stacey Wilson',
title: 'Stacey Wilson',
createdAt: '30 mins ago',
latestMessageText: 'Awesome!!! Congratulations!!!!',
messages: []
},
{
id: '8',
imageUrl: sample,
imageAlt: 'Stan George',
title: 'Stan George',
createdAt: '1 week ago',
latestMessageText: 'Good job',
messages: []
},
{
id: '9',
imageUrl: sample,
imageAlt: 'Sarah Momes',
title: 'Sarah Momes',
createdAt: '1 year ago',
latestMessageText: 'Thank you. I appreciate that.',
messages: []
}
];
|