@mohamed-karawia/library 0.1.16 → 0.1.20

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