@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,25 @@
|
|
1
|
+
import EventsList from "./EventsList";
|
2
|
+
|
3
|
+
export default {
|
4
|
+
title: 'Events/Events List',
|
5
|
+
component: EventsList
|
6
|
+
};
|
7
|
+
|
8
|
+
const events = [
|
9
|
+
{title: 'Event one', date: '15/11/2020 : 5/8/2021'},
|
10
|
+
{title: 'Event two', date: '14/12/2020 : 14/4/2023'},
|
11
|
+
{title: 'Event three', date: '5/6/2021 : 5/8/2021'},
|
12
|
+
{title: 'Event four', date: '14/4/2023'},
|
13
|
+
{title: 'Event five', date: '5/6/2021 : 14/4/2023'},
|
14
|
+
]
|
15
|
+
|
16
|
+
const Template = (args) => (
|
17
|
+
<EventsList {...args} />
|
18
|
+
);
|
19
|
+
|
20
|
+
export const List = Template.bind({});
|
21
|
+
List.args = {
|
22
|
+
events,
|
23
|
+
iconColor: '#FE1744',
|
24
|
+
cardTitleFontSize: 15
|
25
|
+
};
|
@@ -0,0 +1,85 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import * as Yup from 'yup';
|
4
|
+
import styled from 'styled-components';
|
5
|
+
|
6
|
+
import ReusableForm from '../../Reusable Components/ReusableForm/ReusableForm';
|
7
|
+
import TextField from '../../Common Inputs/TextField/TextField';
|
8
|
+
import CustomDropZone from '../../Common Inputs/CustomDropzone/CustomDropZone';
|
9
|
+
import CustomTextarea from '../../Common Inputs/CustomTextarea/CustomTextarea';
|
10
|
+
|
11
|
+
const AddPhoto = ({saveBtnText, cancelBtnText, ...props}) => {
|
12
|
+
const initialValues = {
|
13
|
+
img: null,
|
14
|
+
title: '',
|
15
|
+
description: ''
|
16
|
+
}
|
17
|
+
|
18
|
+
const formSchema = Yup.object().shape({
|
19
|
+
title: Yup.string()
|
20
|
+
.required("Required"),
|
21
|
+
});
|
22
|
+
|
23
|
+
const sections = [
|
24
|
+
{
|
25
|
+
title: "Upload Photo",
|
26
|
+
body: [
|
27
|
+
(<CustomDropZone label="Image" name="cover" />),
|
28
|
+
(<TextField label="Title" name="title" />),
|
29
|
+
(<CustomTextarea label="Description" name="description" />)
|
30
|
+
],
|
31
|
+
hideTitle: true
|
32
|
+
},
|
33
|
+
]
|
34
|
+
|
35
|
+
const onCreate = (values) => {
|
36
|
+
const photo = {...values}
|
37
|
+
const date = new Date()
|
38
|
+
photo.date = date.toISOString().split('T')[0]
|
39
|
+
props.saveHandler(photo)
|
40
|
+
}
|
41
|
+
|
42
|
+
const cancelHandler = () => {
|
43
|
+
props.cancelHandler()
|
44
|
+
}
|
45
|
+
|
46
|
+
return (
|
47
|
+
<Container>
|
48
|
+
<ReusableForm
|
49
|
+
formTitle="Add Photo"
|
50
|
+
initialValues={initialValues}
|
51
|
+
formSchema={formSchema}
|
52
|
+
sections={sections}
|
53
|
+
headerStyles={props.headerStyles}
|
54
|
+
saveBtnText={saveBtnText}
|
55
|
+
cancelBtnText={cancelBtnText}
|
56
|
+
saveHandler={onCreate}
|
57
|
+
cancelHandler={cancelHandler}
|
58
|
+
headerStyles={{
|
59
|
+
padding: 10,
|
60
|
+
headerBackground: 'black',
|
61
|
+
titleColor: '#ffff',
|
62
|
+
}}
|
63
|
+
sectionPadding={10}
|
64
|
+
bodyRowGap={10}
|
65
|
+
{...props.formStyles}
|
66
|
+
/>
|
67
|
+
</Container>
|
68
|
+
)
|
69
|
+
}
|
70
|
+
|
71
|
+
const Container = styled.div`
|
72
|
+
|
73
|
+
`
|
74
|
+
|
75
|
+
AddPhoto.defaultProps = {};
|
76
|
+
|
77
|
+
AddPhoto.propTypes = {
|
78
|
+
saveHandler: PropTypes.func,
|
79
|
+
cancelHandler: PropTypes.func,
|
80
|
+
saveBtnText: PropTypes.string,
|
81
|
+
cancelBtnText: PropTypes.string,
|
82
|
+
formStyles: PropTypes.object
|
83
|
+
}
|
84
|
+
|
85
|
+
export default AddPhoto
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import AddPhoto from "./AddPhoto";
|
2
|
+
|
3
|
+
export default {
|
4
|
+
title: 'forms/Add Photo',
|
5
|
+
component: AddPhoto
|
6
|
+
}
|
7
|
+
|
8
|
+
const formStyles = {
|
9
|
+
headerStyles: {
|
10
|
+
padding: 10,
|
11
|
+
headerBackground: 'black',
|
12
|
+
titleColor: '#ffff',
|
13
|
+
},
|
14
|
+
sectionPadding: 10,
|
15
|
+
bodyRowGap: 10
|
16
|
+
}
|
17
|
+
|
18
|
+
const saveHandler = (photo) => {
|
19
|
+
console.log(photo)
|
20
|
+
}
|
21
|
+
|
22
|
+
const cancelHandler = () => {
|
23
|
+
console.log('Canceled')
|
24
|
+
}
|
25
|
+
|
26
|
+
const Template = (args) => (
|
27
|
+
<AddPhoto {...args} />
|
28
|
+
);
|
29
|
+
|
30
|
+
export const Photo = Template.bind({});
|
31
|
+
Photo.args = {
|
32
|
+
saveHandler: saveHandler,
|
33
|
+
cancelHandler: cancelHandler,
|
34
|
+
saveBtnText: "Create",
|
35
|
+
cancelBtnText: "Cancel",
|
36
|
+
formStyles: formStyles,
|
37
|
+
};
|
@@ -0,0 +1,86 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import * as Yup from 'yup';
|
4
|
+
import styled from 'styled-components';
|
5
|
+
|
6
|
+
import ReusableForm from '../../Reusable Components/ReusableForm/ReusableForm';
|
7
|
+
import TextField from '../../Common Inputs/TextField/TextField';
|
8
|
+
import CustomDropZone from '../../Common Inputs/CustomDropzone/CustomDropZone';
|
9
|
+
|
10
|
+
const AddSong = (props) => {
|
11
|
+
const initialValues = {
|
12
|
+
song: null,
|
13
|
+
cover: null,
|
14
|
+
title: '',
|
15
|
+
artist: ''
|
16
|
+
}
|
17
|
+
|
18
|
+
const formSchema = Yup.object().shape({
|
19
|
+
title: Yup.string()
|
20
|
+
.required("Required"),
|
21
|
+
artist: Yup.string()
|
22
|
+
.required('Required')
|
23
|
+
});
|
24
|
+
|
25
|
+
const sections = [
|
26
|
+
{
|
27
|
+
title: "Announcment Details",
|
28
|
+
body: [
|
29
|
+
(<CustomDropZone fileType="audio/*" inputContent="Insert Song" label="Upload Song" name="song" />),
|
30
|
+
(<CustomDropZone inputContent="Song Cover" label="Upload Cover" name="cover" />),
|
31
|
+
(<TextField label="Title" name="title" />),
|
32
|
+
(<TextField label="Artist" name="artist" />),
|
33
|
+
],
|
34
|
+
hideTitle: true
|
35
|
+
},
|
36
|
+
]
|
37
|
+
|
38
|
+
const onCreate = (values) => {
|
39
|
+
const album = { ...values }
|
40
|
+
const date = new Date()
|
41
|
+
album.date = date
|
42
|
+
props.saveHandler(album)
|
43
|
+
}
|
44
|
+
|
45
|
+
const cancelHandler = () => {
|
46
|
+
props.cancelHandler()
|
47
|
+
}
|
48
|
+
|
49
|
+
return (
|
50
|
+
<Container>
|
51
|
+
<ReusableForm
|
52
|
+
formTitle="Create Album"
|
53
|
+
initialValues={initialValues}
|
54
|
+
formSchema={formSchema}
|
55
|
+
sections={sections}
|
56
|
+
saveBtnText={props.saveBtnText}
|
57
|
+
cancelBtnText={props.cancelBtnText}
|
58
|
+
saveHandler={onCreate}
|
59
|
+
cancelHandler={cancelHandler}
|
60
|
+
headerStyles={{
|
61
|
+
padding: 10,
|
62
|
+
headerBackground: 'black',
|
63
|
+
titleColor: '#ffff',
|
64
|
+
}}
|
65
|
+
sectionPadding={10}
|
66
|
+
bodyRowGap={10}
|
67
|
+
{...props.formStyles}
|
68
|
+
/>
|
69
|
+
</Container>
|
70
|
+
)
|
71
|
+
}
|
72
|
+
|
73
|
+
const Container = styled.div`
|
74
|
+
|
75
|
+
`
|
76
|
+
|
77
|
+
AddSong.defaultProps = {};
|
78
|
+
|
79
|
+
AddSong.propTypes = {
|
80
|
+
saveHandler: PropTypes.func,
|
81
|
+
candelHandler: PropTypes.func,
|
82
|
+
saveBtnText: PropTypes.string,
|
83
|
+
cancelBtnText: PropTypes.string
|
84
|
+
}
|
85
|
+
|
86
|
+
export default AddSong
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import AddSong from "./AddSong";
|
2
|
+
|
3
|
+
export default {
|
4
|
+
title: 'Music Albums/Add Song',
|
5
|
+
component: AddSong
|
6
|
+
}
|
7
|
+
|
8
|
+
const onAddSong = (song) => {
|
9
|
+
console.log(song)
|
10
|
+
}
|
11
|
+
|
12
|
+
const cancelHandler = () => {
|
13
|
+
console.log('Canceled')
|
14
|
+
}
|
15
|
+
|
16
|
+
const Template = (args) => (
|
17
|
+
<AddSong {...args} />
|
18
|
+
);
|
19
|
+
|
20
|
+
export const Song = Template.bind({});
|
21
|
+
Song.args = {
|
22
|
+
saveHandler: onAddSong,
|
23
|
+
candelHandler: cancelHandler,
|
24
|
+
saveBtnText: "Create",
|
25
|
+
cancelBtnText: "Cancel",
|
26
|
+
};
|
@@ -0,0 +1,78 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as Yup from 'yup';
|
3
|
+
import styled from 'styled-components';
|
4
|
+
|
5
|
+
import ReusableForm from '../../Reusable Components/ReusableForm/ReusableForm';
|
6
|
+
import TextField from '../../Common Inputs/TextField/TextField';
|
7
|
+
import CustomDropZone from '../../Common Inputs/CustomDropzone/CustomDropZone';
|
8
|
+
|
9
|
+
const AddVideo = (props) => {
|
10
|
+
const initialValues = {
|
11
|
+
video: null,
|
12
|
+
cover: null,
|
13
|
+
link: '',
|
14
|
+
title: '',
|
15
|
+
discription: ''
|
16
|
+
}
|
17
|
+
|
18
|
+
const formSchema = Yup.object().shape({
|
19
|
+
title: Yup.string()
|
20
|
+
.required("Required"),
|
21
|
+
discription: Yup.string()
|
22
|
+
.required('Required')
|
23
|
+
});
|
24
|
+
|
25
|
+
const sections = [
|
26
|
+
{
|
27
|
+
title: "Add Video",
|
28
|
+
body: [
|
29
|
+
(<CustomDropZone fileType="video/*" inputContent="Video" label="Upload Video" name="video" />),
|
30
|
+
(<TextField label="or insert link" name="link" />),
|
31
|
+
(<CustomDropZone inputContent="Video Cover" label="Upload Cover" name="cover" />),
|
32
|
+
(<TextField label="Title" name="title" />),
|
33
|
+
(<TextField label="discription" name="discription" />),
|
34
|
+
],
|
35
|
+
hideTitle: true
|
36
|
+
},
|
37
|
+
]
|
38
|
+
|
39
|
+
const onCreate = (values) => {
|
40
|
+
const video = { ...values }
|
41
|
+
const date = new Date()
|
42
|
+
video.date = date
|
43
|
+
props.saveHandler(video)
|
44
|
+
}
|
45
|
+
|
46
|
+
const cancelHandler = () => {
|
47
|
+
props.cancelHandler()
|
48
|
+
}
|
49
|
+
return (
|
50
|
+
<Container>
|
51
|
+
<ReusableForm
|
52
|
+
formTitle="Add Video"
|
53
|
+
initialValues={initialValues}
|
54
|
+
formSchema={formSchema}
|
55
|
+
sections={sections}
|
56
|
+
headerStyles={props.headerStyles}
|
57
|
+
saveBtnText='Create'
|
58
|
+
cancelBtnText='Cancel'
|
59
|
+
saveHandler={onCreate}
|
60
|
+
cancelHandler={cancelHandler}
|
61
|
+
headerStyles={{
|
62
|
+
padding: 10,
|
63
|
+
headerBackground: 'black',
|
64
|
+
titleColor: '#ffff',
|
65
|
+
}}
|
66
|
+
sectionPadding={10}
|
67
|
+
bodyRowGap={10}
|
68
|
+
{...props.formStyles}
|
69
|
+
/>
|
70
|
+
</Container>
|
71
|
+
)
|
72
|
+
}
|
73
|
+
|
74
|
+
const Container = styled.div`
|
75
|
+
|
76
|
+
`
|
77
|
+
|
78
|
+
export default AddVideo
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import AddVideo from "./AddVideo";
|
2
|
+
|
3
|
+
export default {
|
4
|
+
title: 'Forms/Add Video',
|
5
|
+
component: AddVideo
|
6
|
+
}
|
7
|
+
|
8
|
+
const saveHandler = (photo) => {
|
9
|
+
console.log(photo)
|
10
|
+
}
|
11
|
+
|
12
|
+
const cancelHandler = () => {
|
13
|
+
console.log('Canceled')
|
14
|
+
}
|
15
|
+
|
16
|
+
export const Video = args => <AddVideo
|
17
|
+
saveHandler={saveHandler}
|
18
|
+
cancelHandler={cancelHandler}
|
19
|
+
{...args}
|
20
|
+
{...args} />
|
@@ -0,0 +1,278 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import { Formik, Form } from "formik";
|
3
|
+
import styled from "styled-components";
|
4
|
+
|
5
|
+
// Formik Fields
|
6
|
+
import InputField from '../../Common Inputs/Formik/InputField/InputField';
|
7
|
+
import RadioField from '../../Common Inputs/Formik/RadioField/RadioField';
|
8
|
+
|
9
|
+
// Subcomponents
|
10
|
+
import ProfilePhoto from './subcomponents/ProfilePhoto'
|
11
|
+
import LogoUploader from './subcomponents/LogoUploader'
|
12
|
+
import ResetBtn from './subcomponents/ResetBtn'
|
13
|
+
|
14
|
+
// Widgets
|
15
|
+
import Button from '../../Buttons/Buttons/Buttons'
|
16
|
+
|
17
|
+
// Just dummy data used to loop
|
18
|
+
// For presentation
|
19
|
+
const dummyData = [1, 2, 3, 4, 5, 6]
|
20
|
+
|
21
|
+
const CreateProfile = () => {
|
22
|
+
return (
|
23
|
+
<Container>
|
24
|
+
<Formik
|
25
|
+
initialValues={{
|
26
|
+
profilePhoto: null,
|
27
|
+
username: '',
|
28
|
+
servername: '',
|
29
|
+
logo: null,
|
30
|
+
preset: '',
|
31
|
+
theme: '',
|
32
|
+
themeSelected: '',
|
33
|
+
styles:
|
34
|
+
{
|
35
|
+
width: '',
|
36
|
+
border: '',
|
37
|
+
borderColor: '',
|
38
|
+
color: '',
|
39
|
+
height: '',
|
40
|
+
font: ''
|
41
|
+
}
|
42
|
+
}}
|
43
|
+
onSubmit = {( values ) => {
|
44
|
+
console.log(values)
|
45
|
+
}}
|
46
|
+
>
|
47
|
+
{({ values, setFieldValue, initialValues }) => (
|
48
|
+
<Form>
|
49
|
+
<Row>
|
50
|
+
<Heading>Create Profile</Heading>
|
51
|
+
</Row>
|
52
|
+
<Row>
|
53
|
+
<Col size={1} >
|
54
|
+
<ProfilePhoto
|
55
|
+
profilePhoto={values.profilePhoto} setFieldValue={setFieldValue}
|
56
|
+
/>
|
57
|
+
</Col>
|
58
|
+
<Col
|
59
|
+
size={3}
|
60
|
+
justify="flex-end"
|
61
|
+
align="center"
|
62
|
+
direction="row"
|
63
|
+
>
|
64
|
+
<InputField
|
65
|
+
name="username"
|
66
|
+
type="text"
|
67
|
+
placeholder="username"
|
68
|
+
/>
|
69
|
+
</Col>
|
70
|
+
</Row>
|
71
|
+
<Row>
|
72
|
+
<Col size={3}>
|
73
|
+
<Heading>
|
74
|
+
Create Server
|
75
|
+
</Heading>
|
76
|
+
</Col>
|
77
|
+
<Col size={1} justify="flex-end" align="flex-end">
|
78
|
+
<ResetBtn
|
79
|
+
value="servername"
|
80
|
+
setFieldValue={setFieldValue} initValue={initialValues.servername} />
|
81
|
+
</Col>
|
82
|
+
</Row>
|
83
|
+
<Row>
|
84
|
+
<Col size={1}>
|
85
|
+
<InputField
|
86
|
+
name="servername"
|
87
|
+
type="text"
|
88
|
+
placeholder="server name"
|
89
|
+
/>
|
90
|
+
</Col>
|
91
|
+
</Row>
|
92
|
+
<Row>
|
93
|
+
<Col size={3}>
|
94
|
+
<Heading>
|
95
|
+
Upload Logo
|
96
|
+
</Heading>
|
97
|
+
</Col>
|
98
|
+
<Col size={1}
|
99
|
+
justify="flex-end"
|
100
|
+
align="flex-end"
|
101
|
+
>
|
102
|
+
<ResetBtn
|
103
|
+
value="logo"
|
104
|
+
setFieldValue={setFieldValue} initValue={initialValues.logo}
|
105
|
+
/>
|
106
|
+
</Col>
|
107
|
+
</Row>
|
108
|
+
<Row>
|
109
|
+
<Col size={1}>
|
110
|
+
<LogoUploader
|
111
|
+
value="logo"
|
112
|
+
logo={values.logo}
|
113
|
+
setFieldValue={setFieldValue}
|
114
|
+
/>
|
115
|
+
</Col>
|
116
|
+
</Row>
|
117
|
+
<Row>
|
118
|
+
<Col size={3}>
|
119
|
+
<Heading>Presets</Heading>
|
120
|
+
</Col>
|
121
|
+
<Col
|
122
|
+
size={1}
|
123
|
+
justify="flex-end"
|
124
|
+
align="flex-end"
|
125
|
+
>
|
126
|
+
<ResetBtn
|
127
|
+
value="preset"
|
128
|
+
setFieldValue={setFieldValue} initValue={initialValues.preset}
|
129
|
+
/>
|
130
|
+
</Col>
|
131
|
+
</Row>
|
132
|
+
<Row>
|
133
|
+
<GridColumn gridsize={3}>
|
134
|
+
{
|
135
|
+
dummyData.map(
|
136
|
+
(n) =>
|
137
|
+
<RadioField
|
138
|
+
name="preset"
|
139
|
+
value={`Preset ${n}`}
|
140
|
+
>
|
141
|
+
{`Preset ${n}`}
|
142
|
+
</RadioField>
|
143
|
+
)
|
144
|
+
}
|
145
|
+
</GridColumn>
|
146
|
+
</Row>
|
147
|
+
<Row>
|
148
|
+
<Col size={3}>
|
149
|
+
<Heading>Themes</Heading>
|
150
|
+
</Col>
|
151
|
+
<Col size={1}
|
152
|
+
justify="flex-end"
|
153
|
+
align="flex-end"
|
154
|
+
>
|
155
|
+
<ResetBtn
|
156
|
+
value="theme"
|
157
|
+
setFieldValue={setFieldValue} initValue={initialValues.theme}
|
158
|
+
/>
|
159
|
+
</Col>
|
160
|
+
</Row>
|
161
|
+
<Row>
|
162
|
+
<Col size={1} >
|
163
|
+
<InputField
|
164
|
+
name="theme"
|
165
|
+
type="text"
|
166
|
+
placeholder="search..."
|
167
|
+
/>
|
168
|
+
</Col>
|
169
|
+
</Row>
|
170
|
+
<Row>
|
171
|
+
<GridColumn gridsize={3}>
|
172
|
+
{
|
173
|
+
dummyData.map(
|
174
|
+
(n) =>
|
175
|
+
<RadioField name="themeSelected"
|
176
|
+
value={`Theme ${n}`}
|
177
|
+
>
|
178
|
+
{`Theme ${n}`}
|
179
|
+
</RadioField>
|
180
|
+
)
|
181
|
+
}
|
182
|
+
</GridColumn>
|
183
|
+
</Row>
|
184
|
+
<Row>
|
185
|
+
<Col size={3}>
|
186
|
+
<Heading>Styles</Heading>
|
187
|
+
</Col>
|
188
|
+
<Col
|
189
|
+
size={1}
|
190
|
+
justify="flex-end"
|
191
|
+
align="flex-end">
|
192
|
+
<ResetBtn
|
193
|
+
value="styles"
|
194
|
+
setFieldValue={setFieldValue} initValue={initialValues.styles}
|
195
|
+
/>
|
196
|
+
</Col>
|
197
|
+
</Row>
|
198
|
+
<Row>
|
199
|
+
<GridColumn gridsize={3}>
|
200
|
+
<InputField className="style" name="styles.width" type="text" placeholder="#width" />
|
201
|
+
<InputField className="style" name="styles.height" type="text" placeholder="#height" />
|
202
|
+
<InputField className="style" name="styles.border" type="text" placeholder="#border" />
|
203
|
+
<InputField className="style" name="styles.borderColor" type="text" placeholder="#border color" />
|
204
|
+
<InputField className="style" name="styles.color" type="text" placeholder="#color" />
|
205
|
+
<InputField className="style" name="styles.font" type="text" placeholder="#font" />
|
206
|
+
</GridColumn>
|
207
|
+
</Row>
|
208
|
+
<Row>
|
209
|
+
<Col size={3}>
|
210
|
+
<Heading>Preview</Heading>
|
211
|
+
</Col>
|
212
|
+
</Row>
|
213
|
+
<Row>
|
214
|
+
<Col size={1}>
|
215
|
+
<PreviewBox />
|
216
|
+
</Col>
|
217
|
+
</Row>
|
218
|
+
<Row>
|
219
|
+
<Col
|
220
|
+
size={1}
|
221
|
+
justify="flex-end"
|
222
|
+
>
|
223
|
+
<Button
|
224
|
+
label="CREATE"
|
225
|
+
size="lg"
|
226
|
+
variant="primary"
|
227
|
+
type="submit"
|
228
|
+
/>
|
229
|
+
</Col>
|
230
|
+
</Row>
|
231
|
+
</Form>
|
232
|
+
)}
|
233
|
+
</Formik>
|
234
|
+
</Container>
|
235
|
+
)
|
236
|
+
}
|
237
|
+
const Container = styled.section`
|
238
|
+
width: 60%;
|
239
|
+
padding-right: 15px;
|
240
|
+
padding-left: 15px;
|
241
|
+
margin-right: auto;
|
242
|
+
margin-left: auto;
|
243
|
+
box-sizing: border-box;
|
244
|
+
`
|
245
|
+
const Row = styled.div`
|
246
|
+
display: flex;
|
247
|
+
margin: 1.5rem 0;
|
248
|
+
`
|
249
|
+
|
250
|
+
const Col = styled.div`
|
251
|
+
flex: ${(props) => props.size};
|
252
|
+
display: flex;
|
253
|
+
justify-content: ${(props) => props.justify};
|
254
|
+
align-items: ${(props) => props.align};
|
255
|
+
flex-direction: ${(props) => props.direction};
|
256
|
+
padding: 0 15px;
|
257
|
+
`
|
258
|
+
const GridColumn = styled.div`
|
259
|
+
display: grid;
|
260
|
+
width: 100%;
|
261
|
+
grid-template-columns: ${(props) => `repeat(${props.gridsize}, 1fr)`};
|
262
|
+
justify-items: center;
|
263
|
+
grid-gap: 1rem;
|
264
|
+
padding: 0 15px;
|
265
|
+
`
|
266
|
+
const Heading = styled.div`
|
267
|
+
font-family: Arial, Helvetica, sans-serif;
|
268
|
+
font-size: 2rem;
|
269
|
+
`
|
270
|
+
|
271
|
+
const PreviewBox = styled.div`
|
272
|
+
border: 3px solid #222222;
|
273
|
+
width: 100%;
|
274
|
+
min-height: 400px;
|
275
|
+
height: 600px;
|
276
|
+
`
|
277
|
+
|
278
|
+
export default CreateProfile
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import CreateProfile from './CreateProfile'
|
3
|
+
|
4
|
+
import withFormik from 'storybook-formik'
|
5
|
+
|
6
|
+
export default {
|
7
|
+
title: 'Forms/Create-Profile-2',
|
8
|
+
component: CreateProfile,
|
9
|
+
decorators: [withFormik]
|
10
|
+
}
|
11
|
+
|
12
|
+
const Template = args => <CreateProfile {...args} />
|
13
|
+
|
14
|
+
export const Default = Template.bind({})
|
15
|
+
Default.parameters = {
|
16
|
+
formik: {
|
17
|
+
initialValues: {
|
18
|
+
profilePhoto: null,
|
19
|
+
username: '',
|
20
|
+
servername: '',
|
21
|
+
logo: null,
|
22
|
+
preset: '',
|
23
|
+
theme: '',
|
24
|
+
themeSelected: '',
|
25
|
+
styles:
|
26
|
+
{
|
27
|
+
width: '',
|
28
|
+
border: '',
|
29
|
+
borderColor: '',
|
30
|
+
color: '',
|
31
|
+
height: '',
|
32
|
+
font: ''
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|