@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,110 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from "prop-types";
|
3
|
+
|
4
|
+
import styled from 'styled-components';
|
5
|
+
import CardStyle3 from '../Cards/Card-style-3/CardStyle3';
|
6
|
+
|
7
|
+
import { getCardStyle } from '../../helpers/util';
|
8
|
+
import ReusableHeader from '../ReusableHeader/ReusableHeader';
|
9
|
+
|
10
|
+
const Gallery = ({ data, cardStyle, customCardStyles, type, cardControls = null, ...props }) => {
|
11
|
+
let child;
|
12
|
+
|
13
|
+
const iconCliked = (action) => {
|
14
|
+
props.iconClicked(action)
|
15
|
+
}
|
16
|
+
|
17
|
+
const clicked = (index) => {
|
18
|
+
props.cardClicked(index)
|
19
|
+
}
|
20
|
+
|
21
|
+
const cardIconClicked = (action, index) => {
|
22
|
+
props.cardIconClicked(action, index)
|
23
|
+
}
|
24
|
+
|
25
|
+
const mapOverCardsData = (data) => {
|
26
|
+
return data.map((cardProps, index) => (
|
27
|
+
getCardStyle(cardProps, cardStyle, customCardStyles, cardControls, index, clicked, cardIconClicked)
|
28
|
+
))
|
29
|
+
}
|
30
|
+
|
31
|
+
if (type === 'flat') {
|
32
|
+
child = mapOverCardsData(data)
|
33
|
+
} else if (type === 'sectioned') {
|
34
|
+
child = data.map((section, index) => (
|
35
|
+
<Section priority={section.priority} key={index}>
|
36
|
+
<CardStyle3 title={section.title} {...props.sectionHeaderStyles} />
|
37
|
+
<SectionBody {...props}>
|
38
|
+
{mapOverCardsData(section.data)}
|
39
|
+
</SectionBody>
|
40
|
+
</Section>
|
41
|
+
))
|
42
|
+
}
|
43
|
+
|
44
|
+
return (
|
45
|
+
<GalleryContainer {...props}>
|
46
|
+
<ReusableHeader
|
47
|
+
title={props.galleryTitle}
|
48
|
+
controls={props.galleryControls}
|
49
|
+
iconClicked={iconCliked}
|
50
|
+
{...props.headerStyles}
|
51
|
+
/>
|
52
|
+
<GalleryBody type={type} {...props}>
|
53
|
+
{child}
|
54
|
+
</GalleryBody>
|
55
|
+
</GalleryContainer>
|
56
|
+
)
|
57
|
+
}
|
58
|
+
|
59
|
+
const GalleryContainer = styled.div`
|
60
|
+
display: flex;
|
61
|
+
flex-direction: column;
|
62
|
+
font-family: sans-serif;
|
63
|
+
width: ${props => props.galleryWidth + 'px' || '100%'};
|
64
|
+
padding: 0;
|
65
|
+
`
|
66
|
+
|
67
|
+
const GalleryBody = styled.div`
|
68
|
+
padding: ${props => props.galleryBodyPadding}px;
|
69
|
+
display: ${({ type }) => type === 'flat' ? 'grid' : 'flex'};
|
70
|
+
flex-direction: column;
|
71
|
+
grid-template-columns: ${props => 'repeat(' + props.columnsNumber + ', 1fr)'};
|
72
|
+
grid-auto-rows: ${props => props.rowsHeight || 400}px;
|
73
|
+
/* grid-auto-rows: ${props => props.rowsHeight + 'px' || 'minmax(min-content, 400px)'}; */
|
74
|
+
column-gap: ${props => props.galleryColumnGap}px;
|
75
|
+
row-gap: ${props => props.galleryRowGap}px;
|
76
|
+
`
|
77
|
+
|
78
|
+
const Section = styled.div`
|
79
|
+
display: flex;
|
80
|
+
flex-direction: column;
|
81
|
+
order: ${({ priority }) => priority};
|
82
|
+
column-gap: ${props => props.galleryColumnGap}px;
|
83
|
+
row-gap: ${props => props.galleryRowGap}px;
|
84
|
+
`
|
85
|
+
|
86
|
+
const SectionBody = styled.div`
|
87
|
+
padding: ${props => props.galleryBodyPadding}px;
|
88
|
+
display: grid;
|
89
|
+
grid-template-columns: ${props => 'repeat(' + props.columnsNumber + ', 1fr)'};
|
90
|
+
column-gap: ${props => props.galleryColumnGap}px;
|
91
|
+
row-gap: ${props => props.galleryRowGap}px;
|
92
|
+
`
|
93
|
+
|
94
|
+
Gallery.defaultProps = {};
|
95
|
+
|
96
|
+
Gallery.propTypes = {
|
97
|
+
data: PropTypes.array.isRequired,
|
98
|
+
type: PropTypes.oneOf(['flat', 'sectioned']),
|
99
|
+
cardControls: PropTypes.array,
|
100
|
+
galleryWidth: PropTypes.number,
|
101
|
+
galleryTitle: PropTypes.string,
|
102
|
+
galleryBodyPadding: PropTypes.number,
|
103
|
+
columnsNumber: PropTypes.number,
|
104
|
+
galleryColumnGap: PropTypes.number,
|
105
|
+
galleryRowGap: PropTypes.number,
|
106
|
+
rowsHeight: PropTypes.number
|
107
|
+
|
108
|
+
};
|
109
|
+
|
110
|
+
export default Gallery
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import Gallery from './Gallery';
|
4
|
+
// Data
|
5
|
+
import { controls, data, dataWithSections, cardControls } from '../fakeData';
|
6
|
+
// Styles
|
7
|
+
import { headingControlsStyles, galleryCardControlsStyles } from '../commonStyles';
|
8
|
+
|
9
|
+
export default {
|
10
|
+
title: 'Reusable components/Gallery',
|
11
|
+
component: Gallery
|
12
|
+
}
|
13
|
+
|
14
|
+
const Template = (args) => (
|
15
|
+
<Gallery
|
16
|
+
galleryTitle="Reusable Gallery"
|
17
|
+
galleryControls={controls}
|
18
|
+
headerStyles={{
|
19
|
+
padding: 10,
|
20
|
+
headerBackground: '#FE1744',
|
21
|
+
titleColor: '#ffff',
|
22
|
+
}}
|
23
|
+
columnsNumber={3}
|
24
|
+
galleryColumnGap={10}
|
25
|
+
controlsStyles={headingControlsStyles}
|
26
|
+
cardStyle="card-style-6"
|
27
|
+
customCardStyles={galleryCardControlsStyles}
|
28
|
+
{...args} />
|
29
|
+
);
|
30
|
+
|
31
|
+
export const GalleryFlat = Template.bind({});
|
32
|
+
GalleryFlat.args = {
|
33
|
+
data: data,
|
34
|
+
type: "flat",
|
35
|
+
cardControls: cardControls
|
36
|
+
};
|
37
|
+
|
38
|
+
export const GallerySectioned = Template.bind({});
|
39
|
+
GallerySectioned.args = {
|
40
|
+
data: dataWithSections,
|
41
|
+
type: "sectioned",
|
42
|
+
cardControls: cardControls
|
43
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import styled from 'styled-components';
|
4
|
+
|
5
|
+
import { MentionsInput, Mention } from 'react-mentions';
|
6
|
+
|
7
|
+
const MentionArea = ({
|
8
|
+
users,
|
9
|
+
value,
|
10
|
+
backgroundColor,
|
11
|
+
listColor,
|
12
|
+
listItemColor,
|
13
|
+
...props
|
14
|
+
}) => {
|
15
|
+
// const [value, setValue] = useState('')
|
16
|
+
|
17
|
+
// const handleOnChange = (event, newValue, newPlainTextValue, mentions) => {
|
18
|
+
// setValue(newValue)
|
19
|
+
// console.log(event, newValue, newPlainTextValue, mentions)
|
20
|
+
// }
|
21
|
+
|
22
|
+
const handleOnChange = (event, newValue, newPlainTextValue, mentions) => {
|
23
|
+
props.handleOnChange(newValue)
|
24
|
+
}
|
25
|
+
|
26
|
+
return (
|
27
|
+
<Container
|
28
|
+
backgroundColor={backgroundColor}
|
29
|
+
listColor={listColor}
|
30
|
+
listItemColor={listItemColor}
|
31
|
+
>
|
32
|
+
<MentionsInput className="mention" value={value} onChange={handleOnChange}>
|
33
|
+
<Mention
|
34
|
+
trigger="@"
|
35
|
+
data={users}
|
36
|
+
/>
|
37
|
+
</MentionsInput>
|
38
|
+
</Container>
|
39
|
+
)
|
40
|
+
}
|
41
|
+
|
42
|
+
const Container = styled.div`
|
43
|
+
.mention{
|
44
|
+
border: none;
|
45
|
+
|
46
|
+
&__control{
|
47
|
+
background-color: ${({backgroundColor}) => backgroundColor};
|
48
|
+
}
|
49
|
+
|
50
|
+
&__suggestions{
|
51
|
+
|
52
|
+
&__list{
|
53
|
+
background-color: ${({listColor}) => listColor};
|
54
|
+
color: ${({listItemColor}) => listItemColor};
|
55
|
+
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
`
|
59
|
+
|
60
|
+
MentionArea.defaultProps = {};
|
61
|
+
|
62
|
+
MentionArea.propTypes = {
|
63
|
+
users: PropTypes.array,
|
64
|
+
backgroundColor: PropTypes.string,
|
65
|
+
listColor: PropTypes.string,
|
66
|
+
listItemColor: PropTypes.string
|
67
|
+
}
|
68
|
+
|
69
|
+
export default MentionArea
|
@@ -0,0 +1,55 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import Mention from "./Mention";
|
3
|
+
|
4
|
+
export default {
|
5
|
+
title: 'Resuable Components/Mention',
|
6
|
+
component: Mention
|
7
|
+
}
|
8
|
+
|
9
|
+
const users = [
|
10
|
+
{
|
11
|
+
id: 'walter',
|
12
|
+
display: 'Walter White',
|
13
|
+
},
|
14
|
+
{
|
15
|
+
id: 'jesse',
|
16
|
+
display: 'Jesse Pinkman',
|
17
|
+
},
|
18
|
+
{
|
19
|
+
id: 'gus',
|
20
|
+
display: 'Gustavo "Gus" Fring',
|
21
|
+
},
|
22
|
+
{
|
23
|
+
id: 'saul',
|
24
|
+
display: 'Saul Goodman',
|
25
|
+
},
|
26
|
+
{
|
27
|
+
id: 'hank',
|
28
|
+
display: 'Hank Schrader',
|
29
|
+
},
|
30
|
+
{
|
31
|
+
id: 'skyler',
|
32
|
+
display: 'Skyler White',
|
33
|
+
},
|
34
|
+
{
|
35
|
+
id: 'mike',
|
36
|
+
display: 'Mike Ehrmantraut',
|
37
|
+
},
|
38
|
+
{
|
39
|
+
id: 'lydia',
|
40
|
+
display: 'Lydìã Rôdarté-Qüayle',
|
41
|
+
},
|
42
|
+
]
|
43
|
+
|
44
|
+
export const MentionArea = args => {
|
45
|
+
const [value, setValue] = useState('');
|
46
|
+
|
47
|
+
return (
|
48
|
+
<Mention
|
49
|
+
value={value}
|
50
|
+
handleOnChange={(value) => setValue(value)}
|
51
|
+
users={users}
|
52
|
+
{...args}
|
53
|
+
/>
|
54
|
+
)
|
55
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import PropTypes from "prop-types";
|
3
|
+
import Modal from "react-modal";
|
4
|
+
import styled from "styled-components";
|
5
|
+
|
6
|
+
const ReactModalComponent = ({
|
7
|
+
title,
|
8
|
+
borderColor,
|
9
|
+
boxShadow,
|
10
|
+
backgroundColor,
|
11
|
+
padding,
|
12
|
+
height,
|
13
|
+
width,
|
14
|
+
color,
|
15
|
+
borderRadius,
|
16
|
+
modalIsOpen,
|
17
|
+
closeModal,
|
18
|
+
children,
|
19
|
+
exitModalButton,
|
20
|
+
onOverlayCloseClick
|
21
|
+
}) => {
|
22
|
+
return (
|
23
|
+
<ModalContainer
|
24
|
+
isOpen={modalIsOpen}
|
25
|
+
onRequestClose={closeModal}
|
26
|
+
ariaHideApp={false}
|
27
|
+
contentLabel={title}
|
28
|
+
shouldCloseOnOverlayClick={onOverlayCloseClick === 'true'}
|
29
|
+
borderColor={borderColor}
|
30
|
+
boxShadow={boxShadow}
|
31
|
+
backgroundColor={backgroundColor}
|
32
|
+
padding={padding}
|
33
|
+
height={height}
|
34
|
+
width={width}
|
35
|
+
color={color}
|
36
|
+
borderRadius={borderRadius}
|
37
|
+
>
|
38
|
+
{children}
|
39
|
+
{exitModalButton(closeModal)}
|
40
|
+
</ModalContainer>
|
41
|
+
);
|
42
|
+
};
|
43
|
+
|
44
|
+
const ModalContainer = styled(Modal)`
|
45
|
+
position: absolute;
|
46
|
+
top: 45%;
|
47
|
+
left: 50%;
|
48
|
+
right: auto;
|
49
|
+
bottom: auto;
|
50
|
+
transform: translate(-50%, -50%);
|
51
|
+
background-color: ${({backgroundColor}) => backgroundColor};
|
52
|
+
border-radius: ${({borderRadius}) => borderRadius}px;
|
53
|
+
box-shadow: ${({boxShadow}) => boxShadow};
|
54
|
+
height: ${({height}) => height};
|
55
|
+
width: ${({width}) => width};
|
56
|
+
color: ${({color}) => color};
|
57
|
+
border-color: ${({borderColor}) => borderColor};
|
58
|
+
padding: ${({padding}) => padding}px;
|
59
|
+
`
|
60
|
+
|
61
|
+
ReactModalComponent.propTypes = {
|
62
|
+
title: PropTypes.string,
|
63
|
+
modalIsOpen: PropTypes.bool.isRequired,
|
64
|
+
closeModal: PropTypes.func.isRequired,
|
65
|
+
children: PropTypes.node.isRequired,
|
66
|
+
height: PropTypes.string,
|
67
|
+
width: PropTypes.string
|
68
|
+
};
|
69
|
+
|
70
|
+
ReactModalComponent.defaultProps = {
|
71
|
+
title: "",
|
72
|
+
height: "80vh",
|
73
|
+
width: "50vw",
|
74
|
+
};
|
75
|
+
|
76
|
+
export default ReactModalComponent;
|
@@ -0,0 +1,121 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import PropTypes from 'prop-types';
|
4
|
+
|
5
|
+
import { Formik, Form } from 'formik';
|
6
|
+
import ReusableHeader from '../ReusableHeader/ReusableHeader';
|
7
|
+
import Buttons from '../../Buttons/Buttons/Buttons';
|
8
|
+
|
9
|
+
const ReusableForm = ({ formTitle, sections, initialValues, ...props }) => {
|
10
|
+
|
11
|
+
const submitHandler = (values) => {
|
12
|
+
props.saveHandler(values)
|
13
|
+
}
|
14
|
+
|
15
|
+
const handleCancel = () => {
|
16
|
+
props.cancelHandler();
|
17
|
+
}
|
18
|
+
|
19
|
+
return (
|
20
|
+
<Formik
|
21
|
+
initialValues={initialValues}
|
22
|
+
validationSchema={props.formSchema}
|
23
|
+
onSubmit={values => submitHandler(values)}
|
24
|
+
>
|
25
|
+
<CreateForm {...props}>
|
26
|
+
<ReusableHeader title={formTitle} {...props.headerStyles} />
|
27
|
+
{
|
28
|
+
sections.map(section => (
|
29
|
+
<FormSection key={section.title} {...props}>
|
30
|
+
{
|
31
|
+
!section.hideTitle && section.title &&
|
32
|
+
<ReusableHeader title={section.title} {...props.sectionHeaderStyles} />
|
33
|
+
}
|
34
|
+
|
35
|
+
<FormSectionBody columns={section.bodyColumns} {...props}>
|
36
|
+
{
|
37
|
+
section.body.map(input => (
|
38
|
+
input
|
39
|
+
))
|
40
|
+
}
|
41
|
+
</FormSectionBody>
|
42
|
+
</FormSection>
|
43
|
+
))
|
44
|
+
}
|
45
|
+
{
|
46
|
+
!props.hideFooter
|
47
|
+
&&
|
48
|
+
<FormFooter>
|
49
|
+
<Buttons
|
50
|
+
label={props.saveBtnText}
|
51
|
+
size="md"
|
52
|
+
variant="primary"
|
53
|
+
type="submit"
|
54
|
+
buttonClicked={() => {}}
|
55
|
+
/>
|
56
|
+
{
|
57
|
+
props.cancelBtnText &&
|
58
|
+
<Buttons
|
59
|
+
type="button"
|
60
|
+
label={props.cancelBtnText}
|
61
|
+
size="md"
|
62
|
+
variant="secondary"
|
63
|
+
buttonClicked={handleCancel} />
|
64
|
+
}
|
65
|
+
</FormFooter>}
|
66
|
+
</CreateForm>
|
67
|
+
</Formik>
|
68
|
+
)
|
69
|
+
}
|
70
|
+
|
71
|
+
const CreateForm = styled(Form)`
|
72
|
+
background-color: ${props => props.formBackgroundColor || 'white'};
|
73
|
+
display: flex;
|
74
|
+
flex-direction: column;
|
75
|
+
|
76
|
+
`
|
77
|
+
|
78
|
+
const FormSection = styled.div`
|
79
|
+
padding: ${props => props.sectionPadding}px;
|
80
|
+
`
|
81
|
+
|
82
|
+
const FormSectionBody = styled.div`
|
83
|
+
display: grid;
|
84
|
+
grid-template-columns: ${({ columns }) => `repeat(${columns}, 1fr)` || 1};
|
85
|
+
padding: ${props => props.bodyPadding}px;
|
86
|
+
row-gap: ${props => props.bodyRowGap}px;
|
87
|
+
column-gap: ${props => props.bodyColumnGap}px;
|
88
|
+
`
|
89
|
+
|
90
|
+
const FormFooter = styled.div`
|
91
|
+
display: flex;
|
92
|
+
justify-content: center;
|
93
|
+
gap: 10px;
|
94
|
+
`
|
95
|
+
|
96
|
+
const Button = styled.button`
|
97
|
+
|
98
|
+
`
|
99
|
+
|
100
|
+
ReusableForm.defaultProps = {};
|
101
|
+
|
102
|
+
ReusableForm.propTypes = {
|
103
|
+
formTitle: PropTypes.string,
|
104
|
+
sections: PropTypes.array.isRequired,
|
105
|
+
initialValues: PropTypes.object.isRequired,
|
106
|
+
sectionPadding: PropTypes.number,
|
107
|
+
validationSchema: PropTypes.object,
|
108
|
+
headerStyles: PropTypes.object,
|
109
|
+
sectionHeaderStyles: PropTypes.object,
|
110
|
+
saveBtnText: PropTypes.string,
|
111
|
+
cancelBtnText: PropTypes.string,
|
112
|
+
hideFooter: PropTypes.bool,
|
113
|
+
formBackgroundColor: PropTypes.string,
|
114
|
+
bodyPadding: PropTypes.number,
|
115
|
+
bodyRowGap: PropTypes.number,
|
116
|
+
bodyColumnGap: PropTypes.number,
|
117
|
+
saveBtnHandler: PropTypes.func,
|
118
|
+
cancelHandler: PropTypes.func
|
119
|
+
}
|
120
|
+
|
121
|
+
export default ReusableForm
|
@@ -0,0 +1,167 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import withFormik from "storybook-formik";
|
3
|
+
import * as Yup from 'yup';
|
4
|
+
|
5
|
+
import ReusableForm from './ReusableForm';
|
6
|
+
import TextField from '../../Common Inputs/TextField/TextField';
|
7
|
+
import CustomDropZone from '../../Common Inputs/CustomDropzone/CustomDropZone';
|
8
|
+
import CustomTextarea from '../../Common Inputs/CustomTextarea/CustomTextarea';
|
9
|
+
import CheckboxGroup from '../../Common Inputs/CheckboxGroup/CheckboxGroup';
|
10
|
+
import CustomAutoComplete from '../../Common Inputs/CustomAutoComplete/CustomAutoComplete';
|
11
|
+
import CustomSelect from '../../Common Inputs/CustomSelect/CustomSelect';
|
12
|
+
import DatePicker from '../../Common Inputs/DatePicker/DatePicker';
|
13
|
+
|
14
|
+
const submitHandler = (values) => {
|
15
|
+
console.log(values)
|
16
|
+
}
|
17
|
+
|
18
|
+
const cancelHandler = () => {
|
19
|
+
console.log('cancel')
|
20
|
+
}
|
21
|
+
|
22
|
+
const sections = [
|
23
|
+
{
|
24
|
+
title: "Server Name",
|
25
|
+
body: [(<TextField label="Server Name" name="userName" />)]
|
26
|
+
},
|
27
|
+
{
|
28
|
+
title: "User Name",
|
29
|
+
body: [
|
30
|
+
(<TextField label="User Name" name="firstName" />),
|
31
|
+
(<TextField label="Last Name" name="lastName" />),
|
32
|
+
],
|
33
|
+
bodyColumns: 2
|
34
|
+
},
|
35
|
+
{
|
36
|
+
title: 'More inputs',
|
37
|
+
body: [
|
38
|
+
(<TextField label="Input one" name="input1" />),
|
39
|
+
(<TextField label="Input two" name="input2" />),
|
40
|
+
],
|
41
|
+
hideTitle: true
|
42
|
+
},
|
43
|
+
{
|
44
|
+
title: "Server history",
|
45
|
+
body: [
|
46
|
+
(<TextField label="Age" name="age" />),
|
47
|
+
(<TextField label="Hobby" name="hobby" />),
|
48
|
+
(<CustomTextarea label="Discription" name="discription" />),
|
49
|
+
(<CheckboxGroup label="Checkbox Group" name="acceptTerms" options={[
|
50
|
+
{ label: 'option 1', value: '1' },
|
51
|
+
{ label: 'option 2', value: '2' },
|
52
|
+
{ label: 'option 3', value: '3' },
|
53
|
+
]} />),
|
54
|
+
(<CustomAutoComplete
|
55
|
+
name="search"
|
56
|
+
label="Search"
|
57
|
+
items={[
|
58
|
+
{ id: 'foo', label: 'foo' },
|
59
|
+
{ id: 'bar', label: 'bar' },
|
60
|
+
{ id: 'baz', label: 'baz' },
|
61
|
+
]}
|
62
|
+
/>),
|
63
|
+
(
|
64
|
+
<CustomSelect label="options" options={[
|
65
|
+
{ label: 'select an option', value: '' },
|
66
|
+
{ label: 'option 1', value: '1' },
|
67
|
+
{ label: 'option 2', value: '2' },
|
68
|
+
{ label: 'option 3', value: '3' },
|
69
|
+
]} name="select" />
|
70
|
+
)
|
71
|
+
]
|
72
|
+
},
|
73
|
+
{
|
74
|
+
title: "User Media",
|
75
|
+
body: [
|
76
|
+
(<CustomDropZone label="User Profile" name="file" />),
|
77
|
+
(<DatePicker label="Date Range" name='date' />)
|
78
|
+
],
|
79
|
+
},
|
80
|
+
]
|
81
|
+
|
82
|
+
const initialValues = {
|
83
|
+
userName: '',
|
84
|
+
firstName: '',
|
85
|
+
lastName: '',
|
86
|
+
input1: '',
|
87
|
+
input2: '',
|
88
|
+
age: '',
|
89
|
+
hobby: '',
|
90
|
+
discription: '',
|
91
|
+
acceptTerms: [],
|
92
|
+
search: '',
|
93
|
+
select: '',
|
94
|
+
file: '',
|
95
|
+
date: {
|
96
|
+
startDate: null,
|
97
|
+
endDate: null
|
98
|
+
}
|
99
|
+
|
100
|
+
}
|
101
|
+
const formSchema = Yup.object().shape({
|
102
|
+
userName: Yup.string()
|
103
|
+
.required("Required"),
|
104
|
+
firstName: Yup.string()
|
105
|
+
.required("Required"),
|
106
|
+
lastName: Yup.string()
|
107
|
+
.required("Required"),
|
108
|
+
age: Yup.string()
|
109
|
+
.required("Required"),
|
110
|
+
hobby: Yup.string()
|
111
|
+
.required("Required"),
|
112
|
+
discription: Yup.string()
|
113
|
+
.required('Required'),
|
114
|
+
acceptTerms: Yup.array()
|
115
|
+
.min(1, 'You must choose at least one element'),
|
116
|
+
search: Yup.string()
|
117
|
+
.required("Required"),
|
118
|
+
select: Yup.string()
|
119
|
+
.required("Required"),
|
120
|
+
date: Yup.object().shape({
|
121
|
+
startDate: Yup.object()
|
122
|
+
.required("Required")
|
123
|
+
.typeError('Invalid Start Date'),
|
124
|
+
endDate: Yup.object()
|
125
|
+
.required("Required")
|
126
|
+
.typeError('Invalid End Date')
|
127
|
+
})
|
128
|
+
});
|
129
|
+
|
130
|
+
export default {
|
131
|
+
title: 'Reusable Components/Reusable Formik Form',
|
132
|
+
component: ReusableForm,
|
133
|
+
// decorators: [withFormik],
|
134
|
+
// parameters: {
|
135
|
+
// formik: {
|
136
|
+
// initialValues,
|
137
|
+
// validationSchema: formSchema,
|
138
|
+
// onSubmit: submitHandler
|
139
|
+
// },
|
140
|
+
// }
|
141
|
+
}
|
142
|
+
|
143
|
+
export const form = args => (
|
144
|
+
<ReusableForm
|
145
|
+
formTitle="Reusable form"
|
146
|
+
initialValues={initialValues}
|
147
|
+
formSchema={formSchema}
|
148
|
+
sections={sections}
|
149
|
+
headerStyles={{
|
150
|
+
padding: 10,
|
151
|
+
headerBackground: 'black',
|
152
|
+
titleColor: '#ffff',
|
153
|
+
}}
|
154
|
+
sectionHeaderStyles={{
|
155
|
+
padding: 6,
|
156
|
+
headerBackground: '#FE1744',
|
157
|
+
titleColor: '#ffff',
|
158
|
+
}}
|
159
|
+
bodyPadding={10}
|
160
|
+
saveBtnText="Save"
|
161
|
+
cancelBtnText="Cancel"
|
162
|
+
saveBtnHandle={submitHandler}
|
163
|
+
cancelHandler={cancelHandler}
|
164
|
+
bodyRowGap={20}
|
165
|
+
bodyColumnGap={10}
|
166
|
+
{...args} />
|
167
|
+
)
|