mr-chat-bird 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENCE +21 -0
- package/README.md +26 -0
- package/app/layout.tsx +69 -0
- package/app/page.tsx +9 -0
- package/dist/AddReaction-DCDVOMZB.svg +1 -0
- package/dist/TextFormat-R4ZVDKE2.svg +1 -0
- package/dist/index.css +388 -0
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +6425 -0
- package/dist/index.mjs +6420 -0
- package/eslint.config.mjs +11 -0
- package/index.ts +1 -0
- package/next-env.d.ts +5 -0
- package/next.config.mjs +30 -0
- package/package.json +69 -0
- package/postcss.config.cjs +14 -0
- package/public/favicon.svg +1 -0
- package/src/components/ChatUserList/ChatUserList.module.css +253 -0
- package/src/components/ChatUserList/ChatUserList.tsx +434 -0
- package/src/components/ChatUserList/ChatUserList.type.tsx +12 -0
- package/src/components/ChatUserList/ChatUserMessage.tsx +362 -0
- package/src/components/ChatUserList/users_list.json +648 -0
- package/src/components/ColorSchemeToggle/ColorSchemeToggle.tsx +15 -0
- package/src/components/EmojiPickerPopover/EmojiPickerPopover.tsx +72 -0
- package/src/components/MrChat/index.tsx +34 -0
- package/src/components/RichTextEditor/DropzoneMenuItem.tsx +33 -0
- package/src/components/RichTextEditor/EmojiNode.tsx +36 -0
- package/src/components/RichTextEditor/RichTextEditor.module.css +95 -0
- package/src/components/RichTextEditor/RichTextEditor.tsx +248 -0
- package/src/components/UserProfile/UserProfileDrawer.module.css +120 -0
- package/src/components/UserProfile/UserProfileDrawer.tsx +115 -0
- package/src/components/VirtualizedList/ChatScrollContainer.tsx +92 -0
- package/src/components/VirtualizedList/index.tsx +31 -0
- package/src/lib/axios.ts +12 -0
- package/src/lib/socket.ts +29 -0
- package/src/store/provider.tsx +8 -0
- package/src/store/slices/ChatSlice.ts +249 -0
- package/src/store/socket/index.tsx +32 -0
- package/src/store/store.ts +11 -0
- package/src/theme.ts +84 -0
- package/src/utils/environment.ts +5 -0
- package/src/utils/helper.ts +36 -0
- package/src/utils/icons/richText/Add.svg +1 -0
- package/src/utils/icons/richText/AddReaction.svg +1 -0
- package/src/utils/icons/richText/Docs.svg +1 -0
- package/src/utils/icons/richText/Image.svg +1 -0
- package/src/utils/icons/richText/TextFormat.svg +1 -0
- package/tsconfig.json +25 -0
|
@@ -0,0 +1,648 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"userId": "7036421",
|
|
4
|
+
"username": "paul53",
|
|
5
|
+
"displayName": "Scott Lamb",
|
|
6
|
+
"avatar": "https://i.pravatar.cc/150?img=1"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"userId": "7751072",
|
|
10
|
+
"username": "ysuarez",
|
|
11
|
+
"displayName": "Joseph Jenkins",
|
|
12
|
+
"email": "bethanyrivas@gordon-lopez.org"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"userId": "4741636",
|
|
16
|
+
"username": "trevoracevedo",
|
|
17
|
+
"displayName": "Kristen Lynch",
|
|
18
|
+
"avatar": "https://i.pravatar.cc/150?img=3"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"userId": "8760149",
|
|
22
|
+
"username": "denisereeves",
|
|
23
|
+
"displayName": "Douglas Hernandez",
|
|
24
|
+
"email": "cwalker@hotmail.com",
|
|
25
|
+
"avatar": "https://i.pravatar.cc/150?img=4"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"userId": "7860290",
|
|
29
|
+
"username": "tiffany20",
|
|
30
|
+
"displayName": "Lisa Rodriguez",
|
|
31
|
+
"avatar": "https://i.pravatar.cc/150?img=5"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"userId": "5779060",
|
|
35
|
+
"username": "kathleenaustin",
|
|
36
|
+
"avatar": "https://i.pravatar.cc/150?img=6"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"userId": "3703452",
|
|
40
|
+
"username": "kimberlyvelazquez",
|
|
41
|
+
"displayName": "Stephen Bates",
|
|
42
|
+
"avatar": "https://i.pravatar.cc/150?img=7"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"userId": "6411379",
|
|
46
|
+
"username": "gmueller"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"userId": "2237280",
|
|
50
|
+
"username": "pscott",
|
|
51
|
+
"displayName": "Amanda Fry",
|
|
52
|
+
"avatar": "https://i.pravatar.cc/150?img=9"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"userId": "4656816",
|
|
56
|
+
"username": "moranjonathan",
|
|
57
|
+
"displayName": "John White",
|
|
58
|
+
"avatar": "https://i.pravatar.cc/150?img=10"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"userId": "3190200",
|
|
62
|
+
"username": "rnelson",
|
|
63
|
+
"displayName": "Kristi Cardenas",
|
|
64
|
+
"email": "corey03@bray.biz",
|
|
65
|
+
"avatar": "https://i.pravatar.cc/150?img=11"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"userId": "5440578",
|
|
69
|
+
"username": "harringtonkimberly",
|
|
70
|
+
"displayName": "John Crosby",
|
|
71
|
+
"avatar": "https://i.pravatar.cc/150?img=12"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"userId": "4885496",
|
|
75
|
+
"username": "dylan10",
|
|
76
|
+
"displayName": "Christine Carson",
|
|
77
|
+
"email": "joshua84@harrison-booth.com",
|
|
78
|
+
"avatar": "https://i.pravatar.cc/150?img=13"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"userId": "4634667",
|
|
82
|
+
"username": "angelaramirez",
|
|
83
|
+
"displayName": "Michael Harris",
|
|
84
|
+
"email": "josephlopez@white.com",
|
|
85
|
+
"avatar": "https://i.pravatar.cc/150?img=14"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"userId": "5702972",
|
|
89
|
+
"username": "itran",
|
|
90
|
+
"displayName": "Jennifer Johnson",
|
|
91
|
+
"email": "milesryan@hotmail.com",
|
|
92
|
+
"avatar": "https://i.pravatar.cc/150?img=15"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"userId": "2785214",
|
|
96
|
+
"username": "conniebarr",
|
|
97
|
+
"displayName": "Haley Duffy",
|
|
98
|
+
"email": "watkinsstephanie@yahoo.com",
|
|
99
|
+
"avatar": "https://i.pravatar.cc/150?img=16"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"userId": "6435046",
|
|
103
|
+
"username": "brandon29",
|
|
104
|
+
"displayName": "Max Stein",
|
|
105
|
+
"avatar": "https://i.pravatar.cc/150?img=17"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"userId": "1446780",
|
|
109
|
+
"username": "imontgomery",
|
|
110
|
+
"displayName": "Megan Ross",
|
|
111
|
+
"avatar": "https://i.pravatar.cc/150?img=18"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"userId": "8563828",
|
|
115
|
+
"username": "martinmcdaniel",
|
|
116
|
+
"displayName": "Cynthia Allen",
|
|
117
|
+
"avatar": "https://i.pravatar.cc/150?img=19"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"userId": "6408653",
|
|
121
|
+
"username": "jasonbooth",
|
|
122
|
+
"displayName": "Jesse Hobbs",
|
|
123
|
+
"avatar": "https://i.pravatar.cc/150?img=20"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"userId": "1882055",
|
|
127
|
+
"username": "qparker",
|
|
128
|
+
"displayName": "Teresa Romero",
|
|
129
|
+
"email": "gillespieheather@yahoo.com",
|
|
130
|
+
"avatar": "https://i.pravatar.cc/150?img=21"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"userId": "9073447",
|
|
134
|
+
"username": "williamsanchez",
|
|
135
|
+
"displayName": "Michael Yang",
|
|
136
|
+
"avatar": "https://i.pravatar.cc/150?img=22"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"userId": "2740582",
|
|
140
|
+
"username": "caroladams",
|
|
141
|
+
"displayName": "Sara Burgess",
|
|
142
|
+
"email": "tdawson@davis-cruz.biz",
|
|
143
|
+
"avatar": "https://i.pravatar.cc/150?img=23"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"userId": "8800791",
|
|
147
|
+
"username": "daniellewillis",
|
|
148
|
+
"displayName": "Kristin Huerta",
|
|
149
|
+
"email": "johnsonpeter@yahoo.com",
|
|
150
|
+
"avatar": "https://i.pravatar.cc/150?img=24"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"userId": "6312408",
|
|
154
|
+
"username": "kochveronica",
|
|
155
|
+
"displayName": "Shelia Ellison",
|
|
156
|
+
"avatar": "https://i.pravatar.cc/150?img=25"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"userId": "3930592",
|
|
160
|
+
"username": "josephcox",
|
|
161
|
+
"displayName": "David Warren",
|
|
162
|
+
"email": "smithjenny@yahoo.com",
|
|
163
|
+
"avatar": "https://i.pravatar.cc/150?img=26"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"userId": "5745377",
|
|
167
|
+
"username": "westjennifer",
|
|
168
|
+
"displayName": "Michelle Simmons",
|
|
169
|
+
"email": "christina76@taylor.biz",
|
|
170
|
+
"avatar": "https://i.pravatar.cc/150?img=27"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"userId": "1233544",
|
|
174
|
+
"username": "christian34",
|
|
175
|
+
"displayName": "Jessica Reynolds MD",
|
|
176
|
+
"avatar": "https://i.pravatar.cc/150?img=28"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"userId": "3076089",
|
|
180
|
+
"username": "wrightsabrina",
|
|
181
|
+
"displayName": "Barbara Patterson",
|
|
182
|
+
"email": "danieldunn@keller-perez.org",
|
|
183
|
+
"avatar": "https://i.pravatar.cc/150?img=29"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"userId": "4076079",
|
|
187
|
+
"username": "reidlinda",
|
|
188
|
+
"displayName": "Emily Wheeler",
|
|
189
|
+
"avatar": "https://i.pravatar.cc/150?img=30"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"userId": "1910143",
|
|
193
|
+
"username": "gking",
|
|
194
|
+
"displayName": "Linda White",
|
|
195
|
+
"email": "nichole74@yahoo.com",
|
|
196
|
+
"avatar": "https://i.pravatar.cc/150?img=31"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"userId": "6768563",
|
|
200
|
+
"username": "sextonnicholas",
|
|
201
|
+
"displayName": "Jessica Lucas",
|
|
202
|
+
"email": "zdiaz@thomas.net",
|
|
203
|
+
"avatar": "https://i.pravatar.cc/150?img=32"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"userId": "2581511",
|
|
207
|
+
"username": "donnahorton",
|
|
208
|
+
"displayName": "Jesus Aguirre",
|
|
209
|
+
"email": "osbornepriscilla@gmail.com",
|
|
210
|
+
"avatar": "https://i.pravatar.cc/150?img=33"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"userId": "9815769",
|
|
214
|
+
"username": "hernandezjoseph",
|
|
215
|
+
"displayName": "Anne Holden MD",
|
|
216
|
+
"avatar": "https://i.pravatar.cc/150?img=34"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"userId": "8020976",
|
|
220
|
+
"username": "michellestuart",
|
|
221
|
+
"displayName": "Traci Cunningham",
|
|
222
|
+
"email": "lgonzalez@gmail.com",
|
|
223
|
+
"avatar": "https://i.pravatar.cc/150?img=35"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"userId": "3915464",
|
|
227
|
+
"username": "vdixon",
|
|
228
|
+
"displayName": "Mr. Steven Davis",
|
|
229
|
+
"avatar": "https://i.pravatar.cc/150?img=36"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"userId": "1859539",
|
|
233
|
+
"username": "rodriguezjoshua",
|
|
234
|
+
"displayName": "James Anderson",
|
|
235
|
+
"avatar": "https://i.pravatar.cc/150?img=37"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"userId": "1905847",
|
|
239
|
+
"username": "randallvincent",
|
|
240
|
+
"displayName": "Matthew Roberts",
|
|
241
|
+
"email": "sharon26@cooper.com",
|
|
242
|
+
"avatar": "https://i.pravatar.cc/150?img=38"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"userId": "4977720",
|
|
246
|
+
"username": "kentgarcia",
|
|
247
|
+
"displayName": "Francis Love",
|
|
248
|
+
"avatar": "https://i.pravatar.cc/150?img=39"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"userId": "6947604",
|
|
252
|
+
"username": "rbeard",
|
|
253
|
+
"displayName": "Sheila Harper",
|
|
254
|
+
"email": "kristin42@benson.info",
|
|
255
|
+
"avatar": "https://i.pravatar.cc/150?img=40"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"userId": "8208627",
|
|
259
|
+
"username": "kramerbenjamin",
|
|
260
|
+
"displayName": "Gregory Boyd",
|
|
261
|
+
"avatar": "https://i.pravatar.cc/150?img=41"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"userId": "4501323",
|
|
265
|
+
"username": "dianamartinez",
|
|
266
|
+
"displayName": "John Johnson",
|
|
267
|
+
"avatar": "https://i.pravatar.cc/150?img=42"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"userId": "4342767",
|
|
271
|
+
"username": "kimjoe",
|
|
272
|
+
"displayName": "Charles Conner",
|
|
273
|
+
"avatar": "https://i.pravatar.cc/150?img=43"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"userId": "2573585",
|
|
277
|
+
"username": "deniseward",
|
|
278
|
+
"displayName": "Gabrielle Garcia",
|
|
279
|
+
"avatar": "https://i.pravatar.cc/150?img=44"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"userId": "9792211",
|
|
283
|
+
"username": "williamsmichael",
|
|
284
|
+
"displayName": "Diana Jones",
|
|
285
|
+
"email": "lpena@wilson.com",
|
|
286
|
+
"avatar": "https://i.pravatar.cc/150?img=45"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"userId": "6368087",
|
|
290
|
+
"username": "nathaniel88",
|
|
291
|
+
"displayName": "Travis Allen",
|
|
292
|
+
"email": "jon72@hotmail.com",
|
|
293
|
+
"avatar": "https://i.pravatar.cc/150?img=46"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"userId": "7706511",
|
|
297
|
+
"username": "ireed",
|
|
298
|
+
"displayName": "Tracy Sanchez",
|
|
299
|
+
"avatar": "https://i.pravatar.cc/150?img=47"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"userId": "6860644",
|
|
303
|
+
"username": "fyoder",
|
|
304
|
+
"displayName": "Linda Kemp",
|
|
305
|
+
"email": "amandacarr@yahoo.com",
|
|
306
|
+
"avatar": "https://i.pravatar.cc/150?img=48"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"userId": "5134565",
|
|
310
|
+
"username": "bernardpaul",
|
|
311
|
+
"displayName": "Jessica Perry",
|
|
312
|
+
"email": "pearsonann@hogan-miller.net",
|
|
313
|
+
"avatar": "https://i.pravatar.cc/150?img=49"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"userId": "9375192",
|
|
317
|
+
"username": "hernandezarthur",
|
|
318
|
+
"displayName": "Collin Lynn",
|
|
319
|
+
"email": "normanholland@morales.com",
|
|
320
|
+
"avatar": "https://i.pravatar.cc/150?img=50"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"userId": "4419504",
|
|
324
|
+
"username": "kennethortega",
|
|
325
|
+
"displayName": "David Sims",
|
|
326
|
+
"avatar": "https://i.pravatar.cc/150?img=51"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"userId": "8710391",
|
|
330
|
+
"username": "fmccarthy",
|
|
331
|
+
"displayName": "Victoria Fletcher",
|
|
332
|
+
"email": "jillianberry@thompson-simpson.com",
|
|
333
|
+
"avatar": "https://i.pravatar.cc/150?img=52"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"userId": "4125262",
|
|
337
|
+
"username": "youngjulie",
|
|
338
|
+
"displayName": "James Bentley",
|
|
339
|
+
"avatar": "https://i.pravatar.cc/150?img=53"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"userId": "5874590",
|
|
343
|
+
"username": "harrisonalexandria",
|
|
344
|
+
"displayName": "Michelle Reyes",
|
|
345
|
+
"email": "pcole@yahoo.com",
|
|
346
|
+
"avatar": "https://i.pravatar.cc/150?img=54"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"userId": "1171541",
|
|
350
|
+
"username": "katherine38",
|
|
351
|
+
"displayName": "Mary Thomas",
|
|
352
|
+
"avatar": "https://i.pravatar.cc/150?img=55"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"userId": "6212527",
|
|
356
|
+
"username": "molson",
|
|
357
|
+
"displayName": "Emily Horne",
|
|
358
|
+
"email": "tmiddleton@yahoo.com",
|
|
359
|
+
"avatar": "https://i.pravatar.cc/150?img=56"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"userId": "1520546",
|
|
363
|
+
"username": "raymondheidi",
|
|
364
|
+
"displayName": "Dr. Timothy Henry",
|
|
365
|
+
"email": "charlesporter@alexander-douglas.com",
|
|
366
|
+
"avatar": "https://i.pravatar.cc/150?img=57"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"userId": "8695422",
|
|
370
|
+
"username": "yperez",
|
|
371
|
+
"displayName": "Matthew Gould",
|
|
372
|
+
"email": "alexanderwilliams@gmail.com",
|
|
373
|
+
"avatar": "https://i.pravatar.cc/150?img=58"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"userId": "1576474",
|
|
377
|
+
"username": "levinebrandon",
|
|
378
|
+
"displayName": "Steven Jones",
|
|
379
|
+
"email": "james05@stephenson-long.com",
|
|
380
|
+
"avatar": "https://i.pravatar.cc/150?img=59"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"userId": "3764960",
|
|
384
|
+
"username": "jeremyhuynh",
|
|
385
|
+
"displayName": "Veronica Martinez",
|
|
386
|
+
"avatar": "https://i.pravatar.cc/150?img=60"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"userId": "7813766",
|
|
390
|
+
"username": "marshallricky",
|
|
391
|
+
"displayName": "Thomas Martin",
|
|
392
|
+
"email": "todd46@yahoo.com",
|
|
393
|
+
"avatar": "https://i.pravatar.cc/150?img=61"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"userId": "3265121",
|
|
397
|
+
"username": "jessicaoconnell",
|
|
398
|
+
"displayName": "David Hoover",
|
|
399
|
+
"email": "jennifer58@hotmail.com",
|
|
400
|
+
"avatar": "https://i.pravatar.cc/150?img=62"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"userId": "8177761",
|
|
404
|
+
"username": "michaelsparks",
|
|
405
|
+
"displayName": "Jeffrey Hoffman",
|
|
406
|
+
"avatar": "https://i.pravatar.cc/150?img=63"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"userId": "5212768",
|
|
410
|
+
"username": "gomezjames",
|
|
411
|
+
"displayName": "Jennifer Shaw",
|
|
412
|
+
"avatar": "https://i.pravatar.cc/150?img=64"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"userId": "2316645",
|
|
416
|
+
"username": "timothylopez",
|
|
417
|
+
"displayName": "Alexander Hicks",
|
|
418
|
+
"email": "sandrasmith@yahoo.com",
|
|
419
|
+
"avatar": "https://i.pravatar.cc/150?img=65"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"userId": "2582937",
|
|
423
|
+
"username": "reynoldsbrad",
|
|
424
|
+
"displayName": "Theresa Willis",
|
|
425
|
+
"avatar": "https://i.pravatar.cc/150?img=66"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"userId": "1463707",
|
|
429
|
+
"username": "othompson",
|
|
430
|
+
"displayName": "Lauren Holmes",
|
|
431
|
+
"email": "charles40@hamilton-johnson.com",
|
|
432
|
+
"avatar": "https://i.pravatar.cc/150?img=67"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"userId": "2368693",
|
|
436
|
+
"username": "dholland",
|
|
437
|
+
"displayName": "Alexandra Hansen",
|
|
438
|
+
"email": "annlivingston@davis-spencer.com",
|
|
439
|
+
"avatar": "https://i.pravatar.cc/150?img=68"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"userId": "6792547",
|
|
443
|
+
"username": "nataliehenry",
|
|
444
|
+
"displayName": "Brian Henson",
|
|
445
|
+
"avatar": "https://i.pravatar.cc/150?img=69"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"userId": "6279552",
|
|
449
|
+
"username": "ewingmichael",
|
|
450
|
+
"displayName": "Eric Blackwell",
|
|
451
|
+
"avatar": "https://i.pravatar.cc/150?img=70"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"userId": "5284305",
|
|
455
|
+
"username": "jcox",
|
|
456
|
+
"displayName": "Eric Anderson",
|
|
457
|
+
"email": "hleonard@mitchell.com",
|
|
458
|
+
"avatar": "https://i.pravatar.cc/150?img=1"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"userId": "7124467",
|
|
462
|
+
"username": "christine01",
|
|
463
|
+
"displayName": "Jeffrey Adams",
|
|
464
|
+
"avatar": "https://i.pravatar.cc/150?img=2"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"userId": "9947233",
|
|
468
|
+
"username": "holly09",
|
|
469
|
+
"displayName": "Beth Cooper",
|
|
470
|
+
"avatar": "https://i.pravatar.cc/150?img=3"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"userId": "4481447",
|
|
474
|
+
"username": "hstephens",
|
|
475
|
+
"displayName": "James Montes",
|
|
476
|
+
"email": "oandersen@yahoo.com",
|
|
477
|
+
"avatar": "https://i.pravatar.cc/150?img=4"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"userId": "2136050",
|
|
481
|
+
"username": "lewispaul",
|
|
482
|
+
"displayName": "Alexander Green",
|
|
483
|
+
"avatar": "https://i.pravatar.cc/150?img=5"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"userId": "7517470",
|
|
487
|
+
"username": "haroldroy",
|
|
488
|
+
"displayName": "Karen Arroyo",
|
|
489
|
+
"avatar": "https://i.pravatar.cc/150?img=6"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"userId": "6153183",
|
|
493
|
+
"username": "nbrown",
|
|
494
|
+
"displayName": "Eileen White",
|
|
495
|
+
"avatar": "https://i.pravatar.cc/150?img=7"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"userId": "6159881",
|
|
499
|
+
"username": "mayopatrick",
|
|
500
|
+
"displayName": "Joanne Clark",
|
|
501
|
+
"avatar": "https://i.pravatar.cc/150?img=8"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"userId": "4545032",
|
|
505
|
+
"username": "jonesbriana",
|
|
506
|
+
"displayName": "Joshua Hogan",
|
|
507
|
+
"avatar": "https://i.pravatar.cc/150?img=9"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"userId": "1877889",
|
|
511
|
+
"username": "david27",
|
|
512
|
+
"displayName": "Amanda Smith",
|
|
513
|
+
"avatar": "https://i.pravatar.cc/150?img=10"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"userId": "8011103",
|
|
517
|
+
"username": "samanthamontgomery",
|
|
518
|
+
"displayName": "Michelle James",
|
|
519
|
+
"avatar": "https://i.pravatar.cc/150?img=11"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"userId": "1770816",
|
|
523
|
+
"username": "jasonhawkins",
|
|
524
|
+
"displayName": "Krystal Montoya",
|
|
525
|
+
"email": "carol49@hawkins.com",
|
|
526
|
+
"avatar": "https://i.pravatar.cc/150?img=12"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"userId": "7398757",
|
|
530
|
+
"username": "fstrickland",
|
|
531
|
+
"displayName": "Jesse Foster",
|
|
532
|
+
"avatar": "https://i.pravatar.cc/150?img=13"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"userId": "6174493",
|
|
536
|
+
"username": "vanessa41",
|
|
537
|
+
"displayName": "Travis Werner",
|
|
538
|
+
"avatar": "https://i.pravatar.cc/150?img=14"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"userId": "5698330",
|
|
542
|
+
"username": "leah20",
|
|
543
|
+
"displayName": "Lisa Davis",
|
|
544
|
+
"email": "mannwilliam@singh.com",
|
|
545
|
+
"avatar": "https://i.pravatar.cc/150?img=15"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"userId": "5919037",
|
|
549
|
+
"username": "garciashane",
|
|
550
|
+
"displayName": "Sean Murphy",
|
|
551
|
+
"email": "hgonzalez@avila.info",
|
|
552
|
+
"avatar": "https://i.pravatar.cc/150?img=16"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"userId": "4577301",
|
|
556
|
+
"username": "margaret94",
|
|
557
|
+
"displayName": "Blake Mcfarland",
|
|
558
|
+
"avatar": "https://i.pravatar.cc/150?img=17"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"userId": "2155330",
|
|
562
|
+
"username": "amberarellano",
|
|
563
|
+
"displayName": "Jonathan Hawkins",
|
|
564
|
+
"email": "rebecca14@reynolds-carlson.com",
|
|
565
|
+
"avatar": "https://i.pravatar.cc/150?img=18"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"userId": "4843253",
|
|
569
|
+
"username": "villarrealannette",
|
|
570
|
+
"displayName": "Angel Gonzales",
|
|
571
|
+
"avatar": "https://i.pravatar.cc/150?img=19"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"userId": "1906659",
|
|
575
|
+
"username": "andrea21",
|
|
576
|
+
"displayName": "Sarah Fitzgerald",
|
|
577
|
+
"email": "smithrachel@shaw.com",
|
|
578
|
+
"avatar": "https://i.pravatar.cc/150?img=20"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"userId": "2119584",
|
|
582
|
+
"username": "gsmith",
|
|
583
|
+
"displayName": "Rachel Hamilton",
|
|
584
|
+
"email": "angelajones@nixon.com",
|
|
585
|
+
"avatar": "https://i.pravatar.cc/150?img=21"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"userId": "4752319",
|
|
589
|
+
"username": "gflores",
|
|
590
|
+
"displayName": "Larry Larson",
|
|
591
|
+
"email": "deborah84@hotmail.com",
|
|
592
|
+
"avatar": "https://i.pravatar.cc/150?img=22"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"userId": "5512539",
|
|
596
|
+
"username": "terrihart",
|
|
597
|
+
"displayName": "Melissa James",
|
|
598
|
+
"email": "scottgregory@murphy.org",
|
|
599
|
+
"avatar": "https://i.pravatar.cc/150?img=23"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"userId": "7735585",
|
|
603
|
+
"username": "randallmartinez",
|
|
604
|
+
"displayName": "Heather Morris",
|
|
605
|
+
"email": "raymond84@hunter-benjamin.com",
|
|
606
|
+
"avatar": "https://i.pravatar.cc/150?img=24"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"userId": "5081733",
|
|
610
|
+
"username": "zgibson",
|
|
611
|
+
"displayName": "Steven Burch",
|
|
612
|
+
"email": "victoria55@hotmail.com",
|
|
613
|
+
"avatar": "https://i.pravatar.cc/150?img=25"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"userId": "9801446",
|
|
617
|
+
"username": "msmith",
|
|
618
|
+
"displayName": "Richard Saunders",
|
|
619
|
+
"email": "sharoncoffey@hunter.com",
|
|
620
|
+
"avatar": "https://i.pravatar.cc/150?img=26"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"userId": "5315126",
|
|
624
|
+
"username": "nguyenkimberly",
|
|
625
|
+
"displayName": "David Odonnell",
|
|
626
|
+
"avatar": "https://i.pravatar.cc/150?img=27"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"userId": "1464038",
|
|
630
|
+
"username": "travis55",
|
|
631
|
+
"displayName": "Kevin Krause",
|
|
632
|
+
"email": "barnesmichael@cross-riley.info",
|
|
633
|
+
"avatar": "https://i.pravatar.cc/150?img=28"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"userId": "2764284",
|
|
637
|
+
"username": "twilson",
|
|
638
|
+
"displayName": "Kelly Phillips",
|
|
639
|
+
"email": "cbarnes@gmail.com",
|
|
640
|
+
"avatar": "https://i.pravatar.cc/150?img=29"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"userId": "8360841",
|
|
644
|
+
"username": "hardingthomas",
|
|
645
|
+
"displayName": "Roger Bowen",
|
|
646
|
+
"avatar": "https://i.pravatar.cc/150?img=30"
|
|
647
|
+
}
|
|
648
|
+
]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { Button, Group, useMantineColorScheme } from '@mantine/core';
|
|
4
|
+
|
|
5
|
+
export function ColorSchemeToggle() {
|
|
6
|
+
const { setColorScheme } = useMantineColorScheme();
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<Group justify="center" mt="xl">
|
|
10
|
+
<Button onClick={() => setColorScheme('light')}>Light</Button>
|
|
11
|
+
<Button onClick={() => setColorScheme('dark')}>Dark</Button>
|
|
12
|
+
<Button onClick={() => setColorScheme('auto')}>Auto</Button>
|
|
13
|
+
</Group>
|
|
14
|
+
);
|
|
15
|
+
}
|