@mohamed-karawia/react-storybook 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @mohamed-karawia/react-storybook might be problematic. Click here for more details.
- 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 +64 -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,134 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import styled from 'styled-components';
|
4
|
+
|
5
|
+
import Gallery from '../../Reusable Components/Gallery/Gallery';
|
6
|
+
import Modal from '../../Reusable Components/ReactModal/ReactModal';
|
7
|
+
import CreateAlbum from '../../Forms/CreateMusicAlbum/CreateMusicAlbum';
|
8
|
+
|
9
|
+
import { AiOutlineFileAdd, AiFillDelete } from "react-icons/ai";
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
const cardControls = [
|
15
|
+
{ icon: (<AiFillDelete />), action: 'delete', name: 'Delete album' },
|
16
|
+
]
|
17
|
+
|
18
|
+
const galleryControls = [
|
19
|
+
{ icon: (<AiOutlineFileAdd />), action: 'add', name: 'Add Album' },
|
20
|
+
]
|
21
|
+
|
22
|
+
const ViewAlbums = ({
|
23
|
+
albums,
|
24
|
+
cardBackgroundColor,
|
25
|
+
albumTitleColor,
|
26
|
+
descColor,
|
27
|
+
...props
|
28
|
+
}) => {
|
29
|
+
const cardStyles = {
|
30
|
+
darkOnHover: true,
|
31
|
+
cardBackgroundColor: cardBackgroundColor,
|
32
|
+
cardTitleColor: albumTitleColor,
|
33
|
+
descColor,
|
34
|
+
controlsStyles: {
|
35
|
+
showOnHover: true,
|
36
|
+
position: 'center',
|
37
|
+
iconBackground: "#272727",
|
38
|
+
dropdownBackground: "#272727",
|
39
|
+
dropdownFontColor: "white",
|
40
|
+
dropdownItemHoverColor: "#414141",
|
41
|
+
iconBackgroundHover: "#414141",
|
42
|
+
iconBorderRadius: 100,
|
43
|
+
iconSize: 25,
|
44
|
+
iconsGap: 10,
|
45
|
+
iconColor: 'white',
|
46
|
+
containerPadding: 20
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
const [showModal, setShowModal] = useState(false);
|
51
|
+
|
52
|
+
const onHeaderIconClicked = (action) => {
|
53
|
+
switch (action) {
|
54
|
+
case 'add':
|
55
|
+
setShowModal(true)
|
56
|
+
break;
|
57
|
+
default:
|
58
|
+
break;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
const cardIconClicked = (action, index) => {
|
63
|
+
props.cardIconClicked(action, index)
|
64
|
+
}
|
65
|
+
|
66
|
+
|
67
|
+
const onAddAlbum = (album) => {
|
68
|
+
setShowModal(false)
|
69
|
+
props.onAddAlbum(album)
|
70
|
+
}
|
71
|
+
|
72
|
+
const cancelHandler = () => {
|
73
|
+
setShowModal(false)
|
74
|
+
}
|
75
|
+
|
76
|
+
return (
|
77
|
+
<Container>
|
78
|
+
<Gallery
|
79
|
+
galleryTitle="Music Albums"
|
80
|
+
data={albums}
|
81
|
+
type="flat"
|
82
|
+
cardStyle="card-style-6"
|
83
|
+
headerStyles={{
|
84
|
+
padding: 10,
|
85
|
+
headerBackground: 'black',
|
86
|
+
titleColor: '#ffff',
|
87
|
+
controlsStyles: {
|
88
|
+
iconSize: 25
|
89
|
+
}
|
90
|
+
}}
|
91
|
+
columnsNumber={3}
|
92
|
+
galleryColumnGap={10}
|
93
|
+
galleryRowGap={20}
|
94
|
+
galleryControls={galleryControls}
|
95
|
+
iconClicked={onHeaderIconClicked}
|
96
|
+
cardControls={cardControls}
|
97
|
+
cardClicked={() => null}
|
98
|
+
cardIconClicked={cardIconClicked}
|
99
|
+
customCardStyles={cardStyles}
|
100
|
+
{...props}
|
101
|
+
/>
|
102
|
+
<Modal
|
103
|
+
modalIsOpen={showModal}
|
104
|
+
closeModal={() => setShowModal(false)}
|
105
|
+
exitModalButton={(e) => (
|
106
|
+
<div></div>
|
107
|
+
)}>
|
108
|
+
<CreateAlbum
|
109
|
+
saveHandler={onAddAlbum}
|
110
|
+
cancelHandler={cancelHandler}
|
111
|
+
saveBtnText="Create"
|
112
|
+
cancelBtnText="Cancel" />
|
113
|
+
</Modal>
|
114
|
+
</Container>
|
115
|
+
)
|
116
|
+
}
|
117
|
+
const Container = styled.div`
|
118
|
+
|
119
|
+
`
|
120
|
+
|
121
|
+
ViewAlbums.defaultProps = {
|
122
|
+
cardBackgroundColor: 'white'
|
123
|
+
};
|
124
|
+
|
125
|
+
ViewAlbums.propTypes = {
|
126
|
+
albums: PropTypes.array,
|
127
|
+
cardIconClicked: PropTypes.func,
|
128
|
+
onAddAlbum: PropTypes.func,
|
129
|
+
cardBackgroundColor: PropTypes.string,
|
130
|
+
albumTitleColor: PropTypes.string,
|
131
|
+
descColor: PropTypes.string,
|
132
|
+
};
|
133
|
+
|
134
|
+
export default ViewAlbums
|
@@ -0,0 +1,57 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import ViewAlbums from "./ViewAlbums";
|
3
|
+
import { deleteFromArrayByIndex, addObjectToArray } from '../../helpers/util';
|
4
|
+
|
5
|
+
import img1 from '../../assets/images/music1.jpg';
|
6
|
+
import img2 from '../../assets/images/music2.jpg';
|
7
|
+
import img3 from '../../assets/images/music3.jpg';
|
8
|
+
import img4 from '../../assets/images/music4.jpg';
|
9
|
+
import img5 from '../../assets/images/music5.jpg';
|
10
|
+
import img6 from '../../assets/images/music6.jpg';
|
11
|
+
|
12
|
+
export default {
|
13
|
+
title: 'Music Albums/Music Albums',
|
14
|
+
component: ViewAlbums
|
15
|
+
}
|
16
|
+
|
17
|
+
export const Albums = args => {
|
18
|
+
const [albums, setAlbums] = useState([
|
19
|
+
{ index: 0, img: img4, title: 'Tomorrows |', description: 'Son Lux' },
|
20
|
+
{ index: 1, img: img5, title: 'Blond', description: 'Frank Ocean' },
|
21
|
+
{ index: 2, img: img6, title: 'Love At First Sting', description: 'Scorpions' },
|
22
|
+
{ index: 3, img: img1, title: 'The 1975', description: '1975' },
|
23
|
+
{ index: 4, img: img3, title: 'Hardwired...To Self-Destruct', description: 'Metallica' },
|
24
|
+
{ index: 5, img: img2, title: 'Use Your IIIlusion |', description: "Guns N' Roses" },
|
25
|
+
])
|
26
|
+
|
27
|
+
const cardIconClicked = (action, index) => {
|
28
|
+
switch (action) {
|
29
|
+
case 'delete':
|
30
|
+
deleteFromAlbums(index)
|
31
|
+
break;
|
32
|
+
default:
|
33
|
+
break;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
const onAddAlbum = (album) => {
|
38
|
+
const newAlbum = {
|
39
|
+
img: album.cover.preview,
|
40
|
+
title: album.title,
|
41
|
+
description: album.artist
|
42
|
+
}
|
43
|
+
setAlbums(addObjectToArray(albums, newAlbum))
|
44
|
+
}
|
45
|
+
|
46
|
+
const deleteFromAlbums = (index) => {
|
47
|
+
setAlbums(deleteFromArrayByIndex(albums, index))
|
48
|
+
}
|
49
|
+
|
50
|
+
return (
|
51
|
+
<ViewAlbums
|
52
|
+
albums={albums}
|
53
|
+
cardIconClicked={cardIconClicked}
|
54
|
+
onAddAlbum={onAddAlbum}
|
55
|
+
{...args} />
|
56
|
+
)
|
57
|
+
}
|
@@ -0,0 +1,350 @@
|
|
1
|
+
import { Formik, Form } from 'formik';
|
2
|
+
import React, { Fragment, useState } from 'react';
|
3
|
+
import Select from 'react-select';
|
4
|
+
import styled from 'styled-components';
|
5
|
+
import CustomAutoComplete from '../Common Inputs/CustomAutoComplete/CustomAutoComplete';
|
6
|
+
import BaseMaterial from '../Containers/BaseMaterial';
|
7
|
+
import home from '../../assets/home-svgrepo-com.svg';
|
8
|
+
import discover from '../../assets/compass-svgrepo-com.svg';
|
9
|
+
import add from '../../assets/add-svgrepo-com.svg';
|
10
|
+
import basket from '../../assets/basket-svgrepo-com.svg';
|
11
|
+
import bell from '../../assets/bell-svgrepo-com.svg';
|
12
|
+
import medal from '../../assets/medal-svgrepo-com.svg';
|
13
|
+
import settings from '../../assets/settings-svgrepo-com.svg';
|
14
|
+
import search from '../../assets/search-svgrepo-com.svg';
|
15
|
+
|
16
|
+
/* icon size can sm md lg @sm by default*/
|
17
|
+
/* icon background color @transparent by default*/
|
18
|
+
const Navbar = ({ iconSize, iconBackgroundColor, navbarColor, dropDownItemHeight }) => {
|
19
|
+
const initialValues = {
|
20
|
+
search: '',
|
21
|
+
searchIcons: '',
|
22
|
+
};
|
23
|
+
const [menuOpen, setMenuOpen] = useState(false);
|
24
|
+
const submitHandler = (values) => {
|
25
|
+
console.log(values);
|
26
|
+
};
|
27
|
+
const icons = [
|
28
|
+
{ id: 'home', label: 'home' },
|
29
|
+
{ id: 'add', label: 'add' },
|
30
|
+
{ id: 'discover', label: 'discover' },
|
31
|
+
{ id: 'badge', label: 'badge' },
|
32
|
+
{ id: 'marketplace', label: 'marketplace' },
|
33
|
+
{ id: 'setting', label: 'setting' },
|
34
|
+
{ id: 'notification', label: 'notification' },
|
35
|
+
];
|
36
|
+
const Option = (name, image) => (
|
37
|
+
<OptionContainer itemHeight={dropDownItemHeight}>
|
38
|
+
<OptionImage src={image} />
|
39
|
+
<Label>{name}</Label>
|
40
|
+
</OptionContainer>
|
41
|
+
);
|
42
|
+
const options = [
|
43
|
+
{
|
44
|
+
value: 'cat',
|
45
|
+
label: Option(
|
46
|
+
'cat',
|
47
|
+
'https://cdn.pixabay.com/photo/2014/11/30/14/11/cat-551554__340.jpg'
|
48
|
+
),
|
49
|
+
},
|
50
|
+
{
|
51
|
+
value: 'strawberry',
|
52
|
+
label: Option(
|
53
|
+
'strawberry',
|
54
|
+
'https://media.istockphoto.com/photos/red-berry-strawberry-isolated-picture-id1157946861?b=1&k=20&m=1157946861&s=170667a&w=0&h=feuhHInk3SV4tpLEHTWtpEW-dBKjPWPmOMlgmPh82Ls='
|
55
|
+
),
|
56
|
+
},
|
57
|
+
{
|
58
|
+
value: 'vanilla',
|
59
|
+
label: Option(
|
60
|
+
'vanilla',
|
61
|
+
'https://static.toiimg.com/thumb/54677722.cms?imgsize=134423&width=800&height=800'
|
62
|
+
),
|
63
|
+
},
|
64
|
+
];
|
65
|
+
|
66
|
+
const accountOptions = [
|
67
|
+
{
|
68
|
+
value: 'settings',
|
69
|
+
label: Option(
|
70
|
+
'settings',
|
71
|
+
'http://simpleicon.com/wp-content/uploads/setting2.png'
|
72
|
+
),
|
73
|
+
},
|
74
|
+
{
|
75
|
+
value: 'logout',
|
76
|
+
label: Option(
|
77
|
+
'logout',
|
78
|
+
'https://cdn2.vectorstock.com/i/1000x1000/24/66/door-icon-emergency-exit-sign-vector-20712466.jpg'
|
79
|
+
),
|
80
|
+
},
|
81
|
+
];
|
82
|
+
const customStyles = {
|
83
|
+
menu: (styles) => ({ ...styles, width: '150px' }),
|
84
|
+
control: (styles) => ({
|
85
|
+
...styles,
|
86
|
+
border: '0',
|
87
|
+
backgroundColor: `${navbarColor}`,
|
88
|
+
}),
|
89
|
+
};
|
90
|
+
|
91
|
+
return (
|
92
|
+
<BaseMaterial>
|
93
|
+
<NavBar color={navbarColor}>
|
94
|
+
<UniverseContainer>
|
95
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
96
|
+
<Icon src={home} size={iconSize} />
|
97
|
+
</IconContainer>
|
98
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
99
|
+
<Icon src={add} size={iconSize} />
|
100
|
+
</IconContainer>
|
101
|
+
<div style={{ width: '200px' }}>
|
102
|
+
<Select options={options} styles={{ color: 'blue' }} />
|
103
|
+
</div>
|
104
|
+
</UniverseContainer>
|
105
|
+
<DiscoverContainer>
|
106
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
107
|
+
<Icon src={discover} size={iconSize} />
|
108
|
+
</IconContainer>
|
109
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
110
|
+
<Icon src={medal} size={iconSize} />
|
111
|
+
</IconContainer>
|
112
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
113
|
+
<Icon src={basket} size={iconSize} />
|
114
|
+
</IconContainer>
|
115
|
+
</DiscoverContainer>
|
116
|
+
<SearchContainer>
|
117
|
+
<SearchBar>
|
118
|
+
<Icon src={search} size={iconSize} />
|
119
|
+
|
120
|
+
<Formik
|
121
|
+
initialValues={initialValues}
|
122
|
+
onSubmit={(values) => submitHandler(values)}
|
123
|
+
>
|
124
|
+
{({ errors, touched, setFieldValue, values }) => (
|
125
|
+
<CreateForm>
|
126
|
+
<div>
|
127
|
+
<CustomAutoComplete
|
128
|
+
label=''
|
129
|
+
name='searchIcons'
|
130
|
+
items={icons}
|
131
|
+
placeholder='Search Icons'
|
132
|
+
value={values.searchIcons}
|
133
|
+
onInputChange={(value) => {
|
134
|
+
setFieldValue('searchIcons', value);
|
135
|
+
}}
|
136
|
+
inputValue={values.searchIcons}
|
137
|
+
outline='none'
|
138
|
+
itemHeight='35'
|
139
|
+
width='98'
|
140
|
+
borderColor='#9e9e9e'
|
141
|
+
borderSize='0'
|
142
|
+
borderRadius='10'
|
143
|
+
padding='4'
|
144
|
+
height='30'
|
145
|
+
/>
|
146
|
+
</div>
|
147
|
+
</CreateForm>
|
148
|
+
)}
|
149
|
+
</Formik>
|
150
|
+
</SearchBar>
|
151
|
+
</SearchContainer>
|
152
|
+
<ProfileBar>
|
153
|
+
<ProfileContainer>
|
154
|
+
<Profile>
|
155
|
+
<Select
|
156
|
+
options={accountOptions}
|
157
|
+
styles={customStyles}
|
158
|
+
components={{
|
159
|
+
ValueContainer: () => null,
|
160
|
+
IndicatorSeparator: () => null,
|
161
|
+
DropdownIndicator: () => (
|
162
|
+
<Image
|
163
|
+
src='https://play.teleporthq.io/static/svg/default-img.svg'
|
164
|
+
onClick={() => setMenuOpen(!menuOpen)}
|
165
|
+
/>
|
166
|
+
),
|
167
|
+
}}
|
168
|
+
menuIsOpen={menuOpen}
|
169
|
+
/>
|
170
|
+
</Profile>
|
171
|
+
<UserName>illo</UserName>
|
172
|
+
</ProfileContainer>
|
173
|
+
<SettingsContainer>
|
174
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
175
|
+
<Icon src={settings} size={iconSize} />
|
176
|
+
</IconContainer>
|
177
|
+
<IconContainer size={iconSize} color={iconBackgroundColor}>
|
178
|
+
<Icon src={bell} size={iconSize} />
|
179
|
+
</IconContainer>
|
180
|
+
</SettingsContainer>
|
181
|
+
</ProfileBar>
|
182
|
+
</NavBar>
|
183
|
+
</BaseMaterial>
|
184
|
+
);
|
185
|
+
};
|
186
|
+
|
187
|
+
export default Navbar;
|
188
|
+
const CreateForm = styled(Form)`
|
189
|
+
display: flex;
|
190
|
+
flex-direction: column;
|
191
|
+
width: 100%;
|
192
|
+
`;
|
193
|
+
const Image = styled.img`
|
194
|
+
width: 40px;
|
195
|
+
height: 40px;
|
196
|
+
border-radius: 20px;
|
197
|
+
`;
|
198
|
+
const NavBar = styled.div`
|
199
|
+
flex: 0 0 auto;
|
200
|
+
height: 72px;
|
201
|
+
display: flex;
|
202
|
+
align-items: center;
|
203
|
+
padding-left: 16;
|
204
|
+
padding-right: 16;
|
205
|
+
flex-direction: row;
|
206
|
+
justify-content: flex-start;
|
207
|
+
background-color: ${(props) => props.color || '#e3e5e8'};
|
208
|
+
`;
|
209
|
+
|
210
|
+
const UniverseContainer = styled('div')({
|
211
|
+
width: '346px',
|
212
|
+
height: '72px',
|
213
|
+
display: 'flex',
|
214
|
+
'align-items': 'center',
|
215
|
+
'flex-direction': 'row',
|
216
|
+
'justify-content': 'flex-start',
|
217
|
+
});
|
218
|
+
|
219
|
+
const IconContainer = styled.div`
|
220
|
+
flex: 0 0 auto;
|
221
|
+
width: ${(props) =>
|
222
|
+
props.size === 'sm'
|
223
|
+
? '30px'
|
224
|
+
: props.size === 'md'
|
225
|
+
? '35px'
|
226
|
+
: props.size === 'lg'
|
227
|
+
? '40px'
|
228
|
+
: '30px'};
|
229
|
+
height: ${(props) =>
|
230
|
+
props.size === 'sm'
|
231
|
+
? '30px'
|
232
|
+
: props.size === 'md'
|
233
|
+
? '35px'
|
234
|
+
: props.size === 'lg'
|
235
|
+
? '40px'
|
236
|
+
: '30px'};
|
237
|
+
display: flex;
|
238
|
+
align-items: center;
|
239
|
+
margin-left: 0px;
|
240
|
+
margin-right: 4px;
|
241
|
+
border-radius: 20px;
|
242
|
+
flex-direction: row;
|
243
|
+
justify-content: center;
|
244
|
+
background-color: ${(props) => props.color || 'transparent'};
|
245
|
+
`;
|
246
|
+
|
247
|
+
const Icon = styled.img`
|
248
|
+
width: ${(props) =>
|
249
|
+
props.size === 'sm'
|
250
|
+
? '20px'
|
251
|
+
: props.size === 'md'
|
252
|
+
? '25px'
|
253
|
+
: props.size === 'lg'
|
254
|
+
? '30px'
|
255
|
+
: '20px'};
|
256
|
+
height: ${(props) =>
|
257
|
+
props.size === 'sm'
|
258
|
+
? '20px'
|
259
|
+
: props.size === 'md'
|
260
|
+
? '25px'
|
261
|
+
: props.size === 'lg'
|
262
|
+
? '30px'
|
263
|
+
: '20px'};
|
264
|
+
`;
|
265
|
+
|
266
|
+
const DiscoverContainer = styled('div')({
|
267
|
+
width: '190px',
|
268
|
+
height: '72px',
|
269
|
+
display: 'flex',
|
270
|
+
'align-items': 'center',
|
271
|
+
'flex-direction': 'row',
|
272
|
+
'justify-content': 'center',
|
273
|
+
});
|
274
|
+
const SearchContainer = styled('div')({
|
275
|
+
width: '100%',
|
276
|
+
height: '72px',
|
277
|
+
display: 'flex',
|
278
|
+
'align-items': 'center',
|
279
|
+
'flex-direction': 'row',
|
280
|
+
'justify-content': 'center',
|
281
|
+
});
|
282
|
+
|
283
|
+
const SearchBar = styled('div')({
|
284
|
+
width: '315px',
|
285
|
+
height: '40px',
|
286
|
+
display: 'flex',
|
287
|
+
paddingLeft: '8px',
|
288
|
+
'align-items': 'center',
|
289
|
+
'border-radius': '20px',
|
290
|
+
'flex-direction': 'row',
|
291
|
+
'background-color': '#ffffff',
|
292
|
+
flex: '1',
|
293
|
+
});
|
294
|
+
|
295
|
+
const ProfileBar = styled('div')({
|
296
|
+
width: '273px',
|
297
|
+
height: '72px',
|
298
|
+
display: 'flex',
|
299
|
+
'align-items': 'center',
|
300
|
+
'flex-direction': 'row',
|
301
|
+
'justify-content': 'space-between',
|
302
|
+
});
|
303
|
+
|
304
|
+
const ProfileContainer = styled('div')({
|
305
|
+
width: '86px',
|
306
|
+
height: '100%',
|
307
|
+
display: 'flex',
|
308
|
+
'align-items': 'center',
|
309
|
+
'flex-direction': 'row',
|
310
|
+
'justify-content': 'flex-start',
|
311
|
+
});
|
312
|
+
|
313
|
+
const Profile = styled('div')({
|
314
|
+
flex: '0 0 auto',
|
315
|
+
width: '50px',
|
316
|
+
height: '50px',
|
317
|
+
display: 'flex',
|
318
|
+
'align-items': 'center',
|
319
|
+
'margin-left': '4px',
|
320
|
+
'border-radius': '20px',
|
321
|
+
'flex-direction': 'row',
|
322
|
+
'justify-content': 'center',
|
323
|
+
});
|
324
|
+
|
325
|
+
const UserName = styled('span')({
|
326
|
+
'padding-left': '8px',
|
327
|
+
});
|
328
|
+
|
329
|
+
const SettingsContainer = styled('div')({
|
330
|
+
width: '59px',
|
331
|
+
height: '100%',
|
332
|
+
display: 'flex',
|
333
|
+
'align-items': 'center',
|
334
|
+
'flex-direction': 'row',
|
335
|
+
'justify-content': 'center',
|
336
|
+
});
|
337
|
+
const OptionContainer = styled.div`
|
338
|
+
display: flex;
|
339
|
+
flex-direction: row;
|
340
|
+
align-items: center;
|
341
|
+
height: ${(props) => props.itemHeight || '20px'};
|
342
|
+
`;
|
343
|
+
|
344
|
+
const OptionImage = styled.img`
|
345
|
+
height: 30px;
|
346
|
+
width: 30px;
|
347
|
+
`;
|
348
|
+
const Label = styled.label`
|
349
|
+
padding-left: 5px;
|
350
|
+
`;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import Navbar from './Navbar';
|
4
|
+
|
5
|
+
export default {
|
6
|
+
title: 'Navbar/Default',
|
7
|
+
component: Navbar,
|
8
|
+
argTypes: {
|
9
|
+
iconSize: {
|
10
|
+
options: ['sm', 'md', 'lg'],
|
11
|
+
control: { type: 'select' },
|
12
|
+
},
|
13
|
+
iconBackgroundColor: {
|
14
|
+
type: 'string',
|
15
|
+
},
|
16
|
+
navbarColor: {
|
17
|
+
type: 'string',
|
18
|
+
},
|
19
|
+
dropDownItemHeight: {
|
20
|
+
type: 'string',
|
21
|
+
},
|
22
|
+
},
|
23
|
+
};
|
24
|
+
|
25
|
+
export const Default = (props) => <Navbar {...props} />;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import styled from 'styled-components'
|
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
|
+
const BlankPage = () => {
|
12
|
+
return (
|
13
|
+
<Container>
|
14
|
+
<Head></Head>
|
15
|
+
<Body>
|
16
|
+
<Left><p>Left</p></Left>
|
17
|
+
<Center><p>Center</p></Center>
|
18
|
+
<Right><p>Right</p></Right>
|
19
|
+
</Body>
|
20
|
+
</Container>
|
21
|
+
)
|
22
|
+
}
|
23
|
+
|
24
|
+
export default BlankPage
|
25
|
+
|
26
|
+
const Container = styled('div')({
|
27
|
+
width: '100%',
|
28
|
+
height: 'auto',
|
29
|
+
display: 'flex',
|
30
|
+
'min-height': '100vh',
|
31
|
+
'flex-direction': 'column',
|
32
|
+
})
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import styled from 'styled-components'
|
4
|
+
|
5
|
+
const Centered = ({ children }) => {
|
6
|
+
return (
|
7
|
+
<Container>
|
8
|
+
<Content>
|
9
|
+
{children}
|
10
|
+
</Content>
|
11
|
+
</Container>
|
12
|
+
)
|
13
|
+
}
|
14
|
+
|
15
|
+
export default Centered
|
16
|
+
|
17
|
+
const Container = styled('div')({
|
18
|
+
height: 'auto',
|
19
|
+
'min-height': '100vh',
|
20
|
+
width: '100%',
|
21
|
+
display: 'flex',
|
22
|
+
'flex-direction': 'column',
|
23
|
+
'align-items': 'center',
|
24
|
+
'justify-content': 'center',
|
25
|
+
})
|
26
|
+
|
27
|
+
const Content = styled('div')({
|
28
|
+
display: 'flex',
|
29
|
+
'align-items': 'flex-start',
|
30
|
+
flex: '0 0 auto',
|
31
|
+
})
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import Centered from './Centered';
|
4
|
+
|
5
|
+
export default {
|
6
|
+
title: 'Pages/Centered',
|
7
|
+
component: Centered,
|
8
|
+
};
|
9
|
+
|
10
|
+
export const Default = (props) => (
|
11
|
+
<Centered {...props}>
|
12
|
+
Welcome To Community Builder Pro
|
13
|
+
</Centered>
|
14
|
+
)
|