@mohamed-karawia/library 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/chromatic.yml +26 -0
- package/.storybook/main.js +21 -0
- package/.storybook/middleware.js +28 -0
- package/.storybook/preview.js +9 -0
- package/CHANGELOG.md +66 -0
- package/LICENSE +21 -0
- package/README.md +23 -0
- package/README.old.md +3 -0
- package/build-storybook.log +2704 -0
- package/dist/index.js +311 -0
- package/dist/stories/API/API.js +48 -0
- package/dist/stories/API/API.stories.js +24 -0
- package/dist/stories/Agora/Call/Call.js +316 -0
- package/dist/stories/Agora/Chat/Chat.js +107 -0
- package/dist/stories/Agora/Chat/Chat.stories.js +24 -0
- package/dist/stories/Agora/Chat/Components/ChatItem/ChatItem.js +34 -0
- package/dist/stories/Agora/Chat/Components/ChatRoom/ChatRoom.js +199 -0
- package/dist/stories/Agora/Controls/Controls.js +80 -0
- package/dist/stories/Agora/Preview/PreviewCamera.js +247 -0
- package/dist/stories/Agora/Preview/ShareScreen.js +119 -0
- package/dist/stories/Agora/Room/Room.js +114 -0
- package/dist/stories/Agora/Room/Room.stories.js +24 -0
- package/dist/stories/Buttons/Buttons/Buttons.js +59 -0
- package/dist/stories/Buttons/Buttons/Buttons.stories.js +39 -0
- package/dist/stories/Buttons/ReactModal/ReactModal.js +94 -0
- package/dist/stories/Buttons/ReactModal/ReactModal.stories.js +30 -0
- package/dist/stories/Buttons/ReactModal/ReactModalDemo.js +17 -0
- package/dist/stories/Chat/Chat.js +76 -0
- package/dist/stories/Chat/Chat.stories.js +76 -0
- package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.js +59 -0
- package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.js +58 -0
- package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.js +93 -0
- package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.js +56 -0
- package/dist/stories/Common Inputs/CustomDropzone/CustomDropZone.js +88 -0
- package/dist/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.js +47 -0
- package/dist/stories/Common Inputs/CustomSelect/CustomSelect.js +92 -0
- package/dist/stories/Common Inputs/CustomSelect/CustomSelect.stories.js +61 -0
- package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.js +65 -0
- package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.js +48 -0
- package/dist/stories/Common Inputs/DatePicker/DatePicker.js +104 -0
- package/dist/stories/Common Inputs/DatePicker/DatePicker.stories.js +60 -0
- package/dist/stories/Common Inputs/DatePicker/SingleDatePicker.js +97 -0
- package/dist/stories/Common Inputs/DropZone.js +148 -0
- package/dist/stories/Common Inputs/EditorComponent/EditorComponent.js +84 -0
- package/dist/stories/Common Inputs/EditorComponent/EditorComponent.stories.js +62 -0
- package/dist/stories/Common Inputs/EditorComponent/constants.js +41 -0
- package/dist/stories/Common Inputs/Formik/InputField/InputField.js +35 -0
- package/dist/stories/Common Inputs/Formik/InputField/InputField.stories.js +43 -0
- package/dist/stories/Common Inputs/Formik/RadioField/RadioField.js +54 -0
- package/dist/stories/Common Inputs/Formik/RadioField/RadioField.stories.js +60 -0
- package/dist/stories/Common Inputs/RadioInput/RadioInput.js +115 -0
- package/dist/stories/Common Inputs/RadioInput/RadioInput.stories.js +50 -0
- package/dist/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.js +31 -0
- package/dist/stories/Common Inputs/RichTextInput/Components/Gif/Gif.js +88 -0
- package/dist/stories/Common Inputs/RichTextInput/RichTextInput.js +278 -0
- package/dist/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +51 -0
- package/dist/stories/Common Inputs/TextField/TextField.js +65 -0
- package/dist/stories/Common Inputs/TextField/TextField.stories.js +48 -0
- package/dist/stories/Containers/BaseMaterial.js +65 -0
- package/dist/stories/Containers/BaseMaterial.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetBody.js +17 -0
- package/dist/stories/Containers/WidgetExample/WidgetBody.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetExample.js +23 -0
- package/dist/stories/Containers/WidgetExample/WidgetExample.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetHead.js +17 -0
- package/dist/stories/Containers/WidgetExample/WidgetHead.stories.js +24 -0
- package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.js +83 -0
- package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.stories.js +22 -0
- package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.js +81 -0
- package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.js +42 -0
- package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.js +46 -0
- package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.stories.js +65 -0
- package/dist/stories/Enrollment/Guest/FillForm/FillForm.js +64 -0
- package/dist/stories/Enrollment/Guest/FillForm/FillForm.stories.js +48 -0
- package/dist/stories/Events/CreateEvent/CreateEvent.js +110 -0
- package/dist/stories/Events/CreateEvent/CreateEvent.stories.js +30 -0
- package/dist/stories/Events/Event/Event.js +94 -0
- package/dist/stories/Events/Event/Event.stories.js +33 -0
- package/dist/stories/Events/EventsList/EventsList.js +135 -0
- package/dist/stories/Events/EventsList/EventsList.stories.js +44 -0
- package/dist/stories/Forms/AddPhoto/AddPhoto.js +101 -0
- package/dist/stories/Forms/AddPhoto/AddPhoto.stories.js +47 -0
- package/dist/stories/Forms/AddSong/AddSong.js +98 -0
- package/dist/stories/Forms/AddSong/AddSong.stories.js +37 -0
- package/dist/stories/Forms/AddVideo/AddVideo.js +103 -0
- package/dist/stories/Forms/AddVideo/AddVideo.stories.js +33 -0
- package/dist/stories/Forms/Create-Profile/CreateProfile.js +229 -0
- package/dist/stories/Forms/Create-Profile/CreateProfile.stories.js +49 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.js +54 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.js +42 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.js +49 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.js +41 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.js +41 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.js +32 -0
- package/dist/stories/Forms/CreateAlbum/CreateAlbum.js +95 -0
- package/dist/stories/Forms/CreateAlbum/CreateAlbum.stories.js +47 -0
- package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.js +84 -0
- package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.js +58 -0
- package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.js +100 -0
- package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.js +47 -0
- package/dist/stories/Forms/CreateProfile/CreateProfile.js +383 -0
- package/dist/stories/Forms/CreateProfile/CreateProfile.stories.js +24 -0
- package/dist/stories/Forms/CreateProfile-3/CreateProfile.js +324 -0
- package/dist/stories/Forms/CreateProfile-3/CreateProfile.stories.js +24 -0
- package/dist/stories/Forms/CreateUser/CreateUser.js +27 -0
- package/dist/stories/Forms/CreateUser/CreateUser.stories.js +26 -0
- package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.js +84 -0
- package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.js +37 -0
- package/dist/stories/Forms/Form/Form.js +35 -0
- package/dist/stories/Forms/Form/Form.stories.js +24 -0
- package/dist/stories/Forms/NewProfile/NewProfile.js +450 -0
- package/dist/stories/Forms/NewProfile/NewProfile.stories.js +24 -0
- package/dist/stories/Layout/Body/Body.js +30 -0
- package/dist/stories/Layout/Body/Body.stories.js +30 -0
- package/dist/stories/Layout/Center/Center.js +26 -0
- package/dist/stories/Layout/Center/Center.stories.js +24 -0
- package/dist/stories/Layout/Head/Head.js +24 -0
- package/dist/stories/Layout/Head/Head.stories.js +24 -0
- package/dist/stories/Layout/Left/Left.js +28 -0
- package/dist/stories/Layout/Left/Left.stories.js +24 -0
- package/dist/stories/Layout/Right/Right.js +27 -0
- package/dist/stories/Layout/Right/Right.stories.js +24 -0
- package/dist/stories/Library/CreateFolder/CreateFolder.js +87 -0
- package/dist/stories/Library/CreateFolder/CreateFolder.stories.js +45 -0
- package/dist/stories/Library/Folders/Folders.js +126 -0
- package/dist/stories/Library/Folders/Folders.stories.js +55 -0
- package/dist/stories/Library/Notes/Notes.js +135 -0
- package/dist/stories/Library/Notes/Notes.stories.js +42 -0
- package/dist/stories/Library/ViewNote/ViewNote.js +30 -0
- package/dist/stories/Library/ViewNote/ViewNote.stories.js +24 -0
- package/dist/stories/Misc/Thumbnail/Thumbnail.js +118 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +131 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.stories.js +115 -0
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +149 -0
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.stories.js +107 -0
- package/dist/stories/Navbar/Navbar.js +346 -0
- package/dist/stories/Navbar/Navbar.stories.js +41 -0
- package/dist/stories/Pages/Blank/Blank.js +36 -0
- package/dist/stories/Pages/Blank/Blank.stories.js +24 -0
- package/dist/stories/Pages/Centered/Centered.js +34 -0
- package/dist/stories/Pages/Centered/Centered.stories.js +24 -0
- package/dist/stories/Pages/Chat/Chat.js +86 -0
- package/dist/stories/Pages/Chat/Chat.stories.js +74 -0
- package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.js +96 -0
- package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.js +22 -0
- package/dist/stories/Pages/Enrollment/FillForm/FillForm.js +102 -0
- package/dist/stories/Pages/Enrollment/FillForm/FillForm.stories.js +22 -0
- package/dist/stories/Pages/Enrollment/Forms/Forms.js +125 -0
- package/dist/stories/Pages/Enrollment/Forms/Forms.stories.js +22 -0
- package/dist/stories/Pages/Events/Event/Event.js +89 -0
- package/dist/stories/Pages/Events/Event/Event.stories.js +22 -0
- package/dist/stories/Pages/Events/Events/Events.js +125 -0
- package/dist/stories/Pages/Events/Events/Events.stories.js +22 -0
- package/dist/stories/Pages/Library/Folders/Library.js +136 -0
- package/dist/stories/Pages/Library/Folders/Library.stories.js +22 -0
- package/dist/stories/Pages/Library/Notes/Notes.js +123 -0
- package/dist/stories/Pages/Library/Notes/Notes.stories.js +22 -0
- package/dist/stories/Pages/Music/MusicAlbum/Music.js +211 -0
- package/dist/stories/Pages/Music/MusicAlbum/Music.stories.js +22 -0
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +155 -0
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.js +22 -0
- package/dist/stories/Pages/Photos/Album/Album.js +164 -0
- package/dist/stories/Pages/Photos/Album/Album.stories.js +22 -0
- package/dist/stories/Pages/Photos/Albums/Albums.js +151 -0
- package/dist/stories/Pages/Photos/Albums/Albums.stories.js +22 -0
- package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.js +112 -0
- package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.js +22 -0
- package/dist/stories/Pages/Video/VideoAlbum/Video.js +216 -0
- package/dist/stories/Pages/Video/VideoAlbum/Video.stories.js +22 -0
- package/dist/stories/Pages/ViewWorld/ViewWorld.js +244 -0
- package/dist/stories/Pages/ViewWorld/ViewWorld.stories.js +264 -0
- package/dist/stories/Pages/ViewWorld/constatnts.js +172 -0
- package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.js +24 -0
- package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.js +32 -0
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +236 -0
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.stories.js +115 -0
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +156 -0
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.stories.js +102 -0
- package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.js +35 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +81 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.js +40 -0
- package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.js +65 -0
- package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.js +34 -0
- package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.js +66 -0
- package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.js +39 -0
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +93 -0
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.js +27 -0
- package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.js +88 -0
- package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +86 -0
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.js +44 -0
- package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.js +27 -0
- package/dist/stories/Reusable Components/Cards/Card.js +102 -0
- package/dist/stories/Reusable Components/Cards/Card.stories.js +132 -0
- package/dist/stories/Reusable Components/Cards/globalCardStyles.js +70 -0
- package/dist/stories/Reusable Components/Controls/Controls.js +128 -0
- package/dist/stories/Reusable Components/Controls/Controls.stories.js +49 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.js +120 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.stories.js +56 -0
- package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.js +1 -0
- package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +1 -0
- package/dist/stories/Reusable Components/Lists/List.js +1 -0
- package/dist/stories/Reusable Components/Lists/List.stories.js +1 -0
- package/dist/stories/Reusable Components/Mention/Mention.js +72 -0
- package/dist/stories/Reusable Components/Mention/Mention.stories.js +66 -0
- package/dist/stories/Reusable Components/ReactModal/ReactModal.js +83 -0
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +100 -0
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.stories.js +207 -0
- package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.js +64 -0
- package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.js +35 -0
- package/dist/stories/Reusable Components/ReusableList/ReusableList.js +92 -0
- package/dist/stories/Reusable Components/ReusableList/ReusableList.stories.js +84 -0
- package/dist/stories/Reusable Components/SearchCard/SearchCard.js +81 -0
- package/dist/stories/Reusable Components/SearchCard/SearchCard.stories.js +24 -0
- package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.js +48 -0
- package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.js +80 -0
- package/dist/stories/Reusable Components/Spinner/Spinner.js +28 -0
- package/dist/stories/Reusable Components/Spinner/Spinner.stories.js +22 -0
- package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.js +51 -0
- package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.js +80 -0
- package/dist/stories/Reusable Components/commonStyles.js +54 -0
- package/dist/stories/Reusable Components/fakeData.js +112 -0
- package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.js +74 -0
- package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +24 -0
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +151 -0
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.js +101 -0
- package/dist/stories/VideoAlbum/Comments/Comments.js +58 -0
- package/dist/stories/VideoAlbum/Comments/Comments.stories.js +45 -0
- package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.js +235 -0
- package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.js +149 -0
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +110 -0
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.stories.js +49 -0
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +150 -0
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.js +113 -0
- package/dist/stories/Widgets/LogoWidget/LogoWidget.js +32 -0
- package/dist/stories/Widgets/LogoWidget/LogoWidget.stories.js +26 -0
- package/dist/stories/Widgets/MusicPlayer/MusicPlayer.js +49 -0
- package/dist/stories/Widgets/MusicPlayer/MusicPlayer.stories.js +44 -0
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +93 -0
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.js +52 -0
- package/dist/stories/Widgets/SpacesList/SpacesList.js +28 -0
- package/dist/stories/Widgets/SpacesList/SpacesList.stories.js +52 -0
- package/dist/stories/Widgets/SpacesList/SpacesListItem.js +50 -0
- package/dist/stories/Widgets/SpacesList/SpacesListItem.stories.js +24 -0
- package/dist/stories/helpers/util.js +178 -0
- package/package.json +131 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/src/assets/add-svgrepo-com.svg +36 -0
- package/src/assets/basket-svgrepo-com.svg +42 -0
- package/src/assets/bell-svgrepo-com.svg +44 -0
- package/src/assets/compass-svgrepo-com.svg +54 -0
- package/src/assets/home-svgrepo-com.svg +42 -0
- package/src/assets/medal-svgrepo-com.svg +53 -0
- package/src/assets/search-svgrepo-com.svg +42 -0
- package/src/assets/settings-svgrepo-com.svg +47 -0
- package/src/index.js +95 -0
- package/src/stories/API/API.jsx +47 -0
- package/src/stories/API/API.stories.js +10 -0
- package/src/stories/Agora/Call/Call.jsx +213 -0
- package/src/stories/Agora/Chat/Chat.jsx +130 -0
- package/src/stories/Agora/Chat/Chat.stories.jsx +10 -0
- package/src/stories/Agora/Chat/Components/ChatItem/ChatItem.jsx +38 -0
- package/src/stories/Agora/Chat/Components/ChatRoom/ChatRoom.jsx +167 -0
- package/src/stories/Agora/Controls/Controls.jsx +56 -0
- package/src/stories/Agora/Preview/PreviewCamera.jsx +259 -0
- package/src/stories/Agora/Preview/ShareScreen.jsx +58 -0
- package/src/stories/Agora/Room/Room.jsx +85 -0
- package/src/stories/Agora/Room/Room.stories.jsx +10 -0
- package/src/stories/Buttons/Buttons/Buttons.jsx +57 -0
- package/src/stories/Buttons/Buttons/Buttons.stories.jsx +24 -0
- package/src/stories/Buttons/ReactModal/ReactModal.jsx +81 -0
- package/src/stories/Buttons/ReactModal/ReactModal.stories.jsx +18 -0
- package/src/stories/Buttons/ReactModal/ReactModalDemo.jsx +12 -0
- package/src/stories/Chat/Chat.jsx +74 -0
- package/src/stories/Chat/Chat.stories.jsx +59 -0
- package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.jsx +70 -0
- package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.jsx +32 -0
- package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.jsx +98 -0
- package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.jsx +35 -0
- package/src/stories/Common Inputs/CustomDropzone/CustomDropZone.jsx +115 -0
- package/src/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.jsx +26 -0
- package/src/stories/Common Inputs/CustomSelect/CustomSelect.jsx +89 -0
- package/src/stories/Common Inputs/CustomSelect/CustomSelect.stories.jsx +36 -0
- package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.jsx +66 -0
- package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.jsx +31 -0
- package/src/stories/Common Inputs/DatePicker/DatePicker.jsx +105 -0
- package/src/stories/Common Inputs/DatePicker/DatePicker.stories.jsx +47 -0
- package/src/stories/Common Inputs/DatePicker/SingleDatePicker.jsx +91 -0
- package/src/stories/Common Inputs/DropZone.jsx +79 -0
- package/src/stories/Common Inputs/EditorComponent/EditorComponent.jsx +54 -0
- package/src/stories/Common Inputs/EditorComponent/EditorComponent.stories.jsx +60 -0
- package/src/stories/Common Inputs/EditorComponent/constants.js +26 -0
- package/src/stories/Common Inputs/Formik/InputField/InputField.jsx +24 -0
- package/src/stories/Common Inputs/Formik/InputField/InputField.stories.jsx +27 -0
- package/src/stories/Common Inputs/Formik/RadioField/RadioField.jsx +55 -0
- package/src/stories/Common Inputs/Formik/RadioField/RadioField.stories.jsx +41 -0
- package/src/stories/Common Inputs/RadioInput/RadioInput.jsx +108 -0
- package/src/stories/Common Inputs/RadioInput/RadioInput.stories.js +30 -0
- package/src/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.jsx +16 -0
- package/src/stories/Common Inputs/RichTextInput/Components/Gif/Gif.jsx +64 -0
- package/src/stories/Common Inputs/RichTextInput/RichTextInput.jsx +331 -0
- package/src/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +45 -0
- package/src/stories/Common Inputs/TextField/TextField.jsx +66 -0
- package/src/stories/Common Inputs/TextField/TextField.stories.jsx +31 -0
- package/src/stories/Containers/BaseMaterial.jsx +58 -0
- package/src/stories/Containers/BaseMaterial.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetBody.jsx +9 -0
- package/src/stories/Containers/WidgetExample/WidgetBody.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetExample.jsx +19 -0
- package/src/stories/Containers/WidgetExample/WidgetExample.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetHead.jsx +9 -0
- package/src/stories/Containers/WidgetExample/WidgetHead.stories.js +10 -0
- package/src/stories/Enrollment/Admin/CreateForm/CreateForm.jsx +62 -0
- package/src/stories/Enrollment/Admin/CreateForm/CreateForm.stories.jsx +8 -0
- package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.jsx +98 -0
- package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.jsx +36 -0
- package/src/stories/Enrollment/Admin/ViewForms/ViewForms.jsx +40 -0
- package/src/stories/Enrollment/Admin/ViewForms/ViewForms.stories.jsx +66 -0
- package/src/stories/Enrollment/Guest/FillForm/FillForm.jsx +61 -0
- package/src/stories/Enrollment/Guest/FillForm/FillForm.stories.jsx +27 -0
- package/src/stories/Events/CreateEvent/CreateEvent.jsx +96 -0
- package/src/stories/Events/CreateEvent/CreateEvent.stories.jsx +19 -0
- package/src/stories/Events/Event/Event.jsx +113 -0
- package/src/stories/Events/Event/Event.stories.jsx +21 -0
- package/src/stories/Events/EventsList/EventsList.jsx +117 -0
- package/src/stories/Events/EventsList/EventsList.stories.jsx +25 -0
- package/src/stories/Forms/AddPhoto/AddPhoto.jsx +85 -0
- package/src/stories/Forms/AddPhoto/AddPhoto.stories.jsx +37 -0
- package/src/stories/Forms/AddSong/AddSong.jsx +86 -0
- package/src/stories/Forms/AddSong/AddSong.stories.jsx +26 -0
- package/src/stories/Forms/AddVideo/AddVideo.jsx +78 -0
- package/src/stories/Forms/AddVideo/AddVideo.stories.jsx +20 -0
- package/src/stories/Forms/Create-Profile/CreateProfile.jsx +278 -0
- package/src/stories/Forms/Create-Profile/CreateProfile.stories.jsx +36 -0
- package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.jsx +63 -0
- package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.jsx +27 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.jsx +58 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.jsx +26 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.jsx +21 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.jsx +18 -0
- package/src/stories/Forms/CreateAlbum/CreateAlbum.jsx +82 -0
- package/src/stories/Forms/CreateAlbum/CreateAlbum.stories.jsx +37 -0
- package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.jsx +63 -0
- package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.jsx +44 -0
- package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.jsx +87 -0
- package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.jsx +38 -0
- package/src/stories/Forms/CreateProfile/CreateProfile.jsx +556 -0
- package/src/stories/Forms/CreateProfile/CreateProfile.stories.js +10 -0
- package/src/stories/Forms/CreateProfile-3/CreateProfile.jsx +488 -0
- package/src/stories/Forms/CreateProfile-3/CreateProfile.stories.js +10 -0
- package/src/stories/Forms/CreateUser/CreateUser.jsx +13 -0
- package/src/stories/Forms/CreateUser/CreateUser.stories.js +10 -0
- package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.jsx +78 -0
- package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.jsx +23 -0
- package/src/stories/Forms/Form/Form.jsx +34 -0
- package/src/stories/Forms/Form/Form.stories.js +10 -0
- package/src/stories/Forms/NewProfile/NewProfile.jsx +464 -0
- package/src/stories/Forms/NewProfile/NewProfile.stories.jsx +10 -0
- package/src/stories/Forms/NewProfile/presets.json +9 -0
- package/src/stories/Layout/Body/Body.jsx +24 -0
- package/src/stories/Layout/Body/Body.stories.js +26 -0
- package/src/stories/Layout/Center/Center.jsx +16 -0
- package/src/stories/Layout/Center/Center.stories.js +14 -0
- package/src/stories/Layout/Head/Head.jsx +15 -0
- package/src/stories/Layout/Head/Head.stories.js +10 -0
- package/src/stories/Layout/Left/Left.jsx +21 -0
- package/src/stories/Layout/Left/Left.stories.js +14 -0
- package/src/stories/Layout/Right/Right.jsx +17 -0
- package/src/stories/Layout/Right/Right.stories.js +14 -0
- package/src/stories/Library/CreateFolder/CreateFolder.jsx +78 -0
- package/src/stories/Library/CreateFolder/CreateFolder.stories.jsx +32 -0
- package/src/stories/Library/Folders/Folders.jsx +117 -0
- package/src/stories/Library/Folders/Folders.stories.jsx +34 -0
- package/src/stories/Library/Notes/Notes.jsx +117 -0
- package/src/stories/Library/Notes/Notes.stories.jsx +24 -0
- package/src/stories/Library/ViewNote/ViewNote.jsx +25 -0
- package/src/stories/Library/ViewNote/ViewNote.stories.jsx +16 -0
- package/src/stories/Misc/Thumbnail/Thumbnail.jsx +79 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +111 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +134 -0
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.stories.jsx +57 -0
- package/src/stories/Navbar/Navbar.jsx +350 -0
- package/src/stories/Navbar/Navbar.stories.js +25 -0
- package/src/stories/Pages/Blank/Blank.jsx +32 -0
- package/src/stories/Pages/Blank/Blank.stories.js +10 -0
- package/src/stories/Pages/Centered/Centered.jsx +31 -0
- package/src/stories/Pages/Centered/Centered.stories.js +14 -0
- package/src/stories/Pages/Chat/Chat.jsx +82 -0
- package/src/stories/Pages/Chat/Chat.stories.jsx +53 -0
- package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.jsx +102 -0
- package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.jsx +8 -0
- package/src/stories/Pages/Enrollment/FillForm/FillForm.jsx +96 -0
- package/src/stories/Pages/Enrollment/FillForm/FillForm.stories.jsx +8 -0
- package/src/stories/Pages/Enrollment/Forms/Forms.jsx +129 -0
- package/src/stories/Pages/Enrollment/Forms/Forms.stories.jsx +8 -0
- package/src/stories/Pages/Events/Event/Event.jsx +88 -0
- package/src/stories/Pages/Events/Event/Event.stories.jsx +8 -0
- package/src/stories/Pages/Events/Events/Events.jsx +110 -0
- package/src/stories/Pages/Events/Events/Events.stories.jsx +8 -0
- package/src/stories/Pages/Library/Folders/Library.jsx +118 -0
- package/src/stories/Pages/Library/Folders/Library.stories.jsx +8 -0
- package/src/stories/Pages/Library/Notes/Notes.jsx +109 -0
- package/src/stories/Pages/Library/Notes/Notes.stories.jsx +8 -0
- package/src/stories/Pages/Music/MusicAlbum/Music.jsx +159 -0
- package/src/stories/Pages/Music/MusicAlbum/Music.stories.jsx +8 -0
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +138 -0
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.jsx +8 -0
- package/src/stories/Pages/Photos/Album/Album.jsx +120 -0
- package/src/stories/Pages/Photos/Album/Album.stories.jsx +8 -0
- package/src/stories/Pages/Photos/Albums/Albums.jsx +144 -0
- package/src/stories/Pages/Photos/Albums/Albums.stories.jsx +8 -0
- package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.jsx +91 -0
- package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.jsx +8 -0
- package/src/stories/Pages/Video/VideoAlbum/Video.jsx +166 -0
- package/src/stories/Pages/Video/VideoAlbum/Video.stories.jsx +8 -0
- package/src/stories/Pages/ViewWorld/ViewWorld.jsx +193 -0
- package/src/stories/Pages/ViewWorld/ViewWorld.stories.js +270 -0
- package/src/stories/Pages/ViewWorld/constatnts.js +158 -0
- package/src/stories/Pages/ViewWorld/styles.json +18 -0
- package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.jsx +17 -0
- package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.jsx +20 -0
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +250 -0
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +146 -0
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.stories.jsx +59 -0
- package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.jsx +74 -0
- package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.jsx +22 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +94 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.jsx +21 -0
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +79 -0
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.jsx +21 -0
- package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.jsx +75 -0
- package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.jsx +24 -0
- package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.jsx +61 -0
- package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.jsx +22 -0
- package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.jsx +67 -0
- package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.jsx +25 -0
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +117 -0
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.jsx +9 -0
- package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.jsx +126 -0
- package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.jsx +23 -0
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +113 -0
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.jsx +29 -0
- package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.jsx +86 -0
- package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.jsx +14 -0
- package/src/stories/Reusable Components/Cards/Card.jsx +119 -0
- package/src/stories/Reusable Components/Cards/Card.stories.jsx +118 -0
- package/src/stories/Reusable Components/Cards/globalCardStyles.js +54 -0
- package/src/stories/Reusable Components/Controls/Controls.jsx +137 -0
- package/src/stories/Reusable Components/Controls/Controls.stories.jsx +24 -0
- package/src/stories/Reusable Components/Gallery/Gallery.jsx +110 -0
- package/src/stories/Reusable Components/Gallery/Gallery.stories.jsx +43 -0
- package/src/stories/Reusable Components/Lists/Cards/ListCard-1.jsx +0 -0
- package/src/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +0 -0
- package/src/stories/Reusable Components/Lists/List.jsx +0 -0
- package/src/stories/Reusable Components/Lists/List.stories.js +0 -0
- package/src/stories/Reusable Components/Mention/Mention.jsx +69 -0
- package/src/stories/Reusable Components/Mention/Mention.stories.jsx +55 -0
- package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +76 -0
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +121 -0
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.stories.jsx +167 -0
- package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.jsx +76 -0
- package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.jsx +22 -0
- package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +103 -0
- package/src/stories/Reusable Components/ReusableList/ReusableList.stories.jsx +70 -0
- package/src/stories/Reusable Components/SearchCard/SearchCard.jsx +89 -0
- package/src/stories/Reusable Components/SearchCard/SearchCard.stories.js +10 -0
- package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.jsx +48 -0
- package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.jsx +78 -0
- package/src/stories/Reusable Components/Spinner/Spinner.jsx +82 -0
- package/src/stories/Reusable Components/Spinner/Spinner.stories.jsx +8 -0
- package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.jsx +59 -0
- package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.jsx +61 -0
- package/src/stories/Reusable Components/commonStyles.js +47 -0
- package/src/stories/Reusable Components/fakeData.js +95 -0
- package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.jsx +102 -0
- package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +10 -0
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +130 -0
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.jsx +59 -0
- package/src/stories/VideoAlbum/Comments/Comments.jsx +58 -0
- package/src/stories/VideoAlbum/Comments/Comments.stories.jsx +18 -0
- package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.jsx +214 -0
- package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.jsx +82 -0
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +101 -0
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.stories.jsx +23 -0
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +131 -0
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.jsx +57 -0
- package/src/stories/Widgets/LogoWidget/LogoWidget.jsx +21 -0
- package/src/stories/Widgets/LogoWidget/LogoWidget.stories.js +12 -0
- package/src/stories/Widgets/MusicPlayer/MusicPlayer.jsx +64 -0
- package/src/stories/Widgets/MusicPlayer/MusicPlayer.stories.jsx +23 -0
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +107 -0
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.jsx +33 -0
- package/src/stories/Widgets/SpacesList/SpacesList.jsx +16 -0
- package/src/stories/Widgets/SpacesList/SpacesList.stories.jsx +27 -0
- package/src/stories/Widgets/SpacesList/SpacesListItem.jsx +75 -0
- package/src/stories/Widgets/SpacesList/SpacesListItem.stories.jsx +10 -0
- package/src/stories/assets/camera.svg +1 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/images/album1.jpg +0 -0
- package/src/stories/assets/images/album2.jpg +0 -0
- package/src/stories/assets/images/album3.jpg +0 -0
- package/src/stories/assets/images/album4.jpg +0 -0
- package/src/stories/assets/images/album5.jpg +0 -0
- package/src/stories/assets/images/album6.jpg +0 -0
- package/src/stories/assets/images/art.jpg +0 -0
- package/src/stories/assets/images/dance.jpg +0 -0
- package/src/stories/assets/images/football.jpg +0 -0
- package/src/stories/assets/images/music.jpg +0 -0
- package/src/stories/assets/images/music1.jpg +0 -0
- package/src/stories/assets/images/music2.jpg +0 -0
- package/src/stories/assets/images/music3.jpg +0 -0
- package/src/stories/assets/images/music4.jpg +0 -0
- package/src/stories/assets/images/music5.jpg +0 -0
- package/src/stories/assets/images/music6.jpg +0 -0
- package/src/stories/assets/images/reset.png +0 -0
- package/src/stories/assets/images/robotics.jpg +0 -0
- package/src/stories/assets/images/tennis.jpg +0 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/reset.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/helpers/util.js +66 -0
@@ -0,0 +1,193 @@
|
|
1
|
+
import React, { useEffect, useState, Suspense, lazy } from "react";
|
2
|
+
|
3
|
+
import axios from 'axios';
|
4
|
+
|
5
|
+
import Head from '../../Layout/Head/Head';
|
6
|
+
import Body from '../../Layout/Body/Body';
|
7
|
+
import Left from '../../Layout/Left/Left';
|
8
|
+
import Center from '../../Layout/Center/Center';
|
9
|
+
import Right from '../../Layout/Right/Right';
|
10
|
+
|
11
|
+
import Navbar from '../../Navbar/Navbar';
|
12
|
+
|
13
|
+
import BaseMaterial from '../../Containers/BaseMaterial';
|
14
|
+
import SpaceContainer from "../../Reusable Components/SpaceContainer/SpaceContainer";
|
15
|
+
import WidgetContainer from "../../Reusable Components/WidgetContainer/WidgetContainer";
|
16
|
+
// import EditorComponent from "../../Common Inputs/EditorComponent/EditorComponent";
|
17
|
+
import MusicPlayer from "../../Widgets/MusicPlayer/MusicPlayer";
|
18
|
+
import Spinner from "../../Reusable Components/Spinner/Spinner";
|
19
|
+
|
20
|
+
import worldStyles from './styles.json';
|
21
|
+
import Chat from '../../Agora/Chat/Chat';
|
22
|
+
|
23
|
+
// API CODE: let world = await API.GET('/world/:world_id')
|
24
|
+
|
25
|
+
import { cardControls } from '../../Reusable Components/fakeData';
|
26
|
+
import { SPACES } from './constatnts';
|
27
|
+
import Room from '../../Agora/Room/Room';
|
28
|
+
|
29
|
+
import img1 from '../../assets/images/music1.jpg';
|
30
|
+
import img2 from '../../assets/images/music2.jpg';
|
31
|
+
import img3 from '../../assets/images/music3.jpg';
|
32
|
+
import img4 from '../../assets/images/music4.jpg';
|
33
|
+
import img5 from '../../assets/images/music5.jpg';
|
34
|
+
import img6 from '../../assets/images/music6.jpg';
|
35
|
+
|
36
|
+
const EditorComponent = lazy(() => import('../../Common Inputs/EditorComponent/EditorComponent'));
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
const ViewWorld = (props) => {
|
41
|
+
const [isLoading, setIsLoading] = useState(false);
|
42
|
+
const [data, setData] = useState({});
|
43
|
+
const [musicPlayer, setMusicPlayer] = useState();
|
44
|
+
const [currentSong, setCurrentSong] = useState(0)
|
45
|
+
const [album, setAlbum] = useState([
|
46
|
+
{ index: 0, cover: img4, musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Plans We Made', description: 'Son Lux', time: '5:20' },
|
47
|
+
{ index: 2, cover: img6, musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Still Loving You', description: 'Scorpions', time: '4:20' },
|
48
|
+
{ index: 1, cover: img5, musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Night', description: 'Frank Ocean', time: '5:20' },
|
49
|
+
{ index: 3, cover: img1, musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Somebody Else', description: '1975', time: '5:20' },
|
50
|
+
{ index: 4, cover: img3, musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'Enter Sandman', description: 'Metallica', time: '5:20' },
|
51
|
+
{ index: 5, cover: img2, musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', title: 'November Rain', description: "Guns N' Roses", time: '5:20' },
|
52
|
+
])
|
53
|
+
|
54
|
+
const nextSong = () => {
|
55
|
+
if (currentSong < album.length - 1) {
|
56
|
+
setCurrentSong(currentSong + 1)
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
const prevSong = () => {
|
61
|
+
if (currentSong !== 0) {
|
62
|
+
setCurrentSong(currentSong - 1)
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
const onPlaySong = (index) => {
|
67
|
+
setCurrentSong(index)
|
68
|
+
}
|
69
|
+
|
70
|
+
useEffect(() => {
|
71
|
+
fetchMusic();
|
72
|
+
fetchEditorData();
|
73
|
+
}, []);
|
74
|
+
const fetchEditorData = () => {
|
75
|
+
setIsLoading(true);
|
76
|
+
axios
|
77
|
+
.get('https://jsonplaceholder.typicode.com/editor')
|
78
|
+
.then((res) => {
|
79
|
+
console.log(res);
|
80
|
+
setData(res.data);
|
81
|
+
setIsLoading(false);
|
82
|
+
})
|
83
|
+
.catch((err) => {
|
84
|
+
setIsLoading(false);
|
85
|
+
console.log(err);
|
86
|
+
});
|
87
|
+
};
|
88
|
+
|
89
|
+
const fetchMusic = () => {
|
90
|
+
axios
|
91
|
+
.get('https://jsonplaceholder.typicode.com/music')
|
92
|
+
.then((res) => {
|
93
|
+
setMusicPlayer(res.data);
|
94
|
+
})
|
95
|
+
.catch((err) => {
|
96
|
+
console.log(err);
|
97
|
+
});
|
98
|
+
};
|
99
|
+
|
100
|
+
return (
|
101
|
+
<BaseMaterial {...worldStyles.containerStyle} {...props}>
|
102
|
+
<Navbar />
|
103
|
+
<Body {...worldStyles.bodyStyle}>
|
104
|
+
<Left>
|
105
|
+
<WidgetContainer
|
106
|
+
widgetType='logo'
|
107
|
+
widgetProps={{
|
108
|
+
imgUrl: props.imgUrl,
|
109
|
+
}}
|
110
|
+
headerStyles={{ ...data.listStyles }}
|
111
|
+
/>
|
112
|
+
{data.sectionsStyles && (
|
113
|
+
<WidgetContainer
|
114
|
+
widgetType='list'
|
115
|
+
widgetProps={{
|
116
|
+
listTitle: 'Your Spaces',
|
117
|
+
listControls: cardControls,
|
118
|
+
type: 'sectioned',
|
119
|
+
data: SPACES,
|
120
|
+
cardStyle: 'card-style-3',
|
121
|
+
cardControls: cardControls,
|
122
|
+
sectionHeaderStyles: { ...data.sectionsStyles.sectionHeader },
|
123
|
+
customCardStyles: { ...data.sectionsStyles.card },
|
124
|
+
...data.listStyles,
|
125
|
+
}}
|
126
|
+
/>
|
127
|
+
)}
|
128
|
+
</Left>
|
129
|
+
<Center>
|
130
|
+
{
|
131
|
+
isLoading ?
|
132
|
+
<Spinner color="#FCB4BE" />
|
133
|
+
:
|
134
|
+
<SpaceContainer
|
135
|
+
title="Space Title"
|
136
|
+
discription="Lorem ipsum dolor sit amet consectetur."
|
137
|
+
controls={cardControls}
|
138
|
+
headerStyles={{
|
139
|
+
headerBackground: "#FE4454",
|
140
|
+
controlsStyles: {
|
141
|
+
iconsGap: 3,
|
142
|
+
iconColor: 'white'
|
143
|
+
}
|
144
|
+
}}
|
145
|
+
>
|
146
|
+
<Suspense fallback={<Spinner color="#FCB4BE" />}>
|
147
|
+
<EditorComponent
|
148
|
+
padding="10"
|
149
|
+
data={data.editorData}
|
150
|
+
{...data.styles}
|
151
|
+
{...props.editor} />
|
152
|
+
</Suspense>
|
153
|
+
|
154
|
+
</SpaceContainer>
|
155
|
+
|
156
|
+
}
|
157
|
+
|
158
|
+
</Center>
|
159
|
+
<Right>
|
160
|
+
{musicPlayer && (
|
161
|
+
<WidgetContainer
|
162
|
+
widgetType='music player'
|
163
|
+
controlsStyles={{
|
164
|
+
iconColor: 'black',
|
165
|
+
dropdownBackground: 'black',
|
166
|
+
dropdownFontColor: 'white',
|
167
|
+
}}
|
168
|
+
widgetProps={{
|
169
|
+
playlist: album,
|
170
|
+
nextSong: nextSong,
|
171
|
+
prevSong: prevSong,
|
172
|
+
currentSong: currentSong,
|
173
|
+
borderRadius: '10',
|
174
|
+
primaryColor: 'black'
|
175
|
+
}}
|
176
|
+
headerStyles={{
|
177
|
+
controlsStyles: {
|
178
|
+
iconColor: 'red',
|
179
|
+
},
|
180
|
+
}}
|
181
|
+
/>
|
182
|
+
|
183
|
+
)}
|
184
|
+
</Right>
|
185
|
+
</Body>
|
186
|
+
{/* {musicPlayer && (
|
187
|
+
<MusicPlayer audioLists={musicPlayer.songs} {...musicPlayer.styles} />
|
188
|
+
)} */}
|
189
|
+
</BaseMaterial>
|
190
|
+
);
|
191
|
+
};
|
192
|
+
|
193
|
+
export default ViewWorld;
|
@@ -0,0 +1,270 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import withMock from 'storybook-addon-mock';
|
3
|
+
|
4
|
+
import ViewWorld from './ViewWorld';
|
5
|
+
// Temporary constatns
|
6
|
+
import {
|
7
|
+
CARGO_DATA,
|
8
|
+
CARGO_SONGS,
|
9
|
+
MUSIC_DATA,
|
10
|
+
MUSIC_SONGS,
|
11
|
+
GAMING_DATA,
|
12
|
+
GAMING_SONGS,
|
13
|
+
MOVIES_DATA,
|
14
|
+
MOVIES_SONGS
|
15
|
+
} from "./constatnts";
|
16
|
+
|
17
|
+
export default {
|
18
|
+
title: 'Pages/world/world_id',
|
19
|
+
component: ViewWorld,
|
20
|
+
decorators: [withMock]
|
21
|
+
};
|
22
|
+
|
23
|
+
const Template = (args) => <ViewWorld {...args} />;
|
24
|
+
// Cargo Sprint data
|
25
|
+
export const Public = Template.bind({});
|
26
|
+
Public.parameters = {
|
27
|
+
mockData: [
|
28
|
+
{
|
29
|
+
url: 'https://jsonplaceholder.typicode.com/editor',
|
30
|
+
method: 'GET',
|
31
|
+
status: 200,
|
32
|
+
response: {
|
33
|
+
editorData: CARGO_DATA,
|
34
|
+
styles: {
|
35
|
+
backgroundColor: '#fff',
|
36
|
+
},
|
37
|
+
listStyles: {
|
38
|
+
headerTitleColor: '#F6891F',
|
39
|
+
},
|
40
|
+
sectionsStyles: {
|
41
|
+
sectionHeader: {
|
42
|
+
cardBorderSize: 2,
|
43
|
+
cardPadding: 2,
|
44
|
+
cardBackgroundColor: '#fff',
|
45
|
+
cardBorderColor: '#F6891F',
|
46
|
+
},
|
47
|
+
card: {
|
48
|
+
cardPadding: 6,
|
49
|
+
cardTitleFontSize: 15,
|
50
|
+
cardBackgroundColor: 'black',
|
51
|
+
cardTitleColor: 'white',
|
52
|
+
onHoverBackgroundColor: '#F6891F',
|
53
|
+
controlsStyles: {
|
54
|
+
showOnHover: true,
|
55
|
+
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
},
|
60
|
+
{
|
61
|
+
url: 'https://jsonplaceholder.typicode.com/music',
|
62
|
+
method: 'GET',
|
63
|
+
status: 200,
|
64
|
+
response: {
|
65
|
+
songs: CARGO_SONGS,
|
66
|
+
styles: {
|
67
|
+
backgroundColor: '#fff',
|
68
|
+
primaryColor: 'black'
|
69
|
+
}
|
70
|
+
}
|
71
|
+
},
|
72
|
+
],
|
73
|
+
};
|
74
|
+
Public.args= {
|
75
|
+
imgUrl: 'https://cargosprint.com/assets/img/cs-logos/Logo-CargoSprint_horizontal-color.png'
|
76
|
+
}
|
77
|
+
// Music Data
|
78
|
+
export const Music = Template.bind({});
|
79
|
+
Music.parameters = {
|
80
|
+
mockData: [
|
81
|
+
{
|
82
|
+
url: 'https://jsonplaceholder.typicode.com/editor',
|
83
|
+
method: 'GET',
|
84
|
+
status: 200,
|
85
|
+
response: {
|
86
|
+
editorData: MUSIC_DATA,
|
87
|
+
styles: {
|
88
|
+
backgroundColor: 'black',
|
89
|
+
fontColor: '#fff'
|
90
|
+
},
|
91
|
+
listStyles: {
|
92
|
+
headerTitleColor: '#E445AC',
|
93
|
+
|
94
|
+
},
|
95
|
+
sectionsStyles: {
|
96
|
+
sectionHeader: {
|
97
|
+
cardBorderSize: 2,
|
98
|
+
cardPadding: 2,
|
99
|
+
cardBackgroundColor: 'black',
|
100
|
+
cardBorderColor: '#E445AC',
|
101
|
+
cardTitleColor: 'white'
|
102
|
+
},
|
103
|
+
card: {
|
104
|
+
cardPadding: 6,
|
105
|
+
cardTitleFontSize: 15,
|
106
|
+
cardBackgroundColor: '#fff',
|
107
|
+
onHoverBackgroundColor: '#E445AC',
|
108
|
+
cardTitleColor: 'black',
|
109
|
+
controlsStyles: {
|
110
|
+
showOnHover: true,
|
111
|
+
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
},
|
117
|
+
{
|
118
|
+
url: 'https://jsonplaceholder.typicode.com/music',
|
119
|
+
method: 'GET',
|
120
|
+
status: 200,
|
121
|
+
response: {
|
122
|
+
songs: MUSIC_SONGS,
|
123
|
+
styles: {
|
124
|
+
backgroundColor: '#e445ac',
|
125
|
+
primaryColor: '#a9afac',
|
126
|
+
borderSize: 3,
|
127
|
+
borderColor: 'white',
|
128
|
+
}
|
129
|
+
}
|
130
|
+
},
|
131
|
+
],
|
132
|
+
};
|
133
|
+
Music.args = {
|
134
|
+
backgroundColor: 'black',
|
135
|
+
color: '#FCB4BE',
|
136
|
+
imgUrl: 'https://i.imgur.com/6vISA8U.png',
|
137
|
+
hoverColor: 'black'
|
138
|
+
}
|
139
|
+
// Gaming Data
|
140
|
+
export const Gaming = Template.bind({});
|
141
|
+
Gaming.parameters = {
|
142
|
+
mockData: [
|
143
|
+
{
|
144
|
+
url: 'https://jsonplaceholder.typicode.com/editor',
|
145
|
+
method: 'GET',
|
146
|
+
status: 200,
|
147
|
+
response: {
|
148
|
+
editorData: GAMING_DATA,
|
149
|
+
styles: {
|
150
|
+
backgroundColor: 'black',
|
151
|
+
fontColor: '#fff'
|
152
|
+
},
|
153
|
+
listStyles: {
|
154
|
+
headerTitleColor: '#FE4554',
|
155
|
+
|
156
|
+
},
|
157
|
+
sectionsStyles: {
|
158
|
+
sectionHeader: {
|
159
|
+
cardBorderSize: 2,
|
160
|
+
cardPadding: 2,
|
161
|
+
cardBackgroundColor: '#fff',
|
162
|
+
cardBorderColor: '#FE4554',
|
163
|
+
cardTitleColor: 'black'
|
164
|
+
},
|
165
|
+
card: {
|
166
|
+
cardPadding: 6,
|
167
|
+
cardTitleFontSize: 15,
|
168
|
+
cardBackgroundColor: '#131F2A',
|
169
|
+
cardTitleColor: 'white',
|
170
|
+
onHoverBackgroundColor: '#FE4554',
|
171
|
+
cardTitleColor: 'white',
|
172
|
+
controlsStyles: {
|
173
|
+
showOnHover: true,
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
},
|
179
|
+
{
|
180
|
+
url: 'https://jsonplaceholder.typicode.com/music',
|
181
|
+
method: 'GET',
|
182
|
+
status: 200,
|
183
|
+
response: {
|
184
|
+
songs: GAMING_SONGS,
|
185
|
+
styles: {
|
186
|
+
backgroundColor: '#131F2A',
|
187
|
+
primaryColor: '#FE4554',
|
188
|
+
borderSize: 2,
|
189
|
+
borderColor: '#FE4554',
|
190
|
+
borderRadius: 15
|
191
|
+
}
|
192
|
+
}
|
193
|
+
},
|
194
|
+
],
|
195
|
+
};
|
196
|
+
Gaming.args = {
|
197
|
+
backgroundColor: '#131F2A',
|
198
|
+
color: 'white',
|
199
|
+
imgUrl: 'https://i.imgur.com/sye5txB.png',
|
200
|
+
hoverColor: 'black',
|
201
|
+
editor: {
|
202
|
+
backgroundImage: 'https://img.wallpapersafari.com/tablet/1536/2048/36/65/dgOZ6K.jpg'
|
203
|
+
}
|
204
|
+
}
|
205
|
+
// Movies Data
|
206
|
+
export const Movies = Template.bind({});
|
207
|
+
Movies.parameters = {
|
208
|
+
mockData: [
|
209
|
+
{
|
210
|
+
url: 'https://jsonplaceholder.typicode.com/editor',
|
211
|
+
method: 'GET',
|
212
|
+
status: 200,
|
213
|
+
response: {
|
214
|
+
editorData: MOVIES_DATA,
|
215
|
+
styles: {
|
216
|
+
backgroundColor: 'black',
|
217
|
+
fontColor: '#fff'
|
218
|
+
},
|
219
|
+
listStyles: {
|
220
|
+
headerTitleColor: '#FE4554',
|
221
|
+
|
222
|
+
},
|
223
|
+
sectionsStyles: {
|
224
|
+
sectionHeader: {
|
225
|
+
cardBorderSize: 2,
|
226
|
+
cardPadding: 2,
|
227
|
+
cardBackgroundColor: 'transparent',
|
228
|
+
cardBorderColor: '#FE4554',
|
229
|
+
cardTitleColor: 'white'
|
230
|
+
},
|
231
|
+
card: {
|
232
|
+
cardPadding: 6,
|
233
|
+
cardTitleFontSize: 15,
|
234
|
+
cardBackgroundColor: 'black',
|
235
|
+
onHoverBackgroundColor: '#FE4554',
|
236
|
+
cardTitleColor: 'gray',
|
237
|
+
controlsStyles: {
|
238
|
+
showOnHover: true,
|
239
|
+
|
240
|
+
}
|
241
|
+
}
|
242
|
+
}
|
243
|
+
}
|
244
|
+
},
|
245
|
+
{
|
246
|
+
url: 'https://jsonplaceholder.typicode.com/music',
|
247
|
+
method: 'GET',
|
248
|
+
status: 200,
|
249
|
+
response: {
|
250
|
+
songs: MOVIES_SONGS,
|
251
|
+
styles: {
|
252
|
+
backgroundColor: 'black',
|
253
|
+
primaryColor: 'gray',
|
254
|
+
borderSize: 2,
|
255
|
+
borderColor: 'gray',
|
256
|
+
borderRadius: 15
|
257
|
+
}
|
258
|
+
}
|
259
|
+
},
|
260
|
+
],
|
261
|
+
};
|
262
|
+
Movies.args = {
|
263
|
+
backgroundColor: 'black',
|
264
|
+
color: 'gray',
|
265
|
+
imgUrl: 'https://i.imgur.com/DfxFp56.png',
|
266
|
+
hoverColor: 'black',
|
267
|
+
editor: {
|
268
|
+
backgroundImage: 'https://thegreatfredini.files.wordpress.com/2015/10/img_0687.jpg'
|
269
|
+
}
|
270
|
+
}
|
@@ -0,0 +1,158 @@
|
|
1
|
+
export const SPACES = [
|
2
|
+
{
|
3
|
+
title: 'Main List',
|
4
|
+
data: [
|
5
|
+
{title: 'Cargo Sprint'},
|
6
|
+
{title: 'Movies'}
|
7
|
+
]
|
8
|
+
},
|
9
|
+
{
|
10
|
+
title: 'Entertainment List',
|
11
|
+
data: [
|
12
|
+
{title: 'Gaming'},
|
13
|
+
{title: 'Music'}
|
14
|
+
]
|
15
|
+
}
|
16
|
+
]
|
17
|
+
|
18
|
+
|
19
|
+
export const CARGO_DATA = {
|
20
|
+
blocks: [
|
21
|
+
{
|
22
|
+
type: "header",
|
23
|
+
data: {
|
24
|
+
text: "How To Handle Client Feedback at CargoSprint",
|
25
|
+
level: 1
|
26
|
+
}
|
27
|
+
},
|
28
|
+
{
|
29
|
+
type: "paragraph",
|
30
|
+
data: {
|
31
|
+
text:
|
32
|
+
"Hey. Meet the Editor. On this page you can see it in action — try to edit this text."
|
33
|
+
}
|
34
|
+
},
|
35
|
+
{
|
36
|
+
type: 'image',
|
37
|
+
"data" : {
|
38
|
+
"file": {
|
39
|
+
"url" : "https://cargosprint.com/assets/img/cs-home/isla-spass.svg"
|
40
|
+
},
|
41
|
+
"withBorder" : false,
|
42
|
+
"withBackground" : false,
|
43
|
+
"stretched" : false,
|
44
|
+
"caption": "CargoSprint logistics process"
|
45
|
+
}
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"type" : "paragraph",
|
49
|
+
"data" : {
|
50
|
+
"text" : "Create a directory for your module, enter it and run <mark class=\"cdx-marker\">npm init</mark> command."
|
51
|
+
}
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"type" : "table",
|
55
|
+
"data" : {
|
56
|
+
"withHeadings": true,
|
57
|
+
"content" : [ [ "Todo", "Doing", "Done" ], [ "CargoSprint Staff Interface", "", "" ], [ "", "DHL Project", "" ], ["", "", "Design Requirements"] ]
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
]
|
62
|
+
}
|
63
|
+
|
64
|
+
export const CARGO_SONGS = [
|
65
|
+
{ name: 'Requiem For A Dream', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', cover: 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8NHx8fGVufDB8fHx8&w=1000&q=80' },
|
66
|
+
{ name: 'Mushroomtopia', musicSrc: 'https://www.pacdv.com/sounds/free-music/gentle-thoughts-1.mp3', cover: 'https://c4.wallpaperflare.com/wallpaper/729/961/256/black-minimalistic-music-piano-black-background-1680x1050-entertainment-music-hd-art-wallpaper-preview.jpg' },
|
67
|
+
{ name: 'Glow In The Dark', musicSrc: 'https://www.pacdv.com/sounds/free-music/glow-in-the-dark.mp3', cover: 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8NHx8fGVufDB8fHx8&w=1000&q=80' },
|
68
|
+
]
|
69
|
+
|
70
|
+
|
71
|
+
export const MUSIC_DATA = {
|
72
|
+
blocks: [
|
73
|
+
{
|
74
|
+
type: "header",
|
75
|
+
data: {
|
76
|
+
text: "Your favorite songs in one place with your friends Share The Music",
|
77
|
+
level: 2
|
78
|
+
}
|
79
|
+
},
|
80
|
+
{
|
81
|
+
type: "paragraph",
|
82
|
+
data: {
|
83
|
+
text:
|
84
|
+
"Find and listen to all the licensed songs you need and share the joy in REAL TIME while chatting with your friends. You don't need a subscription anymore."
|
85
|
+
}
|
86
|
+
},
|
87
|
+
{
|
88
|
+
type: 'image',
|
89
|
+
"data" : {
|
90
|
+
"file": {
|
91
|
+
"url" : "https://i.pinimg.com/originals/1b/12/f8/1b12f8f1f3ce3da4f68a176364335370.jpg"
|
92
|
+
},
|
93
|
+
"withBorder" : false,
|
94
|
+
"withBackground" : false,
|
95
|
+
"stretched" : false,
|
96
|
+
"caption": "1975 Concert"
|
97
|
+
}
|
98
|
+
}
|
99
|
+
]
|
100
|
+
}
|
101
|
+
|
102
|
+
export const MUSIC_SONGS = [
|
103
|
+
{ title: 'Requiem For A Dream', artist: 'frank ra', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', cover: 'https://images.squarespace-cdn.com/content/v1/59c466b7cd0f682a310bac1e/1521413279928-QS15G3LTKI5JPASSHC5E/Website007.jpg?format=1000w' },
|
104
|
+
{ title: 'Mushroomtopia', musicSrc: 'https://www.pacdv.com/sounds/free-music/gentle-thoughts-1.mp3', cover: 'https://c4.wallpaperflare.com/wallpaper/729/961/256/black-minimalistic-music-piano-black-background-1680x1050-entertainment-music-hd-art-wallpaper-preview.jpg' },
|
105
|
+
{ title: 'Glow In The Dark', musicSrc: 'https://www.pacdv.com/sounds/free-music/glow-in-the-dark.mp3', cover: 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8NHx8fGVufDB8fHx8&w=1000&q=80' },
|
106
|
+
]
|
107
|
+
|
108
|
+
export const GAMING_DATA = {
|
109
|
+
blocks: [
|
110
|
+
{
|
111
|
+
type: "header",
|
112
|
+
data: {
|
113
|
+
text: "Enjoy the first person reality experience.",
|
114
|
+
level: 2
|
115
|
+
}
|
116
|
+
},
|
117
|
+
{
|
118
|
+
type: "paragraph",
|
119
|
+
data: {
|
120
|
+
text:
|
121
|
+
"Valorant is a first person shooting game, in a 5 vs 5. make sure to bring your friends."
|
122
|
+
}
|
123
|
+
}
|
124
|
+
]
|
125
|
+
}
|
126
|
+
|
127
|
+
export const GAMING_SONGS = [
|
128
|
+
{ name: 'Requiem For A Dream', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', cover: 'https://arabhardware.net/wp-content/uploads/2020/03/valorant-2020-5k-dq.jpg' },
|
129
|
+
{ name: 'Mushroomtopia', musicSrc: 'https://www.pacdv.com/sounds/free-music/gentle-thoughts-1.mp3', cover: 'https://c4.wallpaperflare.com/wallpaper/729/961/256/black-minimalistic-music-piano-black-background-1680x1050-entertainment-music-hd-art-wallpaper-preview.jpg' },
|
130
|
+
{ name: 'Glow In The Dark', musicSrc: 'https://www.pacdv.com/sounds/free-music/glow-in-the-dark.mp3', cover: 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8NHx8fGVufDB8fHx8&w=1000&q=80' },
|
131
|
+
]
|
132
|
+
|
133
|
+
export const MOVIES_DATA = {
|
134
|
+
blocks: [
|
135
|
+
{
|
136
|
+
type: "header",
|
137
|
+
data: {
|
138
|
+
text: "All The Movies You Want - In One Place",
|
139
|
+
level: 2
|
140
|
+
}
|
141
|
+
},
|
142
|
+
{
|
143
|
+
type: "paragraph",
|
144
|
+
data: {
|
145
|
+
text:
|
146
|
+
"Watch with your friends in real-time in our service"
|
147
|
+
}
|
148
|
+
}
|
149
|
+
]
|
150
|
+
}
|
151
|
+
|
152
|
+
export const MOVIES_SONGS = [
|
153
|
+
{ name: 'Shutter island', musicSrc: 'https://www.pacdv.com/sounds/free-music/kickstarter.mp3', cover: 'https://wallpaperaccess.com/full/2058367.jpg' },
|
154
|
+
{ name: 'Mushroomtopia', musicSrc: 'https://www.pacdv.com/sounds/free-music/gentle-thoughts-1.mp3', cover: 'https://c4.wallpaperflare.com/wallpaper/729/961/256/black-minimalistic-music-piano-black-background-1680x1050-entertainment-music-hd-art-wallpaper-preview.jpg' },
|
155
|
+
{ name: 'Glow In The Dark', musicSrc: 'https://www.pacdv.com/sounds/free-music/glow-in-the-dark.mp3', cover: 'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8NHx8fGVufDB8fHx8&w=1000&q=80' },
|
156
|
+
]
|
157
|
+
|
158
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"containerStyle": {
|
3
|
+
"backgroundColor": "white"
|
4
|
+
},
|
5
|
+
"headStyle": {},
|
6
|
+
"bodyStyle": {},
|
7
|
+
"widgetsStyle": {
|
8
|
+
"backgroundColor": "#F5F5F5",
|
9
|
+
"itemSpacing": 10,
|
10
|
+
"borderRadius": 4,
|
11
|
+
"padding": 10,
|
12
|
+
"verticalSpacing": 5,
|
13
|
+
"boxShadow": "0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)",
|
14
|
+
"fontFamily": "Arial"
|
15
|
+
},
|
16
|
+
"spacesStyle": {},
|
17
|
+
"navbarStyle": {}
|
18
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import CardStyle6 from '../../Reusable Components/Cards/Card-style-6/CardStyle6';
|
4
|
+
|
5
|
+
const DetailedPhoto = (props) => {
|
6
|
+
return (
|
7
|
+
<CardStyle6 cardClicked={() => props.cardClicked()} {...props.img}/>
|
8
|
+
)
|
9
|
+
}
|
10
|
+
|
11
|
+
DetailedPhoto.defaultProps = {};
|
12
|
+
|
13
|
+
DetailedPhoto.propTypes = {
|
14
|
+
|
15
|
+
}
|
16
|
+
|
17
|
+
export default DetailedPhoto
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import DetailedPhoto from "./DetailedPhoto";
|
2
|
+
|
3
|
+
import img5 from '../../assets/images/album5.jpg';
|
4
|
+
|
5
|
+
export default {
|
6
|
+
title: 'Photo Album/Photo',
|
7
|
+
component: DetailedPhoto
|
8
|
+
}
|
9
|
+
|
10
|
+
export const photo = args => <DetailedPhoto
|
11
|
+
img={{
|
12
|
+
index: 0,
|
13
|
+
img: img5,
|
14
|
+
title: 'Image 1',
|
15
|
+
description: 'This is description test',
|
16
|
+
date: '2021-11-30'
|
17
|
+
}}
|
18
|
+
|
19
|
+
{...args} />
|
20
|
+
|