@mohamed-karawia/library 0.1.18 → 0.1.22

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. package/dist/stories/Chat/Chat.js +114 -4
  2. package/dist/stories/Common Inputs/Picker/Picker.js +61 -0
  3. package/dist/stories/Common Inputs/TextField/TextField.js +3 -1
  4. package/dist/stories/Community/Community.js +159 -0
  5. package/dist/stories/Events/Event/Event.js +123 -4
  6. package/dist/stories/Events/EventsList/EventsList.js +98 -16
  7. package/dist/stories/Forms/CreateSpace/CreateSpace.js +75 -0
  8. package/dist/stories/Library/Folders/Folders.js +94 -9
  9. package/dist/stories/Library/Notes/Notes.js +94 -9
  10. package/dist/stories/Modals/NavbarPreviewModal/NavbarPreviewModal.js +54 -0
  11. package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +98 -10
  12. package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +96 -34
  13. package/dist/stories/Navbar/Navbar.js +1 -1
  14. package/dist/stories/Pages/Events/Event/Event.js +14 -5
  15. package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +2 -15
  16. package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +94 -17
  17. package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +88 -10
  18. package/dist/stories/Preview/Preview.js +1 -0
  19. package/dist/stories/PreviewComponents/ChatPreview/ChatPreview.js +193 -0
  20. package/dist/stories/PreviewComponents/EventPreview/EventPreview.js +158 -0
  21. package/dist/stories/PreviewComponents/EventsPreview/EventsPreview.js +192 -0
  22. package/dist/stories/PreviewComponents/FoldersPreview/FoldersPreview.js +182 -0
  23. package/dist/stories/PreviewComponents/MusicAlbumPreview/MusicAlbumPreview.js +177 -0
  24. package/dist/stories/PreviewComponents/MusicAlbumsPreview/MusicAlbumsPreview.js +181 -0
  25. package/dist/stories/PreviewComponents/MusicPlayerPreview/MusicPlayerPreview.js +153 -0
  26. package/dist/stories/PreviewComponents/NavbarPreview/NavbarPreview.js +112 -0
  27. package/dist/stories/PreviewComponents/NotesPreview/NotesPreview.js +173 -0
  28. package/dist/stories/PreviewComponents/PhotoAlbumPreview/PhotoAlbumPreview.js +189 -0
  29. package/dist/stories/PreviewComponents/PhotoAlbumsPreview/PhotoAlbumsPreview.js +189 -0
  30. package/dist/stories/PreviewComponents/SpacesListPreview/SpacesListPreview.js +197 -0
  31. package/dist/stories/PreviewComponents/VideoAlbumPreview/VideoAlbumPreview.js +189 -0
  32. package/dist/stories/PreviewComponents/VideoAlbumsPreview/VideoAlbumsPreview.js +175 -0
  33. package/dist/stories/PreviewComponents/VideoPreview/VideoPreview.js +172 -0
  34. package/dist/stories/PreviewComponents/globalStyles.js +26 -0
  35. package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +4 -3
  36. package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +8 -4
  37. package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +10 -4
  38. package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +4 -2
  39. package/dist/stories/Reusable Components/Cards/globalCardStyles.js +2 -2
  40. package/dist/stories/Reusable Components/Community/Community.js +53 -0
  41. package/dist/stories/Reusable Components/Gallery/Gallery.js +12 -17
  42. package/dist/stories/Reusable Components/ReactModal/ReactModal.js +11 -30
  43. package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +19 -2
  44. package/dist/stories/Reusable Components/ReusableList/ReusableList.js +9 -5
  45. package/dist/stories/Reusable Components/Tabs/Tabs.js +68 -0
  46. package/dist/stories/Sections/Sections.js +8 -2
  47. package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +85 -19
  48. package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +108 -4
  49. package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +84 -9
  50. package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +16 -10
  51. package/dist/stories/Widgets/SpacesListWidget/SpacesListWidget.js +115 -0
  52. package/dist/stories/Widgets/UsersWidget/UsersWidget.js +30 -0
  53. package/dist/stories/helpers/util.js +36 -3
  54. package/dist/stories/store/communities.js +941 -0
  55. package/dist/stories/store/store.js +44 -0
  56. package/package.json +5 -2
  57. package/src/stories/Chat/Chat.jsx +110 -5
  58. package/src/stories/Common Inputs/Picker/Picker.jsx +47 -0
  59. package/src/stories/Common Inputs/TextField/TextField.jsx +1 -1
  60. package/src/stories/Community/Community.jsx +109 -0
  61. package/src/stories/Events/Event/Event.jsx +105 -4
  62. package/src/stories/Events/EventsList/EventsList.jsx +98 -17
  63. package/src/stories/Forms/CreateSpace/CreateSpace.jsx +73 -0
  64. package/src/stories/Library/Folders/Folders.jsx +94 -7
  65. package/src/stories/Library/Notes/Notes.jsx +73 -7
  66. package/src/stories/Modals/NavbarPreviewModal/NavbarPreviewModal.jsx +31 -0
  67. package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +81 -11
  68. package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +78 -34
  69. package/src/stories/Navbar/Navbar.jsx +1 -1
  70. package/src/stories/Pages/Events/Event/Event.jsx +12 -4
  71. package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +0 -13
  72. package/src/stories/Pages/ViewWorld/styles.json +1 -1
  73. package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +68 -6
  74. package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +69 -9
  75. package/src/stories/Preview/Preview.jsx +9 -1
  76. package/src/stories/PreviewComponents/ChatPreview/ChatPreview.jsx +132 -0
  77. package/src/stories/PreviewComponents/EventPreview/EventPreview.jsx +116 -0
  78. package/src/stories/PreviewComponents/EventsPreview/EventsPreview.jsx +132 -0
  79. package/src/stories/PreviewComponents/FoldersPreview/FoldersPreview.jsx +127 -0
  80. package/src/stories/PreviewComponents/MusicAlbumPreview/MusicAlbumPreview.jsx +124 -0
  81. package/src/stories/PreviewComponents/MusicAlbumsPreview/MusicAlbumsPreview.jsx +126 -0
  82. package/src/stories/PreviewComponents/MusicPlayerPreview/MusicPlayerPreview.jsx +113 -0
  83. package/src/stories/PreviewComponents/NavbarPreview/NavbarPreview.jsx +93 -0
  84. package/src/stories/PreviewComponents/NotesPreview/NotesPreview.jsx +122 -0
  85. package/src/stories/PreviewComponents/PhotoAlbumPreview/PhotoAlbumPreview.jsx +129 -0
  86. package/src/stories/PreviewComponents/PhotoAlbumsPreview/PhotoAlbumsPreview.jsx +129 -0
  87. package/src/stories/PreviewComponents/SpacesListPreview/SpacesListPreview.jsx +138 -0
  88. package/src/stories/PreviewComponents/VideoAlbumPreview/VideoAlbumPreview.jsx +129 -0
  89. package/src/stories/PreviewComponents/VideoAlbumsPreview/VideoAlbumsPreview.jsx +124 -0
  90. package/src/stories/PreviewComponents/VideoPreview/VideoPreview.jsx +125 -0
  91. package/src/stories/PreviewComponents/globalStyles.js +20 -0
  92. package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +5 -2
  93. package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +5 -5
  94. package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +12 -6
  95. package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +2 -2
  96. package/src/stories/Reusable Components/Cards/globalCardStyles.js +2 -1
  97. package/src/stories/Reusable Components/Community/Community.jsx +47 -0
  98. package/src/stories/Reusable Components/Gallery/Gallery.jsx +10 -9
  99. package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +3 -25
  100. package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +18 -6
  101. package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +9 -4
  102. package/src/stories/Reusable Components/Tabs/Tabs.jsx +67 -0
  103. package/src/stories/Sections/Sections.jsx +5 -2
  104. package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +64 -16
  105. package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +77 -1
  106. package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +64 -9
  107. package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +13 -6
  108. package/src/stories/Widgets/SpacesListWidget/SpacesListWidget.jsx +78 -0
  109. package/src/stories/Widgets/UsersWidget/UsersWidget.jsx +20 -0
  110. package/src/stories/helpers/util.js +24 -2
  111. package/src/stories/store/communities.js +703 -0
  112. package/src/stories/store/store.js +33 -0
  113. package/src/stories/styling.json +92 -0
@@ -0,0 +1,703 @@
1
+ export const community = {
2
+ name: 'test',
3
+ private: false,
4
+ communityMembers: [],
5
+ communityRoles: [],
6
+ joining_guards: ['everyone', 'enrollment-based'],
7
+ visibility_guards: ['invite-only', 'public', 'discoverable'],
8
+ invites: [],
9
+ styles: {
10
+ backgroundColor: 'white',
11
+ },
12
+ navbarStyles: {
13
+ iconSize: "md",
14
+ iconBackgroundColor: "#00ADC4"
15
+ },
16
+ spacesListWidget: {
17
+ widgetId: '',
18
+ widgetType: 'spaces-list',
19
+ widgetTypeId: '',
20
+ widgetSpacesList: {
21
+ listTitle: 'My Spaces',
22
+ spaces: [
23
+ {
24
+ title: 'Chat',
25
+ data: [
26
+ { title: 'Chat', id: 'chat' },
27
+ ],
28
+ },
29
+ {
30
+ title: 'Events',
31
+ data: [
32
+ { title: 'Event', id: 'event' },
33
+ { title: 'Events List', id: 'events_list' }
34
+ ]
35
+ },
36
+ {
37
+ title: 'Library',
38
+ data: [
39
+ { title: 'Folders', id: 'folders' },
40
+ { title: 'Notes', id: 'notes' },
41
+ ]
42
+ },
43
+ {
44
+ title: 'Music',
45
+ data: [
46
+ { title: 'Music Album', id: 'music_album' },
47
+ { title: 'Music Albums', id: 'music_albums' },
48
+ ]
49
+ },
50
+ {
51
+ title: 'Photos',
52
+ data: [
53
+ { title: 'Photo Album', id: 'photo_album' },
54
+ { title: 'Photo Albums', id: 'photo_albums' },
55
+ ]
56
+ },
57
+ {
58
+ title: 'Videos',
59
+ data: [
60
+ { title: 'Video Albums', id: 'video_albums' },
61
+ { title: 'Video Album', id: 'video_album' },
62
+ { title: 'Video Space', id: 'video_space' },
63
+ ]
64
+ }
65
+ ],
66
+ styles: {
67
+ headerStyles: {
68
+
69
+ },
70
+ sectionHeaderStyles: {
71
+ padding: 2,
72
+ headerBackground: "#00ADC4",
73
+ titleColor: "white"
74
+ },
75
+ customCardStyles: {
76
+ cardPadding: 6,
77
+ cardTitleFontSize: 15,
78
+ cardBackgroundColor: "white",
79
+ cardTitleColor: "#00ADC4",
80
+ cardBorderSize: 1,
81
+ cardBorderColor: "#00ADC4",
82
+ onHoverBackgroundColor: "#d3d3d3",
83
+ controlsStyles: {
84
+ showOnHover: true,
85
+ iconColor: "#00ADC4"
86
+ }
87
+ },
88
+ borderRadius: 10,
89
+ primaryColor: "#00ADC4",
90
+ iconsColor: "#00ADC4",
91
+ backgroundColor: "white",
92
+ discColor: "gray",
93
+ dateColor: "gray",
94
+ iconColor: "#00ADC4",
95
+ cardTitleFontSize: 15
96
+
97
+ }
98
+ }
99
+ },
100
+ spaces: [
101
+ {
102
+ // space level settings
103
+ spaceId: '',
104
+ spaceType: 'chat',
105
+ spaceTypeId: '',
106
+ spaceInvites: [],
107
+ spaceMembers: [],
108
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
109
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
110
+ spaceProps: {
111
+ users: [
112
+ {
113
+ id: 'walter',
114
+ display: 'Walter White',
115
+ },
116
+ {
117
+ id: 'jesse',
118
+ display: 'Jesse Pinkman',
119
+ },
120
+ {
121
+ id: 'gus',
122
+ display: 'Gustavo "Gus" Fring',
123
+ },
124
+ {
125
+ id: 'saul',
126
+ display: 'Saul Goodman',
127
+ },
128
+ {
129
+ id: 'hank',
130
+ display: 'Hank Schrader',
131
+ },
132
+ {
133
+ id: 'skyler',
134
+ display: 'Skyler White',
135
+ },
136
+ {
137
+ id: 'mike',
138
+ display: 'Mike Ehrmantraut',
139
+ },
140
+ {
141
+ id: 'lydia',
142
+ display: 'Lydìã Rôdarté-Qüayle',
143
+ },
144
+ ],
145
+ data: [
146
+ { username: 'Adam', img: "https://cdn3.iconfinder.com/data/icons/avatars-9/145/Avatar_Cat-512.png", date: '5/11/2021', text: 'Welcome to Zoo community !' },
147
+ { username: 'Roze', img: "https://w7.pngwing.com/pngs/867/134/png-transparent-giant-panda-dog-cat-avatar-fox-animal-tag-mammal-animals-carnivoran-thumbnail.png", date: '5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test ', media: (<img src="https://cdn4.vectorstock.com/i/1000x1000/73/93/cute-lion-cartoon-on-white-background-vector-26837393.jpg" />) },
148
+ { username: 'Saif', img: "https://img.favpng.com/5/2/3/computer-icons-scalable-vector-graphics-avatar-emoticon-png-favpng-209NAXaV1ZBQdYGrU7nNbMxpX.jpg", date: '5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test ' },
149
+ { username: 'Noor', img: "https://cdn3.iconfinder.com/data/icons/avatars-9/145/Avatar_Panda-512.png", date: '5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test ' },
150
+ ]
151
+ },
152
+ styles: {
153
+ headerStyles: {
154
+ padding: 10,
155
+ headerBackground: "#00ADC4",
156
+ titleColor: "#ffff",
157
+ controlsStyles: {
158
+ iconSize: 25
159
+ }
160
+ },
161
+ backgroundColor: 'transparent',
162
+ customCardStyles: {
163
+ cardPadding: 6,
164
+ cardTitleFontSize: 15,
165
+ cardBackgroundColor: "white",
166
+ cardTitleColor: "#00ADC4",
167
+ cardBorderColor: "#00ADC4",
168
+ onHoverBackgroundColor: "#d3d3d3",
169
+ iconColor: "#00ADC4",
170
+ onHoverColor: 'gray',
171
+ controlsStyles: {
172
+ iconColor: "#00ADC4"
173
+ }
174
+ }
175
+ },
176
+ },
177
+ {
178
+ spaceId: '',
179
+ spaceType: 'events_list',
180
+ spaceTypeId: '',
181
+ spaceInvites: [],
182
+ spaceMembers: [],
183
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
184
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
185
+ spaceProps: {
186
+ events: [
187
+ { title: 'Event one', date: '15-11-2020 : 5-8-2021' },
188
+ { title: 'Event two', date: '14-12-2020 : 14-4-2023' },
189
+ { title: 'Event three', date: '5-6-2021 : 5-8-2021' },
190
+ { title: 'Event four', date: '14-4-2023' },
191
+ { title: 'Event five', date: '5-6-2021 : 14-4-2023' },
192
+ ]
193
+ },
194
+ styles: {
195
+ headerStyles: {
196
+ padding: 10,
197
+ headerBackground: "#00ADC4",
198
+ titleColor: "#ffff",
199
+ controlsStyles: {
200
+ iconSize: 25
201
+ }
202
+ },
203
+ customCardStyles: {
204
+ cardPadding: 6,
205
+ cardTitleFontSize: 15,
206
+ cardBackgroundColor: "white",
207
+ cardTitleColor: "#00ADC4",
208
+ cardBorderColor: "#00ADC4",
209
+ onHoverBackgroundColor: "#d3d3d3",
210
+ iconColor: "#00ADC4",
211
+ controlsStyles: {
212
+ iconColor: "#00ADC4"
213
+ }
214
+ }
215
+ },
216
+ },
217
+ {
218
+ spaceId: '',
219
+ spaceType: 'event',
220
+ spaceTypeId: '',
221
+ spaceInvites: [],
222
+ spaceMembers: [],
223
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
224
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
225
+ spaceProps: {
226
+ cover: 'https://image.freepik.com/free-vector/zoo-animals-wild-nature-background_1308-44197.jpg',
227
+ title: "Zoo trip",
228
+ date: "15/11/1976 : 16/11/1976",
229
+ disc: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia impedit fugiat reprehenderit adipisci eos atque ullam error quia amet nihil, exercitationem beatae distinctio eligendi neque, consequuntur odit commodi id porro.",
230
+ },
231
+ styles: {
232
+ headerStyles: {
233
+ padding: 10,
234
+ headerBackground: "#00ADC4",
235
+ titleColor: "#ffff",
236
+ controlsStyles: {
237
+ iconSize: 25
238
+ }
239
+ },
240
+ backgroundColor: 'white',
241
+ titleColor: '#00ADC4',
242
+ titleSize: 20,
243
+ dateColor: '#00ADC4',
244
+ dateSize: 10,
245
+ discColor: 'black',
246
+ discSize: 15,
247
+ },
248
+ },
249
+ {
250
+ spaceId: '',
251
+ spaceType: 'folders',
252
+ spaceTypeId: '',
253
+ spaceInvites: [],
254
+ spaceMembers: [],
255
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
256
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
257
+ spaceProps: {
258
+ folders: [
259
+ { title: 'Folder one', description: 'Discription for folder one' },
260
+ { title: 'Folder two', description: 'Discription for folder two' },
261
+ { title: 'Folder three', description: 'Discription for folder three' },
262
+ { title: 'Folder four', description: 'Discription for folder four' },
263
+ { title: 'Folder five', description: 'Discription for folder five' },
264
+ { title: 'Folder six', description: 'Discription for folder six' },
265
+ ],
266
+ folderTitle: 'My Folders'
267
+ },
268
+ styles: {
269
+ headerStyles: {
270
+ padding: 10,
271
+ headerBackground: "#00ADC4",
272
+ titleColor: "#ffff",
273
+ controlsStyles: {
274
+ iconSize: 25
275
+ }
276
+ },
277
+ customCardStyles: {
278
+ iconColor: '#00ADC4',
279
+ cardTitleColor: '#00ADC4',
280
+ cardDescriptionColor: 'gray'
281
+ },
282
+ },
283
+ },
284
+ {
285
+ spaceId: '',
286
+ spaceType: 'notes',
287
+ spaceTypeId: '',
288
+ spaceInvites: [],
289
+ spaceMembers: [],
290
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
291
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
292
+ spaceProps: {
293
+ notes: [
294
+ { title: 'Study notes', date: '15/11/2020' },
295
+ { title: 'Music notes', date: '14/12/2020' },
296
+ { title: 'Workout notes', date: '5/8/2021' },
297
+ { title: 'Gaming notes', date: '14/4/2023' },
298
+ { title: 'Working notes', date: '5/6/2021' },
299
+ ],
300
+ title: 'My Notes'
301
+ },
302
+ styles: {
303
+ headerStyles: {
304
+ padding: 10,
305
+ headerBackground: "#00ADC4",
306
+ titleColor: "#ffff",
307
+ controlsStyles: {
308
+ iconSize: 25
309
+ }
310
+ },
311
+ backgroundColor: 'white',
312
+ titleColor: '#00ADC4',
313
+ titleSize: 20,
314
+ dateColor: 'black',
315
+ dateSize: 10,
316
+ discColor: 'black',
317
+ discSize: 15,
318
+ },
319
+ },
320
+ {
321
+ spaceId: '',
322
+ spaceType: 'music_album',
323
+ spaceTypeId: '',
324
+ spaceInvites: [],
325
+ spaceMembers: [],
326
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
327
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
328
+ spaceProps: {
329
+ album: [
330
+ { index: 0, cover: 'https://f4.bcbits.com/img/a2465881007_10.jpg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Plans We Made', description: 'Son Lux', time: '5:20' },
331
+ { index: 2, cover: 'https://miro.medium.com/max/807/1*o4O4SdRfLDAbX2Z41mtUbQ.png', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Still Loving You', description: 'Scorpions', time: '4:20' },
332
+ { index: 1, cover: 'https://angartwork.akamaized.net/?id=197381&size=640', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Night', description: 'Frank Ocean', time: '5:20' },
333
+ { index: 3, cover: 'https://www.mobiusrecordshop.com/uploads/1/3/1/4/131426346/s264159977788795342_p633_i1_w520.jpeg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Somebody Else', description: '1975', time: '5:20' },
334
+ { index: 4, cover: 'https://sleazeroxx.com/wp-content/uploads/Metallica-album-cover-1-e1479325121582.jpg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Enter Sandman', description: 'Metallica', time: '5:20' },
335
+ { index: 5, cover: 'https://cdn.mos.cms.futurecdn.net/9fbSfj65deYmueBHHqNvD7.jpg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'November Rain', description: "Guns N' Roses", time: '5:20' },
336
+ ],
337
+ title: 'My Album'
338
+ },
339
+ styles: {
340
+ headerStyles: {
341
+ padding: 10,
342
+ headerBackground: "#00ADC4",
343
+ titleColor: "#ffff",
344
+ controlsStyles: {
345
+ iconSize: 25
346
+ }
347
+ },
348
+ backgroundColor: 'white',
349
+ titleColor: '#00ADC4',
350
+ titleSize: 20,
351
+ dateColor: 'black',
352
+ dateSize: 10,
353
+ discColor: 'black',
354
+ discSize: 15,
355
+ },
356
+ widgets: [
357
+ {
358
+ // widget level settings
359
+ widgetId: '',
360
+ widgetType: ['music player'],
361
+ widgetTypeId: '',
362
+ widgetMusicPlayerId: '',
363
+ widgetVideoPlayerId: '',
364
+ widgetProps: {
365
+ // widget music player level settings
366
+ playlist: [
367
+ { index: 0, cover: 'https://f4.bcbits.com/img/a2465881007_10.jpg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Plans We Made', description: 'Son Lux', time: '5:20' },
368
+ { index: 2, cover: 'https://miro.medium.com/max/807/1*o4O4SdRfLDAbX2Z41mtUbQ.png', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Still Loving You', description: 'Scorpions', time: '4:20' },
369
+ { index: 1, cover: 'https://angartwork.akamaized.net/?id=197381&size=640', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Night', description: 'Frank Ocean', time: '5:20' },
370
+ { index: 3, cover: 'https://www.mobiusrecordshop.com/uploads/1/3/1/4/131426346/s264159977788795342_p633_i1_w520.jpeg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Somebody Else', description: '1975', time: '5:20' },
371
+ { index: 4, cover: 'https://sleazeroxx.com/wp-content/uploads/Metallica-album-cover-1-e1479325121582.jpg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Enter Sandman', description: 'Metallica', time: '5:20' },
372
+ { index: 5, cover: 'https://cdn.mos.cms.futurecdn.net/9fbSfj65deYmueBHHqNvD7.jpg', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'November Rain', description: "Guns N' Roses", time: '5:20' },
373
+ ],
374
+ currentSong: 0
375
+ },
376
+ styles: {
377
+ headerStyles: {
378
+ padding: 10,
379
+ headerBackground: "#00ADC4",
380
+ titleColor: "#ffff",
381
+ controlsStyles: {
382
+ iconSize: 25
383
+ }
384
+ },
385
+ borderRadius: 10,
386
+ primaryColor: "#00ADC4",
387
+ iconsColor: "#00ADC4",
388
+ backgroundColor: "white",
389
+ discColor: "gray",
390
+ dateColor: "gray",
391
+ iconColor: "#00ADC4",
392
+ cardTitleFontSize: 15
393
+ }
394
+
395
+ },
396
+
397
+ ]
398
+ },
399
+ {
400
+ spaceId: '',
401
+ spaceType: 'music_albums',
402
+ spaceTypeId: '',
403
+ spaceInvites: [],
404
+ spaceMembers: [],
405
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
406
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
407
+ spaceProps: {
408
+ albums: [
409
+ { index: 0, img: 'https://f4.bcbits.com/img/a2465881007_10.jpg', title: 'Tomorrows |', description: 'Son Lux' },
410
+ { index: 1, img: 'https://miro.medium.com/max/807/1*o4O4SdRfLDAbX2Z41mtUbQ.png', title: 'Blond', description: 'Frank Ocean' },
411
+ { index: 2, img: 'https://angartwork.akamaized.net/?id=197381&size=640', title: 'Love At First Sting', description: 'Scorpions' },
412
+ { index: 3, img: 'https://www.mobiusrecordshop.com/uploads/1/3/1/4/131426346/s264159977788795342_p633_i1_w520.jpeg', title: 'The 1975', description: '1975' },
413
+ { index: 4, img: 'https://sleazeroxx.com/wp-content/uploads/Metallica-album-cover-1-e1479325121582.jpg', title: 'Hardwired...To Self-Destruct', description: 'Metallica' },
414
+ { index: 5, img: 'https://cdn.mos.cms.futurecdn.net/9fbSfj65deYmueBHHqNvD7.jpg', title: 'Use Your IIIlusion |', description: "Guns N' Roses" },
415
+ ],
416
+ title: 'My Albums'
417
+ },
418
+ styles: {
419
+ headerStyles: {
420
+ padding: 10,
421
+ headerBackground: "#00ADC4",
422
+ titleColor: "#ffff",
423
+ controlsStyles: {
424
+ iconSize: 25
425
+ }
426
+ },
427
+ rowsHeight: 400,
428
+ customCardStyles: {
429
+ cardTitleColor: "#00ADC4",
430
+ cardDiscriptionColor: 'gray'
431
+ }
432
+ },
433
+
434
+ },
435
+ {
436
+ spaceId: '',
437
+ spaceType: 'photo_album',
438
+ spaceTypeId: '',
439
+ spaceInvites: [],
440
+ spaceMembers: [],
441
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
442
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
443
+ spaceProps: {
444
+ album: [
445
+ { index: 0, img: 'https://images.unsplash.com/photo-1527118732049-c88155f2107c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80', title: 'Image 1', description: 'This is description test', date: '2021-11-30' },
446
+ { index: 1, img: 'https://images.unsplash.com/photo-1503919005314-30d93d07d823?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8em9vfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60', title: 'Image 2', description: 'This is description test', date: '2021-11-30' },
447
+ { index: 2, img: 'https://images.unsplash.com/photo-1612738331950-40abbddce9aa?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80', title: 'Image 3', description: 'This is description test', date: '2021-11-30' },
448
+ { index: 3, img: 'https://images.unsplash.com/photo-1574031493536-05e45f214ab6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8em9vfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60', title: 'Image 4', description: 'This is description test', date: '2021-11-30' },
449
+ { index: 4, img: 'https://images.unsplash.com/photo-1610655012457-9cbd66fe510b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTZ8fHpvb3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60', title: 'Image 5', description: 'This is description test', date: '2021-11-30' },
450
+ { index: 5, img: 'https://images.unsplash.com/photo-1458832463097-ab73e7b4fc4f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTV8fHpvb3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60', title: 'Image 6', description: 'This is description test', date: '2021-11-30' },
451
+ ],
452
+ title: 'My Album'
453
+ },
454
+ styles: {
455
+ headerStyles: {
456
+ padding: 10,
457
+ headerBackground: "#00ADC4",
458
+ titleColor: "#ffff",
459
+ controlsStyles: {
460
+ iconSize: 25
461
+ }
462
+ },
463
+ columnsNumber: 2,
464
+ rowsHeight: 400,
465
+ customCardStyles: {
466
+ cardTitleColor: "#00ADC4",
467
+ cardDiscriptionColor: 'gray'
468
+ }
469
+ },
470
+
471
+ },
472
+ {
473
+ spaceId: '',
474
+ spaceType: 'photo_albums',
475
+ spaceTypeId: '',
476
+ spaceInvites: [],
477
+ spaceMembers: [],
478
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
479
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
480
+ spaceProps: {
481
+ albums: [
482
+ { img: 'https://images.unsplash.com/photo-1527118732049-c88155f2107c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80', title: 'Album 1', count: '24' },
483
+ { img: 'https://images.unsplash.com/photo-1612738331950-40abbddce9aa?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80', title: 'Album 2', count: '24' },
484
+ { img: 'https://images.unsplash.com/photo-1503919005314-30d93d07d823?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8em9vfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 3', count: '24' },
485
+ { img: 'https://images.unsplash.com/photo-1574031493536-05e45f214ab6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8em9vfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 4', count: '24' },
486
+ { img: 'https://images.unsplash.com/photo-1458832463097-ab73e7b4fc4f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTV8fHpvb3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 5', count: '24' },
487
+ { img: 'https://images.unsplash.com/photo-1610655012457-9cbd66fe510b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTZ8fHpvb3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 6', count: '24' },
488
+
489
+ ],
490
+ title: 'My Albums'
491
+ },
492
+ styles: {
493
+ headerStyles: {
494
+ padding: 10,
495
+ headerBackground: "#00ADC4",
496
+ titleColor: "#ffff",
497
+ controlsStyles: {
498
+ iconSize: 25
499
+ }
500
+ },
501
+ columnsNumber: 2,
502
+ rowsHeight: 400,
503
+ customCardStyles: {
504
+ cardTitleColor: "#00ADC4",
505
+ cardDiscriptionColor: 'gray',
506
+ countColor: 'gray'
507
+ }
508
+ },
509
+
510
+ },
511
+ {
512
+ spaceId: '',
513
+ spaceType: 'photo_albums',
514
+ spaceTypeId: '',
515
+ spaceInvites: [],
516
+ spaceMembers: [],
517
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
518
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
519
+ spaceProps: {
520
+ albums: [
521
+ { img: 'https://images.unsplash.com/photo-1527118732049-c88155f2107c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80', title: 'Album 1', count: '24' },
522
+ { img: 'https://images.unsplash.com/photo-1612738331950-40abbddce9aa?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80', title: 'Album 2', count: '24' },
523
+ { img: 'https://images.unsplash.com/photo-1503919005314-30d93d07d823?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8em9vfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 3', count: '24' },
524
+ { img: 'https://images.unsplash.com/photo-1574031493536-05e45f214ab6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8em9vfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 4', count: '24' },
525
+ { img: 'https://images.unsplash.com/photo-1458832463097-ab73e7b4fc4f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTV8fHpvb3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 5', count: '24' },
526
+ { img: 'https://images.unsplash.com/photo-1610655012457-9cbd66fe510b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTZ8fHpvb3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=60', title: 'Album 6', count: '24' },
527
+ ],
528
+ title: 'My Albums'
529
+ },
530
+ styles: {
531
+ headerStyles: {
532
+ padding: 10,
533
+ headerBackground: "#00ADC4",
534
+ titleColor: "#ffff",
535
+ controlsStyles: {
536
+ iconSize: 25
537
+ }
538
+ },
539
+ columnsNumber: 2,
540
+ rowsHeight: 400,
541
+ customCardStyles: {
542
+ cardTitleColor: "#00ADC4",
543
+ cardDiscriptionColor: 'gray',
544
+ countColor: 'gray'
545
+ }
546
+ },
547
+
548
+ },
549
+ {
550
+ spaceId: '',
551
+ spaceType: 'video_albums',
552
+ spaceTypeId: '',
553
+ spaceInvites: [],
554
+ spaceMembers: [],
555
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
556
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
557
+ spaceProps: {
558
+ videoAlbums: [
559
+ { img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 1', count: '24' },
560
+ { img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 2', count: '24' },
561
+ { img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 3', count: '24' },
562
+ { img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 4', count: '24' },
563
+ { img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 5', count: '24' },
564
+ { img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 6', count: '24' },
565
+
566
+ ],
567
+ title: 'My Albums'
568
+ },
569
+ styles: {
570
+ headerStyles: {
571
+ padding: 10,
572
+ headerBackground: "#00ADC4",
573
+ titleColor: "#ffff",
574
+ controlsStyles: {
575
+ iconSize: 25
576
+ }
577
+ },
578
+ rowsHeight: 400,
579
+ customCardStyles: {
580
+ cardTitleColor: "#00ADC4",
581
+ cardDiscriptionColor: 'gray',
582
+ countColor: 'gray'
583
+ }
584
+ },
585
+
586
+ },
587
+ {
588
+ spaceId: '',
589
+ spaceType: 'video_album',
590
+ spaceTypeId: '',
591
+ spaceInvites: [],
592
+ spaceMembers: [],
593
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
594
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
595
+ spaceProps: {
596
+ album: [
597
+ { index: 0, img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', src: 'https://www.youtube.com/watch?v=RKU6x1n9Hak', title: 'FORGET CATS! Funny KIDS vs ZOO ANIMALS are WAY FUNNIER! - TRY NOT TO LAUGH', time: '5:20' },
598
+ { index: 2, img: 'https://i.ytimg.com/an_webp/snUGqgAmz-c/mqdefault_6s.webp?du=3000&sqp=CNKi_I4G&rs=AOn4CLDtuRYq6oM6uvSRaMaLgtxG_EctdQ', src: 'https://www.youtube.com/watch?v=snUGqgAmz-c', title: 'Learn to Count to 20 with Number Zoo | Toddler Fun Learning Collection', time: '4:20' },
599
+ { index: 1, img: 'https://i.ytimg.com/an_webp/MuB7HHeuNbc/mqdefault_6s.webp?du=3000&sqp=CPiZ_I4G&rs=AOn4CLBYh_0QPB_V-UG-XJlN7W1DlAydAQ', src: 'https://www.youtube.com/watch?v=Smgjxn8hKfk', title: 'Vlad and Nikita Family trip to the Zoo', time: '5:20' },
600
+ { index: 3, img: 'https://i.ytimg.com/an_webp/AcL0MeVZIxM/mqdefault_6s.webp?du=3000&sqp=CL6z_I4G&rs=AOn4CLAZ0PoH6LaOUeD8SknGhSMtSI1yug', src: 'https://www.youtube.com/watch?v=MuB7HHeuNbc', title: 'Try Not To Laugh At This Ultimate Funny Dog Video Compilation | Funny Pet Videos', time: '5:20' },
601
+ { index: 4, img: 'https://i.ytimg.com/an_webp/sbTcwlAGTgg/mqdefault_6s.webp?du=3000&sqp=CIib_I4G&rs=AOn4CLC4AzNRtNp3DjTne3yIEvfHP7bWXQ', src: 'https://www.youtube.com/watch?v=AcL0MeVZIxM', title: 'Playing at The Zoo With Blippi! - Blippi Feeds Animals | Animals For Kids | Educational Videos', time: '5:20' },
602
+ { index: 5, img: 'https://i.ytimg.com/an_webp/57goIrbj_l0/mqdefault_6s.webp?du=3000&sqp=CMe6_I4G&rs=AOn4CLDrlNjHeJnbCSoXmZwW7CG5wLtxdA', src: 'https://www.youtube.com/watch?v=sbTcwlAGTgg', title: 'Learn Zoo Animals for Kids with Blippi | A Day at the Zoo', time: '5:20' },
603
+ ],
604
+ title: 'My Album'
605
+ },
606
+ styles: {
607
+ headerStyles: {
608
+ padding: 10,
609
+ headerBackground: "#00ADC4",
610
+ titleColor: "#ffff",
611
+ controlsStyles: {
612
+ iconSize: 25
613
+ }
614
+ },
615
+ backgroundColor: 'white',
616
+ titleColor: '#00ADC4',
617
+ titleSize: 20,
618
+ dateColor: 'black',
619
+ dateSize: 10,
620
+ discColor: 'black',
621
+ discSize: 15,
622
+ },
623
+ widgets: [
624
+ {
625
+ // widget level settings
626
+ widgetId: '',
627
+ widgetType: ['video player'],
628
+ widgetTypeId: '',
629
+ widgetMusicPlayerId: '',
630
+ widgetVideoPlayerId: '',
631
+ widgetProps: {
632
+ // widget music player level settings
633
+
634
+ },
635
+ styles: {
636
+ headerStyles: {
637
+ padding: 10,
638
+ headerBackground: "#00ADC4",
639
+ titleColor: "#ffff",
640
+ controlsStyles: {
641
+ iconSize: 25
642
+ }
643
+ },
644
+ borderRadius: 10,
645
+ primaryColor: "#00ADC4",
646
+ iconsColor: "#00ADC4",
647
+ backgroundColor: "white",
648
+ discColor: "gray",
649
+ dateColor: "gray",
650
+ iconColor: "#00ADC4",
651
+ cardTitleFontSize: 15
652
+ }
653
+
654
+ },
655
+ ]
656
+ },
657
+ {
658
+ spaceId: '',
659
+ spaceType: 'video_space',
660
+ spaceTypeId: '',
661
+ spaceInvites: [],
662
+ spaceMembers: [],
663
+ joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
664
+ visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
665
+ spaceProps: {
666
+ comments: [
667
+ { img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png', title: 'User Name', description: 'This is A test for comments on videos.' },
668
+ { img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png', title: 'User Name', description: 'This is A test for comments on videos.' },
669
+ { img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png', title: 'User Name', description: 'This is A test for comments on videos.' },
670
+ { img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png', title: 'User Name', description: 'This is A test for comments on videos.' },
671
+ { img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png', title: 'User Name', description: 'This is A test for comments on videos.' },
672
+ ],
673
+ videoSrc: 'https://www.youtube.com/watch?v:snUGqgAmz-c',
674
+ title: 'Video',
675
+ discription: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium placeat nostrum tempora suscipit laborum quibusdam.",
676
+ date: "10/11/2022",
677
+ },
678
+ styles: {
679
+ headerStyles: {
680
+ padding: 10,
681
+ headerBackground: "#00ADC4",
682
+ titleColor: "#ffff",
683
+ controlsStyles: {
684
+ iconSize: 25
685
+ }
686
+ },
687
+ iconsColor: '#00ADC4',
688
+ backgroundColor: 'white',
689
+ detailsPadding: 3,
690
+ titleFontSize: 20,
691
+ titleColor: '#00ADC4',
692
+ dateFontSize: 10,
693
+ dateColor: 'gray',
694
+ discFontSize: 15,
695
+ discColor: 'black',
696
+ commentBackgroundColor: '#00ADC4',
697
+ commentTitleColor: 'white',
698
+ commentTitleFontSize: 15
699
+ },
700
+
701
+ },
702
+ ]
703
+ }