@mohamed-karawia/library 0.1.18 → 0.1.19
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/stories/Chat/Chat.js +120 -3
- package/dist/stories/Common Inputs/Picker/Picker.js +61 -0
- package/dist/stories/Common Inputs/TextField/TextField.js +3 -1
- package/dist/stories/Community/Community.js +137 -0
- package/dist/stories/Events/Event/Event.js +116 -4
- package/dist/stories/Events/EventsList/EventsList.js +95 -16
- package/dist/stories/Forms/CreateSpace/CreateSpace.js +75 -0
- package/dist/stories/Library/Folders/Folders.js +80 -1
- package/dist/stories/Library/Notes/Notes.js +75 -1
- package/dist/stories/Modals/NavbarPreviewModal/NavbarPreviewModal.js +54 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +134 -9
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +65 -23
- package/dist/stories/Navbar/Navbar.js +1 -1
- package/dist/stories/Pages/Events/Event/Event.js +14 -5
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +2 -15
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +76 -9
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +80 -9
- package/dist/stories/Preview/Preview.js +1 -0
- package/dist/stories/PreviewComponents/ChatPreview/ChatPreview.js +193 -0
- package/dist/stories/PreviewComponents/EventPreview/EventPreview.js +158 -0
- package/dist/stories/PreviewComponents/EventsPreview/EventsPreview.js +192 -0
- package/dist/stories/PreviewComponents/FoldersPreview/FoldersPreview.js +182 -0
- package/dist/stories/PreviewComponents/MusicAlbumPreview/MusicAlbumPreview.js +177 -0
- package/dist/stories/PreviewComponents/MusicAlbumsPreview/MusicAlbumsPreview.js +181 -0
- package/dist/stories/PreviewComponents/MusicPlayerPreview/MusicPlayerPreview.js +153 -0
- package/dist/stories/PreviewComponents/NavbarPreview/NavbarPreview.js +112 -0
- package/dist/stories/PreviewComponents/NotesPreview/NotesPreview.js +173 -0
- package/dist/stories/PreviewComponents/PhotoAlbumPreview/PhotoAlbumPreview.js +189 -0
- package/dist/stories/PreviewComponents/PhotoAlbumsPreview/PhotoAlbumsPreview.js +189 -0
- package/dist/stories/PreviewComponents/SpacesListPreview/SpacesListPreview.js +197 -0
- package/dist/stories/PreviewComponents/VideoAlbumPreview/VideoAlbumPreview.js +189 -0
- package/dist/stories/PreviewComponents/VideoAlbumsPreview/VideoAlbumsPreview.js +175 -0
- package/dist/stories/PreviewComponents/VideoPreview/VideoPreview.js +172 -0
- package/dist/stories/PreviewComponents/globalStyles.js +26 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +4 -3
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +8 -4
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +10 -4
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +4 -2
- package/dist/stories/Reusable Components/Cards/globalCardStyles.js +2 -2
- package/dist/stories/Reusable Components/Community/Community.js +76 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.js +12 -17
- package/dist/stories/Reusable Components/ReactModal/ReactModal.js +11 -30
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +19 -2
- package/dist/stories/Reusable Components/ReusableList/ReusableList.js +9 -5
- package/dist/stories/Reusable Components/Tabs/Tabs.js +68 -0
- package/dist/stories/Sections/Sections.js +8 -2
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +77 -18
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +96 -3
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +77 -1
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +16 -10
- package/dist/stories/Widgets/SpacesListWidget/SpacesListWidget.js +115 -0
- package/dist/stories/Widgets/UsersWidget/UsersWidget.js +30 -0
- package/dist/stories/helpers/util.js +36 -3
- package/dist/stories/store/communities.js +943 -0
- package/dist/stories/store/store.js +44 -0
- package/package.json +5 -2
- package/src/stories/Chat/Chat.jsx +104 -5
- package/src/stories/Common Inputs/Picker/Picker.jsx +47 -0
- package/src/stories/Common Inputs/TextField/TextField.jsx +1 -1
- package/src/stories/Community/Community.jsx +110 -0
- package/src/stories/Events/Event/Event.jsx +97 -4
- package/src/stories/Events/EventsList/EventsList.jsx +91 -17
- package/src/stories/Forms/CreateSpace/CreateSpace.jsx +73 -0
- package/src/stories/Library/Folders/Folders.jsx +79 -1
- package/src/stories/Library/Notes/Notes.jsx +57 -1
- package/src/stories/Modals/NavbarPreviewModal/NavbarPreviewModal.jsx +31 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +125 -11
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +56 -26
- package/src/stories/Navbar/Navbar.jsx +1 -1
- package/src/stories/Pages/Events/Event/Event.jsx +12 -4
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +0 -13
- package/src/stories/Pages/ViewWorld/styles.json +1 -1
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +57 -4
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +62 -9
- package/src/stories/Preview/Preview.jsx +9 -1
- package/src/stories/PreviewComponents/ChatPreview/ChatPreview.jsx +132 -0
- package/src/stories/PreviewComponents/EventPreview/EventPreview.jsx +116 -0
- package/src/stories/PreviewComponents/EventsPreview/EventsPreview.jsx +132 -0
- package/src/stories/PreviewComponents/FoldersPreview/FoldersPreview.jsx +127 -0
- package/src/stories/PreviewComponents/MusicAlbumPreview/MusicAlbumPreview.jsx +124 -0
- package/src/stories/PreviewComponents/MusicAlbumsPreview/MusicAlbumsPreview.jsx +126 -0
- package/src/stories/PreviewComponents/MusicPlayerPreview/MusicPlayerPreview.jsx +113 -0
- package/src/stories/PreviewComponents/NavbarPreview/NavbarPreview.jsx +93 -0
- package/src/stories/PreviewComponents/NotesPreview/NotesPreview.jsx +122 -0
- package/src/stories/PreviewComponents/PhotoAlbumPreview/PhotoAlbumPreview.jsx +129 -0
- package/src/stories/PreviewComponents/PhotoAlbumsPreview/PhotoAlbumsPreview.jsx +129 -0
- package/src/stories/PreviewComponents/SpacesListPreview/SpacesListPreview.jsx +138 -0
- package/src/stories/PreviewComponents/VideoAlbumPreview/VideoAlbumPreview.jsx +129 -0
- package/src/stories/PreviewComponents/VideoAlbumsPreview/VideoAlbumsPreview.jsx +124 -0
- package/src/stories/PreviewComponents/VideoPreview/VideoPreview.jsx +125 -0
- package/src/stories/PreviewComponents/globalStyles.js +20 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +5 -2
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +5 -5
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +12 -6
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +2 -2
- package/src/stories/Reusable Components/Cards/globalCardStyles.js +2 -1
- package/src/stories/Reusable Components/Community/Community.jsx +70 -0
- package/src/stories/Reusable Components/Gallery/Gallery.jsx +10 -9
- package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +3 -25
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +18 -6
- package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +9 -4
- package/src/stories/Reusable Components/Tabs/Tabs.jsx +67 -0
- package/src/stories/Sections/Sections.jsx +5 -2
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +57 -16
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +70 -1
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +62 -3
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +13 -6
- package/src/stories/Widgets/SpacesListWidget/SpacesListWidget.jsx +78 -0
- package/src/stories/Widgets/UsersWidget/UsersWidget.jsx +20 -0
- package/src/stories/helpers/util.js +24 -2
- package/src/stories/store/communities.js +705 -0
- package/src/stories/store/store.js +33 -0
- package/src/stories/styling.json +92 -0
@@ -0,0 +1,705 @@
|
|
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
|
+
header: {
|
68
|
+
|
69
|
+
},
|
70
|
+
body: {
|
71
|
+
sectionHeaderStyles: {
|
72
|
+
padding: 2,
|
73
|
+
headerBackground: "#00ADC4",
|
74
|
+
titleColor: "white"
|
75
|
+
},
|
76
|
+
customCardStyles: {
|
77
|
+
cardPadding: 6,
|
78
|
+
cardTitleFontSize: 15,
|
79
|
+
cardBackgroundColor: "white",
|
80
|
+
cardTitleColor: "#00ADC4",
|
81
|
+
cardBorderSize: 1,
|
82
|
+
cardBorderColor: "#00ADC4",
|
83
|
+
onHoverBackgroundColor: "#d3d3d3",
|
84
|
+
controlsStyles: {
|
85
|
+
showOnHover: true,
|
86
|
+
iconColor: "#00ADC4"
|
87
|
+
}
|
88
|
+
},
|
89
|
+
borderRadius: 10,
|
90
|
+
primaryColor: "#00ADC4",
|
91
|
+
iconsColor: "#00ADC4",
|
92
|
+
backgroundColor: "white",
|
93
|
+
discColor: "gray",
|
94
|
+
dateColor: "gray",
|
95
|
+
iconColor: "#00ADC4",
|
96
|
+
cardTitleFontSize: 15
|
97
|
+
},
|
98
|
+
|
99
|
+
}
|
100
|
+
}
|
101
|
+
},
|
102
|
+
spaces: [
|
103
|
+
{
|
104
|
+
// space level settings
|
105
|
+
spaceId: '',
|
106
|
+
spaceType: 'chat',
|
107
|
+
spaceTypeId: '',
|
108
|
+
spaceInvites: [],
|
109
|
+
spaceMembers: [],
|
110
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
111
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
112
|
+
spaceProps: {
|
113
|
+
users: [
|
114
|
+
{
|
115
|
+
id: 'walter',
|
116
|
+
display: 'Walter White',
|
117
|
+
},
|
118
|
+
{
|
119
|
+
id: 'jesse',
|
120
|
+
display: 'Jesse Pinkman',
|
121
|
+
},
|
122
|
+
{
|
123
|
+
id: 'gus',
|
124
|
+
display: 'Gustavo "Gus" Fring',
|
125
|
+
},
|
126
|
+
{
|
127
|
+
id: 'saul',
|
128
|
+
display: 'Saul Goodman',
|
129
|
+
},
|
130
|
+
{
|
131
|
+
id: 'hank',
|
132
|
+
display: 'Hank Schrader',
|
133
|
+
},
|
134
|
+
{
|
135
|
+
id: 'skyler',
|
136
|
+
display: 'Skyler White',
|
137
|
+
},
|
138
|
+
{
|
139
|
+
id: 'mike',
|
140
|
+
display: 'Mike Ehrmantraut',
|
141
|
+
},
|
142
|
+
{
|
143
|
+
id: 'lydia',
|
144
|
+
display: 'Lydìã Rôdarté-Qüayle',
|
145
|
+
},
|
146
|
+
],
|
147
|
+
data: [
|
148
|
+
{ 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 !' },
|
149
|
+
{ 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" />) },
|
150
|
+
{ 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 ' },
|
151
|
+
{ 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 ' },
|
152
|
+
]
|
153
|
+
},
|
154
|
+
styles: {
|
155
|
+
headerStyles: {
|
156
|
+
padding: 10,
|
157
|
+
headerBackground: "#00ADC4",
|
158
|
+
titleColor: "#ffff",
|
159
|
+
controlsStyles: {
|
160
|
+
iconSize: 25
|
161
|
+
}
|
162
|
+
},
|
163
|
+
backgroundColor: 'transparent',
|
164
|
+
customCardStyles: {
|
165
|
+
cardPadding: 6,
|
166
|
+
cardTitleFontSize: 15,
|
167
|
+
cardBackgroundColor: "white",
|
168
|
+
cardTitleColor: "#00ADC4",
|
169
|
+
cardBorderColor: "#00ADC4",
|
170
|
+
onHoverBackgroundColor: "#d3d3d3",
|
171
|
+
iconColor: "#00ADC4",
|
172
|
+
onHoverColor: 'gray',
|
173
|
+
controlsStyles: {
|
174
|
+
iconColor: "#00ADC4"
|
175
|
+
}
|
176
|
+
}
|
177
|
+
},
|
178
|
+
},
|
179
|
+
{
|
180
|
+
spaceId: '',
|
181
|
+
spaceType: 'events_list',
|
182
|
+
spaceTypeId: '',
|
183
|
+
spaceInvites: [],
|
184
|
+
spaceMembers: [],
|
185
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
186
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
187
|
+
spaceProps: {
|
188
|
+
events: [
|
189
|
+
{ title: 'Event one', date: '15-11-2020 : 5-8-2021' },
|
190
|
+
{ title: 'Event two', date: '14-12-2020 : 14-4-2023' },
|
191
|
+
{ title: 'Event three', date: '5-6-2021 : 5-8-2021' },
|
192
|
+
{ title: 'Event four', date: '14-4-2023' },
|
193
|
+
{ title: 'Event five', date: '5-6-2021 : 14-4-2023' },
|
194
|
+
]
|
195
|
+
},
|
196
|
+
styles: {
|
197
|
+
headerStyles: {
|
198
|
+
padding: 10,
|
199
|
+
headerBackground: "#00ADC4",
|
200
|
+
titleColor: "#ffff",
|
201
|
+
controlsStyles: {
|
202
|
+
iconSize: 25
|
203
|
+
}
|
204
|
+
},
|
205
|
+
customCardStyles: {
|
206
|
+
cardPadding: 6,
|
207
|
+
cardTitleFontSize: 15,
|
208
|
+
cardBackgroundColor: "white",
|
209
|
+
cardTitleColor: "#00ADC4",
|
210
|
+
cardBorderColor: "#00ADC4",
|
211
|
+
onHoverBackgroundColor: "#d3d3d3",
|
212
|
+
iconColor: "#00ADC4",
|
213
|
+
controlsStyles: {
|
214
|
+
iconColor: "#00ADC4"
|
215
|
+
}
|
216
|
+
}
|
217
|
+
},
|
218
|
+
},
|
219
|
+
{
|
220
|
+
spaceId: '',
|
221
|
+
spaceType: 'event',
|
222
|
+
spaceTypeId: '',
|
223
|
+
spaceInvites: [],
|
224
|
+
spaceMembers: [],
|
225
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
226
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
227
|
+
spaceProps: {
|
228
|
+
cover: 'https://image.freepik.com/free-vector/zoo-animals-wild-nature-background_1308-44197.jpg',
|
229
|
+
title: "Zoo trip",
|
230
|
+
date: "15/11/1976 : 16/11/1976",
|
231
|
+
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.",
|
232
|
+
},
|
233
|
+
styles: {
|
234
|
+
headerStyles: {
|
235
|
+
padding: 10,
|
236
|
+
headerBackground: "#00ADC4",
|
237
|
+
titleColor: "#ffff",
|
238
|
+
controlsStyles: {
|
239
|
+
iconSize: 25
|
240
|
+
}
|
241
|
+
},
|
242
|
+
backgroundColor: 'white',
|
243
|
+
titleColor: '#00ADC4',
|
244
|
+
titleSize: 20,
|
245
|
+
dateColor: '#00ADC4',
|
246
|
+
dateSize: 10,
|
247
|
+
discColor: 'black',
|
248
|
+
discSize: 15,
|
249
|
+
},
|
250
|
+
},
|
251
|
+
{
|
252
|
+
spaceId: '',
|
253
|
+
spaceType: 'folders',
|
254
|
+
spaceTypeId: '',
|
255
|
+
spaceInvites: [],
|
256
|
+
spaceMembers: [],
|
257
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
258
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
259
|
+
spaceProps: {
|
260
|
+
folders: [
|
261
|
+
{ title: 'Folder one', description: 'Discription for folder one' },
|
262
|
+
{ title: 'Folder two', description: 'Discription for folder two' },
|
263
|
+
{ title: 'Folder three', description: 'Discription for folder three' },
|
264
|
+
{ title: 'Folder four', description: 'Discription for folder four' },
|
265
|
+
{ title: 'Folder five', description: 'Discription for folder five' },
|
266
|
+
{ title: 'Folder six', description: 'Discription for folder six' },
|
267
|
+
],
|
268
|
+
folderTitle: 'My Folders'
|
269
|
+
},
|
270
|
+
styles: {
|
271
|
+
headerStyles: {
|
272
|
+
padding: 10,
|
273
|
+
headerBackground: "#00ADC4",
|
274
|
+
titleColor: "#ffff",
|
275
|
+
controlsStyles: {
|
276
|
+
iconSize: 25
|
277
|
+
}
|
278
|
+
},
|
279
|
+
customCardStyles: {
|
280
|
+
iconColor: '#00ADC4',
|
281
|
+
cardTitleColor: '#00ADC4',
|
282
|
+
cardDescriptionColor: 'gray'
|
283
|
+
},
|
284
|
+
},
|
285
|
+
},
|
286
|
+
{
|
287
|
+
spaceId: '',
|
288
|
+
spaceType: 'notes',
|
289
|
+
spaceTypeId: '',
|
290
|
+
spaceInvites: [],
|
291
|
+
spaceMembers: [],
|
292
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
293
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
294
|
+
spaceProps: {
|
295
|
+
notes: [
|
296
|
+
{ title: 'Study notes', date: '15/11/2020' },
|
297
|
+
{ title: 'Music notes', date: '14/12/2020' },
|
298
|
+
{ title: 'Workout notes', date: '5/8/2021' },
|
299
|
+
{ title: 'Gaming notes', date: '14/4/2023' },
|
300
|
+
{ title: 'Working notes', date: '5/6/2021' },
|
301
|
+
],
|
302
|
+
title: 'My Notes'
|
303
|
+
},
|
304
|
+
styles: {
|
305
|
+
headerStyles: {
|
306
|
+
padding: 10,
|
307
|
+
headerBackground: "#00ADC4",
|
308
|
+
titleColor: "#ffff",
|
309
|
+
controlsStyles: {
|
310
|
+
iconSize: 25
|
311
|
+
}
|
312
|
+
},
|
313
|
+
backgroundColor: 'white',
|
314
|
+
titleColor: '#00ADC4',
|
315
|
+
titleSize: 20,
|
316
|
+
dateColor: 'black',
|
317
|
+
dateSize: 10,
|
318
|
+
discColor: 'black',
|
319
|
+
discSize: 15,
|
320
|
+
},
|
321
|
+
},
|
322
|
+
{
|
323
|
+
spaceId: '',
|
324
|
+
spaceType: 'music_album',
|
325
|
+
spaceTypeId: '',
|
326
|
+
spaceInvites: [],
|
327
|
+
spaceMembers: [],
|
328
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
329
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
330
|
+
spaceProps: {
|
331
|
+
album: [
|
332
|
+
{ 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' },
|
333
|
+
{ 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' },
|
334
|
+
{ 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' },
|
335
|
+
{ 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' },
|
336
|
+
{ 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' },
|
337
|
+
{ 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' },
|
338
|
+
],
|
339
|
+
title: 'My Album'
|
340
|
+
},
|
341
|
+
styles: {
|
342
|
+
headerStyles: {
|
343
|
+
padding: 10,
|
344
|
+
headerBackground: "#00ADC4",
|
345
|
+
titleColor: "#ffff",
|
346
|
+
controlsStyles: {
|
347
|
+
iconSize: 25
|
348
|
+
}
|
349
|
+
},
|
350
|
+
backgroundColor: 'white',
|
351
|
+
titleColor: '#00ADC4',
|
352
|
+
titleSize: 20,
|
353
|
+
dateColor: 'black',
|
354
|
+
dateSize: 10,
|
355
|
+
discColor: 'black',
|
356
|
+
discSize: 15,
|
357
|
+
},
|
358
|
+
widgets: [
|
359
|
+
{
|
360
|
+
// widget level settings
|
361
|
+
widgetId: '',
|
362
|
+
widgetType: ['music player'],
|
363
|
+
widgetTypeId: '',
|
364
|
+
widgetMusicPlayerId: '',
|
365
|
+
widgetVideoPlayerId: '',
|
366
|
+
widgetProps: {
|
367
|
+
// widget music player level settings
|
368
|
+
playlist: [
|
369
|
+
{ 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' },
|
370
|
+
{ 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' },
|
371
|
+
{ 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' },
|
372
|
+
{ 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' },
|
373
|
+
{ 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' },
|
374
|
+
{ 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' },
|
375
|
+
],
|
376
|
+
currentSong: 0
|
377
|
+
},
|
378
|
+
styles: {
|
379
|
+
headerStyles: {
|
380
|
+
padding: 10,
|
381
|
+
headerBackground: "#00ADC4",
|
382
|
+
titleColor: "#ffff",
|
383
|
+
controlsStyles: {
|
384
|
+
iconSize: 25
|
385
|
+
}
|
386
|
+
},
|
387
|
+
borderRadius: 10,
|
388
|
+
primaryColor: "#00ADC4",
|
389
|
+
iconsColor: "#00ADC4",
|
390
|
+
backgroundColor: "white",
|
391
|
+
discColor: "gray",
|
392
|
+
dateColor: "gray",
|
393
|
+
iconColor: "#00ADC4",
|
394
|
+
cardTitleFontSize: 15
|
395
|
+
}
|
396
|
+
|
397
|
+
},
|
398
|
+
|
399
|
+
]
|
400
|
+
},
|
401
|
+
{
|
402
|
+
spaceId: '',
|
403
|
+
spaceType: 'music_albums',
|
404
|
+
spaceTypeId: '',
|
405
|
+
spaceInvites: [],
|
406
|
+
spaceMembers: [],
|
407
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
408
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
409
|
+
spaceProps: {
|
410
|
+
albums: [
|
411
|
+
{ index: 0, img: 'https://f4.bcbits.com/img/a2465881007_10.jpg', title: 'Tomorrows |', description: 'Son Lux' },
|
412
|
+
{ index: 1, img: 'https://miro.medium.com/max/807/1*o4O4SdRfLDAbX2Z41mtUbQ.png', title: 'Blond', description: 'Frank Ocean' },
|
413
|
+
{ index: 2, img: 'https://angartwork.akamaized.net/?id=197381&size=640', title: 'Love At First Sting', description: 'Scorpions' },
|
414
|
+
{ index: 3, img: 'https://www.mobiusrecordshop.com/uploads/1/3/1/4/131426346/s264159977788795342_p633_i1_w520.jpeg', title: 'The 1975', description: '1975' },
|
415
|
+
{ index: 4, img: 'https://sleazeroxx.com/wp-content/uploads/Metallica-album-cover-1-e1479325121582.jpg', title: 'Hardwired...To Self-Destruct', description: 'Metallica' },
|
416
|
+
{ index: 5, img: 'https://cdn.mos.cms.futurecdn.net/9fbSfj65deYmueBHHqNvD7.jpg', title: 'Use Your IIIlusion |', description: "Guns N' Roses" },
|
417
|
+
],
|
418
|
+
title: 'My Albums'
|
419
|
+
},
|
420
|
+
styles: {
|
421
|
+
headerStyles: {
|
422
|
+
padding: 10,
|
423
|
+
headerBackground: "#00ADC4",
|
424
|
+
titleColor: "#ffff",
|
425
|
+
controlsStyles: {
|
426
|
+
iconSize: 25
|
427
|
+
}
|
428
|
+
},
|
429
|
+
rowsHeight: 400,
|
430
|
+
customCardStyles: {
|
431
|
+
cardTitleColor: "#00ADC4",
|
432
|
+
cardDiscriptionColor: 'gray'
|
433
|
+
}
|
434
|
+
},
|
435
|
+
|
436
|
+
},
|
437
|
+
{
|
438
|
+
spaceId: '',
|
439
|
+
spaceType: 'photo_album',
|
440
|
+
spaceTypeId: '',
|
441
|
+
spaceInvites: [],
|
442
|
+
spaceMembers: [],
|
443
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
444
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
445
|
+
spaceProps: {
|
446
|
+
album: [
|
447
|
+
{ 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' },
|
448
|
+
{ 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' },
|
449
|
+
{ 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' },
|
450
|
+
{ 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' },
|
451
|
+
{ 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' },
|
452
|
+
{ 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' },
|
453
|
+
],
|
454
|
+
title: 'My Album'
|
455
|
+
},
|
456
|
+
styles: {
|
457
|
+
headerStyles: {
|
458
|
+
padding: 10,
|
459
|
+
headerBackground: "#00ADC4",
|
460
|
+
titleColor: "#ffff",
|
461
|
+
controlsStyles: {
|
462
|
+
iconSize: 25
|
463
|
+
}
|
464
|
+
},
|
465
|
+
columnsNumber: 2,
|
466
|
+
rowsHeight: 400,
|
467
|
+
customCardStyles: {
|
468
|
+
cardTitleColor: "#00ADC4",
|
469
|
+
cardDiscriptionColor: 'gray'
|
470
|
+
}
|
471
|
+
},
|
472
|
+
|
473
|
+
},
|
474
|
+
{
|
475
|
+
spaceId: '',
|
476
|
+
spaceType: 'photo_albums',
|
477
|
+
spaceTypeId: '',
|
478
|
+
spaceInvites: [],
|
479
|
+
spaceMembers: [],
|
480
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
481
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
482
|
+
spaceProps: {
|
483
|
+
albums: [
|
484
|
+
{ 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' },
|
485
|
+
{ 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' },
|
486
|
+
{ 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' },
|
487
|
+
{ 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' },
|
488
|
+
{ 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' },
|
489
|
+
{ 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' },
|
490
|
+
|
491
|
+
],
|
492
|
+
title: 'My Albums'
|
493
|
+
},
|
494
|
+
styles: {
|
495
|
+
headerStyles: {
|
496
|
+
padding: 10,
|
497
|
+
headerBackground: "#00ADC4",
|
498
|
+
titleColor: "#ffff",
|
499
|
+
controlsStyles: {
|
500
|
+
iconSize: 25
|
501
|
+
}
|
502
|
+
},
|
503
|
+
columnsNumber: 2,
|
504
|
+
rowsHeight: 400,
|
505
|
+
customCardStyles: {
|
506
|
+
cardTitleColor: "#00ADC4",
|
507
|
+
cardDiscriptionColor: 'gray',
|
508
|
+
countColor: 'gray'
|
509
|
+
}
|
510
|
+
},
|
511
|
+
|
512
|
+
},
|
513
|
+
{
|
514
|
+
spaceId: '',
|
515
|
+
spaceType: 'photo_albums',
|
516
|
+
spaceTypeId: '',
|
517
|
+
spaceInvites: [],
|
518
|
+
spaceMembers: [],
|
519
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
520
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
521
|
+
spaceProps: {
|
522
|
+
albums: [
|
523
|
+
{ 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' },
|
524
|
+
{ 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' },
|
525
|
+
{ 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' },
|
526
|
+
{ 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' },
|
527
|
+
{ 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' },
|
528
|
+
{ 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' },
|
529
|
+
],
|
530
|
+
title: 'My Albums'
|
531
|
+
},
|
532
|
+
styles: {
|
533
|
+
headerStyles: {
|
534
|
+
padding: 10,
|
535
|
+
headerBackground: "#00ADC4",
|
536
|
+
titleColor: "#ffff",
|
537
|
+
controlsStyles: {
|
538
|
+
iconSize: 25
|
539
|
+
}
|
540
|
+
},
|
541
|
+
columnsNumber: 2,
|
542
|
+
rowsHeight: 400,
|
543
|
+
customCardStyles: {
|
544
|
+
cardTitleColor: "#00ADC4",
|
545
|
+
cardDiscriptionColor: 'gray',
|
546
|
+
countColor: 'gray'
|
547
|
+
}
|
548
|
+
},
|
549
|
+
|
550
|
+
},
|
551
|
+
{
|
552
|
+
spaceId: '',
|
553
|
+
spaceType: 'video_albums',
|
554
|
+
spaceTypeId: '',
|
555
|
+
spaceInvites: [],
|
556
|
+
spaceMembers: [],
|
557
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
558
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
559
|
+
spaceProps: {
|
560
|
+
videoAlbums: [
|
561
|
+
{ img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 1', count: '24' },
|
562
|
+
{ img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 2', count: '24' },
|
563
|
+
{ img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 3', count: '24' },
|
564
|
+
{ img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 4', count: '24' },
|
565
|
+
{ img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 5', count: '24' },
|
566
|
+
{ img: 'https://i.ytimg.com/an_webp/RKU6x1n9Hak/mqdefault_6s.webp?du=3000&sqp=COuu_I4G&rs=AOn4CLDdV5RkE-jzkcJ8KSwk9K4cKlV2bA', title: 'Album 6', count: '24' },
|
567
|
+
|
568
|
+
],
|
569
|
+
title: 'My Albums'
|
570
|
+
},
|
571
|
+
styles: {
|
572
|
+
headerStyles: {
|
573
|
+
padding: 10,
|
574
|
+
headerBackground: "#00ADC4",
|
575
|
+
titleColor: "#ffff",
|
576
|
+
controlsStyles: {
|
577
|
+
iconSize: 25
|
578
|
+
}
|
579
|
+
},
|
580
|
+
rowsHeight: 400,
|
581
|
+
customCardStyles: {
|
582
|
+
cardTitleColor: "#00ADC4",
|
583
|
+
cardDiscriptionColor: 'gray',
|
584
|
+
countColor: 'gray'
|
585
|
+
}
|
586
|
+
},
|
587
|
+
|
588
|
+
},
|
589
|
+
{
|
590
|
+
spaceId: '',
|
591
|
+
spaceType: 'video_album',
|
592
|
+
spaceTypeId: '',
|
593
|
+
spaceInvites: [],
|
594
|
+
spaceMembers: [],
|
595
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
596
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
597
|
+
spaceProps: {
|
598
|
+
album: [
|
599
|
+
{ 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' },
|
600
|
+
{ 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' },
|
601
|
+
{ 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' },
|
602
|
+
{ 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' },
|
603
|
+
{ 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' },
|
604
|
+
{ 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' },
|
605
|
+
],
|
606
|
+
title: 'My Album'
|
607
|
+
},
|
608
|
+
styles: {
|
609
|
+
headerStyles: {
|
610
|
+
padding: 10,
|
611
|
+
headerBackground: "#00ADC4",
|
612
|
+
titleColor: "#ffff",
|
613
|
+
controlsStyles: {
|
614
|
+
iconSize: 25
|
615
|
+
}
|
616
|
+
},
|
617
|
+
backgroundColor: 'white',
|
618
|
+
titleColor: '#00ADC4',
|
619
|
+
titleSize: 20,
|
620
|
+
dateColor: 'black',
|
621
|
+
dateSize: 10,
|
622
|
+
discColor: 'black',
|
623
|
+
discSize: 15,
|
624
|
+
},
|
625
|
+
widgets: [
|
626
|
+
{
|
627
|
+
// widget level settings
|
628
|
+
widgetId: '',
|
629
|
+
widgetType: ['video player'],
|
630
|
+
widgetTypeId: '',
|
631
|
+
widgetMusicPlayerId: '',
|
632
|
+
widgetVideoPlayerId: '',
|
633
|
+
widgetProps: {
|
634
|
+
// widget music player level settings
|
635
|
+
|
636
|
+
},
|
637
|
+
styles: {
|
638
|
+
headerStyles: {
|
639
|
+
padding: 10,
|
640
|
+
headerBackground: "#00ADC4",
|
641
|
+
titleColor: "#ffff",
|
642
|
+
controlsStyles: {
|
643
|
+
iconSize: 25
|
644
|
+
}
|
645
|
+
},
|
646
|
+
borderRadius: 10,
|
647
|
+
primaryColor: "#00ADC4",
|
648
|
+
iconsColor: "#00ADC4",
|
649
|
+
backgroundColor: "white",
|
650
|
+
discColor: "gray",
|
651
|
+
dateColor: "gray",
|
652
|
+
iconColor: "#00ADC4",
|
653
|
+
cardTitleFontSize: 15
|
654
|
+
}
|
655
|
+
|
656
|
+
},
|
657
|
+
]
|
658
|
+
},
|
659
|
+
{
|
660
|
+
spaceId: '',
|
661
|
+
spaceType: 'video_space',
|
662
|
+
spaceTypeId: '',
|
663
|
+
spaceInvites: [],
|
664
|
+
spaceMembers: [],
|
665
|
+
joining_guards: ['invite-only', 'enrollment-based', 'role-based', 'community-only', 'discoverable'],
|
666
|
+
visibility_guards: ['everyone', 'locked', 'role-based', 'user-based'],
|
667
|
+
spaceProps: {
|
668
|
+
comments: [
|
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
|
+
{ 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.' },
|
673
|
+
{ 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.' },
|
674
|
+
],
|
675
|
+
videoSrc: 'https://www.youtube.com/watch?v:snUGqgAmz-c',
|
676
|
+
title: 'Video',
|
677
|
+
discription: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium placeat nostrum tempora suscipit laborum quibusdam.",
|
678
|
+
date: "10/11/2022",
|
679
|
+
},
|
680
|
+
styles: {
|
681
|
+
headerStyles: {
|
682
|
+
padding: 10,
|
683
|
+
headerBackground: "#00ADC4",
|
684
|
+
titleColor: "#ffff",
|
685
|
+
controlsStyles: {
|
686
|
+
iconSize: 25
|
687
|
+
}
|
688
|
+
},
|
689
|
+
iconsColor: '#00ADC4',
|
690
|
+
backgroundColor: 'white',
|
691
|
+
detailsPadding: 3,
|
692
|
+
titleFontSize: 20,
|
693
|
+
titleColor: '#00ADC4',
|
694
|
+
dateFontSize: 10,
|
695
|
+
dateColor: 'gray',
|
696
|
+
discFontSize: 15,
|
697
|
+
discColor: 'black',
|
698
|
+
commentBackgroundColor: '#00ADC4',
|
699
|
+
commentTitleColor: 'white',
|
700
|
+
commentTitleFontSize: 15
|
701
|
+
},
|
702
|
+
|
703
|
+
},
|
704
|
+
]
|
705
|
+
}
|