@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,76 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
|
4
|
+
import PropTypes from 'prop-types';
|
5
|
+
|
6
|
+
import Controls from '../Controls/Controls';
|
7
|
+
|
8
|
+
const ReusableHeader = ({ title, discription, controls, ...props }) => {
|
9
|
+
|
10
|
+
const iconCliked = (action) => {
|
11
|
+
props.iconClicked(action)
|
12
|
+
}
|
13
|
+
|
14
|
+
return (
|
15
|
+
<Container {...props}>
|
16
|
+
<Title {...props}>{title}</Title>
|
17
|
+
<Discription {...props}>{discription}</Discription>
|
18
|
+
{
|
19
|
+
controls
|
20
|
+
&&
|
21
|
+
<Controls
|
22
|
+
controls={controls}
|
23
|
+
onIconClicked={iconCliked}
|
24
|
+
{...props.controlsStyles} />
|
25
|
+
}
|
26
|
+
</Container>
|
27
|
+
)
|
28
|
+
}
|
29
|
+
|
30
|
+
const Container = styled.div`
|
31
|
+
font-family: sans-serif;
|
32
|
+
display: flex;
|
33
|
+
background-color: ${props => props.headerBackground || 'white'};
|
34
|
+
padding: ${props => props.padding || 0}px !important;
|
35
|
+
display: flex;
|
36
|
+
align-items: center;
|
37
|
+
justify-content: space-between;
|
38
|
+
> * {
|
39
|
+
margin: 0;
|
40
|
+
padding: 0;
|
41
|
+
}
|
42
|
+
|
43
|
+
`
|
44
|
+
|
45
|
+
const Title = styled.h3`
|
46
|
+
color: ${props => props.titleColor};
|
47
|
+
font-size: ${props => props.titleFontSize}px;
|
48
|
+
font-weight: ${props => props.titleFontWeight || 400};
|
49
|
+
`
|
50
|
+
|
51
|
+
const Discription = styled.p`
|
52
|
+
color: ${props => props.DiscriptionColor};
|
53
|
+
font-size: ${props => props.DiscriptionFontSize}px;
|
54
|
+
font-weight: ${props => props.DiscriptionFontWeight};
|
55
|
+
`
|
56
|
+
|
57
|
+
ReusableHeader.defaultProps = {};
|
58
|
+
|
59
|
+
ReusableHeader.propTypes = {
|
60
|
+
title: PropTypes.string,
|
61
|
+
discription: PropTypes.string,
|
62
|
+
controls: PropTypes.array,
|
63
|
+
controlsStyles: PropTypes.object,
|
64
|
+
headerBackground: PropTypes.string,
|
65
|
+
padding: PropTypes.number,
|
66
|
+
horizontalPadding: PropTypes.number,
|
67
|
+
headerMarginBottom: PropTypes.number,
|
68
|
+
titleColor: PropTypes.string,
|
69
|
+
titleFontSize: PropTypes.number,
|
70
|
+
titleFontWeight: PropTypes.number,
|
71
|
+
DiscriptionColor: PropTypes.string,
|
72
|
+
DiscriptionFontSize: PropTypes.number,
|
73
|
+
DiscriptionFontWeight: PropTypes.number
|
74
|
+
}
|
75
|
+
|
76
|
+
export default ReusableHeader
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import ReusableHeader from './ReusableHeader';
|
4
|
+
import { controls } from '../fakeData'
|
5
|
+
|
6
|
+
export default {
|
7
|
+
title: 'Reusable Components/Reusable Header',
|
8
|
+
component: ReusableHeader
|
9
|
+
}
|
10
|
+
|
11
|
+
const Template = (args) => (<ReusableHeader {...args} />
|
12
|
+
);
|
13
|
+
|
14
|
+
export const Header = Template.bind({});
|
15
|
+
Header.args = {
|
16
|
+
title: "Reusable Header",
|
17
|
+
discription: "This is a discription for header",
|
18
|
+
controls: controls,
|
19
|
+
controlsStyles: {
|
20
|
+
iconColor: 'red'
|
21
|
+
}
|
22
|
+
};
|
@@ -0,0 +1,103 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import PropTypes from "prop-types";
|
4
|
+
|
5
|
+
import { getCardStyle } from '../../helpers/util';
|
6
|
+
|
7
|
+
import CardStyle3 from '../Cards/Card-style-3/CardStyle3';
|
8
|
+
import ReusableHeader from '../ReusableHeader/ReusableHeader';
|
9
|
+
|
10
|
+
const ReusableList = ({ 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 {
|
34
|
+
child = data.map(section => (
|
35
|
+
<Section priority={section.priority}>
|
36
|
+
<CardStyle3 title={section.title} {...props.sectionHeaderStyles} />
|
37
|
+
<SectionBody>
|
38
|
+
{mapOverCardsData(section.data)}
|
39
|
+
</SectionBody>
|
40
|
+
</Section>
|
41
|
+
))
|
42
|
+
}
|
43
|
+
|
44
|
+
|
45
|
+
return (
|
46
|
+
<List {...props}>
|
47
|
+
{!props.hideTitle && <ReusableHeader
|
48
|
+
title={props.listTitle}
|
49
|
+
controls={props.listControls}
|
50
|
+
iconClicked={iconCliked}
|
51
|
+
{...props.headerStyles}
|
52
|
+
/>}
|
53
|
+
<ListBody {...props}>
|
54
|
+
{child}
|
55
|
+
</ListBody>
|
56
|
+
</List>
|
57
|
+
)
|
58
|
+
}
|
59
|
+
|
60
|
+
const List = styled.ul`
|
61
|
+
display: flex;
|
62
|
+
flex-direction: column;
|
63
|
+
font-family: sans-serif;
|
64
|
+
width: ${props => props.listWidth + 'px' || '100%'};
|
65
|
+
padding: 0;
|
66
|
+
> * {
|
67
|
+
padding: 0;
|
68
|
+
margin: 0;
|
69
|
+
}
|
70
|
+
`
|
71
|
+
|
72
|
+
const ListBody = styled.div`
|
73
|
+
display: flex;
|
74
|
+
flex-direction: column;
|
75
|
+
gap: ${props => props.listRowGap}px;
|
76
|
+
`
|
77
|
+
|
78
|
+
const Section = styled.div`
|
79
|
+
order: ${({ priority }) => priority};
|
80
|
+
`
|
81
|
+
|
82
|
+
const SectionBody = styled.div`
|
83
|
+
display: flex;
|
84
|
+
flex-direction: column;
|
85
|
+
`
|
86
|
+
|
87
|
+
|
88
|
+
ReusableList.defaultProps = {}
|
89
|
+
|
90
|
+
ReusableList.propTypes = {
|
91
|
+
data: PropTypes.array.isRequired,
|
92
|
+
cardStyle: PropTypes.string.isRequired,
|
93
|
+
type: PropTypes.oneOf(['flat', 'sectioned']),
|
94
|
+
listControls: PropTypes.array,
|
95
|
+
controlsStyles: PropTypes.object,
|
96
|
+
cardControls: PropTypes.array,
|
97
|
+
customCardStyles: PropTypes.object,
|
98
|
+
listRowGap: PropTypes.number,
|
99
|
+
listTitle: PropTypes.string,
|
100
|
+
hideTitle: PropTypes.bool
|
101
|
+
};
|
102
|
+
|
103
|
+
export default ReusableList
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
// Components
|
3
|
+
import ReusableList from './ReusableList';
|
4
|
+
// Data
|
5
|
+
import { controls, data, dataWithSections, cardControls } from '../fakeData';
|
6
|
+
export default {
|
7
|
+
title: 'Reusable components/List',
|
8
|
+
component: ReusableList
|
9
|
+
}
|
10
|
+
|
11
|
+
const Template = (args) => (<ReusableList
|
12
|
+
listTitle='Reusable List'
|
13
|
+
cardStyle="card-style-1"
|
14
|
+
{...args} />
|
15
|
+
);
|
16
|
+
|
17
|
+
export const ListFlat = Template.bind({});
|
18
|
+
ListFlat.args = {
|
19
|
+
data: data,
|
20
|
+
type: "flat",
|
21
|
+
cardControls,
|
22
|
+
headerStyles: {
|
23
|
+
padding: 10,
|
24
|
+
headerBackground: '#FE1744',
|
25
|
+
titleColor: '#ffff',
|
26
|
+
controlsStyles: {
|
27
|
+
dropdownBackground: 'black',
|
28
|
+
dropdownFontColor: 'white',
|
29
|
+
dropdownItemHoverColor: '#FE1744'
|
30
|
+
},
|
31
|
+
},
|
32
|
+
listControls: controls,
|
33
|
+
customCardStyles: {
|
34
|
+
controlsStyles: {
|
35
|
+
iconColor: 'black',
|
36
|
+
showOnHover: true
|
37
|
+
}
|
38
|
+
},
|
39
|
+
hideTitle: false
|
40
|
+
};
|
41
|
+
|
42
|
+
export const ListSectioned = Template.bind({});
|
43
|
+
ListSectioned.args = {
|
44
|
+
data: dataWithSections,
|
45
|
+
type: "sectioned",
|
46
|
+
sectionHeaderStyles: {
|
47
|
+
cardTitleColor: 'white',
|
48
|
+
cardBackgroundColor: 'black',
|
49
|
+
cardPadding: 10
|
50
|
+
},
|
51
|
+
cardControls,
|
52
|
+
headerStyles: {
|
53
|
+
padding: 10,
|
54
|
+
headerBackground: '#FE1744',
|
55
|
+
titleColor: '#ffff',
|
56
|
+
controlsStyles: {
|
57
|
+
dropdownBackground: 'black',
|
58
|
+
dropdownFontColor: 'white',
|
59
|
+
dropdownItemHoverColor: '#FE1744'
|
60
|
+
},
|
61
|
+
},
|
62
|
+
listControls: controls,
|
63
|
+
customCardStyles: {
|
64
|
+
controlsStyles: {
|
65
|
+
iconColor: 'black',
|
66
|
+
showOnHover: true
|
67
|
+
|
68
|
+
}
|
69
|
+
},
|
70
|
+
}
|
@@ -0,0 +1,89 @@
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
|
4
|
+
const SearchCard = ({ list=[], item='' }) => {
|
5
|
+
const [filteredList, setFilteredList] = useState([]);
|
6
|
+
|
7
|
+
const getFilteredList = (item) => {
|
8
|
+
const a = list.filter((l) => {
|
9
|
+
if (l.name.indexOf(item) !== -1) return l;
|
10
|
+
});
|
11
|
+
console.log('item:', item, 'filtered array:', a);
|
12
|
+
setFilteredList(a);
|
13
|
+
};
|
14
|
+
useEffect(() => {
|
15
|
+
if (item.length > 0) getFilteredList(item);
|
16
|
+
else setFilteredList([]);
|
17
|
+
}, [item]);
|
18
|
+
return (
|
19
|
+
<PresetDivContainer>
|
20
|
+
{filteredList.length > 0 &&
|
21
|
+
filteredList.map((t, index) => (
|
22
|
+
<PresetDiv
|
23
|
+
key={index}
|
24
|
+
onClick={() => {
|
25
|
+
const a = filteredList.filter((the, i) => {
|
26
|
+
if (i === index) {
|
27
|
+
the.selected = !the.selected;
|
28
|
+
return the;
|
29
|
+
} else {
|
30
|
+
the.selected = false;
|
31
|
+
return the;
|
32
|
+
}
|
33
|
+
});
|
34
|
+
setFilteredList(a);
|
35
|
+
}}
|
36
|
+
selected={t.selected}
|
37
|
+
>
|
38
|
+
<CardImage src='https://cdn.pixabay.com/photo/2014/11/30/14/11/cat-551554__340.jpg' />
|
39
|
+
<CardTitle>{t.name}</CardTitle>
|
40
|
+
<CardDescription>{t.name}</CardDescription>
|
41
|
+
</PresetDiv>
|
42
|
+
))}
|
43
|
+
</PresetDivContainer>
|
44
|
+
);
|
45
|
+
};
|
46
|
+
|
47
|
+
const PresetDivContainer = styled.div`
|
48
|
+
display: flex;
|
49
|
+
width: 100%;
|
50
|
+
/* justify-content: center; */
|
51
|
+
margin-bottom: 2%;
|
52
|
+
/* margin-left: 2%; */
|
53
|
+
`;
|
54
|
+
const PresetDiv = styled.div`
|
55
|
+
margin-right: 2%;
|
56
|
+
width: 30%;
|
57
|
+
display: flex;
|
58
|
+
flex-direction: column;
|
59
|
+
/* flex: 1; */
|
60
|
+
border: 1px solid white;
|
61
|
+
|
62
|
+
background: ${(props) => (props.selected ? '#ccc' : 'white')};
|
63
|
+
:hover {
|
64
|
+
opacity: 0.8;
|
65
|
+
}
|
66
|
+
`;
|
67
|
+
const CardImage = styled.img`
|
68
|
+
height: 70%;
|
69
|
+
width: 100%;
|
70
|
+
:hover {
|
71
|
+
opacity: 0.8;
|
72
|
+
}
|
73
|
+
`;
|
74
|
+
|
75
|
+
const CardTitle = styled.label`
|
76
|
+
font-size: 18px;
|
77
|
+
font-weight: 400;
|
78
|
+
margin-top: 1%;
|
79
|
+
margin-left: 2%;
|
80
|
+
`;
|
81
|
+
|
82
|
+
const CardDescription = styled.label`
|
83
|
+
font-size: 14px;
|
84
|
+
font-weight: 200;
|
85
|
+
margin-top: 1%;
|
86
|
+
margin-left: 2%;
|
87
|
+
`;
|
88
|
+
|
89
|
+
export default SearchCard;
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import PropTypes from "prop-types";
|
4
|
+
|
5
|
+
import ReusableHeader from '../ReusableHeader/ReusableHeader';
|
6
|
+
|
7
|
+
const SpaceContainer = ({ title, discription, controls, ...props }) => {
|
8
|
+
const iconClicked = (action) => {
|
9
|
+
console.log(action)
|
10
|
+
}
|
11
|
+
|
12
|
+
return (
|
13
|
+
<Container>
|
14
|
+
{!props.hideTitle && <ReusableHeader
|
15
|
+
title={title}
|
16
|
+
discription={discription}
|
17
|
+
controls={controls}
|
18
|
+
iconClicked={iconClicked}
|
19
|
+
{...props.headerStyles}
|
20
|
+
/>}
|
21
|
+
<Body>
|
22
|
+
{props.children}
|
23
|
+
</Body>
|
24
|
+
</Container>
|
25
|
+
)
|
26
|
+
}
|
27
|
+
|
28
|
+
const Container = styled.div`
|
29
|
+
width: 100%;
|
30
|
+
font-family: sans-serif;
|
31
|
+
padding: 0;
|
32
|
+
`
|
33
|
+
|
34
|
+
const Body = styled.div`
|
35
|
+
display: flex;
|
36
|
+
justify-content: center;
|
37
|
+
`
|
38
|
+
|
39
|
+
SpaceContainer.defaultProps = {};
|
40
|
+
|
41
|
+
SpaceContainer.propTypes = {
|
42
|
+
title: PropTypes.string,
|
43
|
+
discription: PropTypes.string,
|
44
|
+
controls: PropTypes.array,
|
45
|
+
headerStyles: PropTypes.object
|
46
|
+
}
|
47
|
+
|
48
|
+
export default SpaceContainer
|
@@ -0,0 +1,78 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import SpaceContainer from './SpaceContainer';
|
4
|
+
import EditorComponent from '../../Common Inputs/EditorComponent/EditorComponent'
|
5
|
+
|
6
|
+
import { cardControls, controls } from '../fakeData';
|
7
|
+
|
8
|
+
|
9
|
+
const data = {
|
10
|
+
blocks: [
|
11
|
+
{
|
12
|
+
type: "header",
|
13
|
+
data: {
|
14
|
+
text: "Editor.js",
|
15
|
+
level: 1
|
16
|
+
}
|
17
|
+
},
|
18
|
+
{
|
19
|
+
type: "paragraph",
|
20
|
+
data: {
|
21
|
+
text:
|
22
|
+
"Hey. Meet the new Editor. On this page you can see it in action — try to edit this text."
|
23
|
+
}
|
24
|
+
},
|
25
|
+
{
|
26
|
+
type: 'image',
|
27
|
+
"data": {
|
28
|
+
"file": {
|
29
|
+
"url": "https://i.ytimg.com/vi/MPV2METPeJU/maxresdefault.jpg"
|
30
|
+
},
|
31
|
+
"caption": "Caption Example",
|
32
|
+
"withBorder": false,
|
33
|
+
"withBackground": false,
|
34
|
+
"stretched": false
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"type": "paragraph",
|
39
|
+
"data": {
|
40
|
+
"text": "Create a directory for your module, enter it and run <mark class=\"cdx-marker\">npm init</mark> command."
|
41
|
+
}
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"type": "table",
|
45
|
+
"data": {
|
46
|
+
"withHeadings": true,
|
47
|
+
"content": [["Kine", "Pigs", "Chicken"], ["1 pcs", "3 pcs", "12 pcs"], ["100$", "200$", "150$"]]
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
]
|
52
|
+
};
|
53
|
+
|
54
|
+
export default {
|
55
|
+
title: 'Reusable Components/Space Container',
|
56
|
+
component: SpaceContainer
|
57
|
+
}
|
58
|
+
|
59
|
+
const Template = (args) => (
|
60
|
+
<SpaceContainer {...args}>
|
61
|
+
<EditorComponent data={data} />
|
62
|
+
</SpaceContainer>
|
63
|
+
);
|
64
|
+
|
65
|
+
export const EditorSpace = Template.bind({});
|
66
|
+
EditorSpace.args = {
|
67
|
+
title: "Space Title",
|
68
|
+
discription: "Lorem ipsum dolor sit amet consectetur.",
|
69
|
+
controls: cardControls,
|
70
|
+
headerStyles: {
|
71
|
+
padding: 10,
|
72
|
+
headerBackground: '#FE1744',
|
73
|
+
titleColor: '#ffff',
|
74
|
+
controlsStyles: {
|
75
|
+
iconsGap: 5
|
76
|
+
},
|
77
|
+
},
|
78
|
+
};
|
@@ -0,0 +1,82 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import styled from 'styled-components';
|
4
|
+
|
5
|
+
import PropTypes from "prop-types";
|
6
|
+
|
7
|
+
const Spinner = (props) => {
|
8
|
+
return (
|
9
|
+
<Loader {...props}>
|
10
|
+
Loading...
|
11
|
+
</Loader>
|
12
|
+
)
|
13
|
+
}
|
14
|
+
|
15
|
+
const Loader = styled.div`
|
16
|
+
&,
|
17
|
+
&:before,
|
18
|
+
&:after {
|
19
|
+
border-radius: 50%;
|
20
|
+
width: 2.5em;
|
21
|
+
height: 2.5em;
|
22
|
+
-webkit-animation-fill-mode: both;
|
23
|
+
animation-fill-mode: both;
|
24
|
+
-webkit-animation: load7 1.8s infinite ease-in-out;
|
25
|
+
animation: load7 1.8s infinite ease-in-out;
|
26
|
+
}
|
27
|
+
& {
|
28
|
+
color: ${props => props.color || 'white'};
|
29
|
+
font-size: 10px;
|
30
|
+
margin: 80px auto;
|
31
|
+
position: relative;
|
32
|
+
text-indent: -9999em;
|
33
|
+
-webkit-transform: translateZ(0);
|
34
|
+
-ms-transform: translateZ(0);
|
35
|
+
transform: translateZ(0);
|
36
|
+
-webkit-animation-delay: -0.16s;
|
37
|
+
animation-delay: -0.16s;
|
38
|
+
}
|
39
|
+
&:before,
|
40
|
+
&:after {
|
41
|
+
content: '';
|
42
|
+
position: absolute;
|
43
|
+
top: 0;
|
44
|
+
}
|
45
|
+
&:before {
|
46
|
+
left: -3.5em;
|
47
|
+
-webkit-animation-delay: -0.32s;
|
48
|
+
animation-delay: -0.32s;
|
49
|
+
}
|
50
|
+
&:after {
|
51
|
+
left: 3.5em;
|
52
|
+
}
|
53
|
+
@-webkit-keyframes load7 {
|
54
|
+
0%,
|
55
|
+
80%,
|
56
|
+
100% {
|
57
|
+
box-shadow: 0 2.5em 0 -1.3em;
|
58
|
+
}
|
59
|
+
40% {
|
60
|
+
box-shadow: 0 2.5em 0 0;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
@keyframes load7 {
|
64
|
+
0%,
|
65
|
+
80%,
|
66
|
+
100% {
|
67
|
+
box-shadow: 0 2.5em 0 -1.3em;
|
68
|
+
}
|
69
|
+
40% {
|
70
|
+
box-shadow: 0 2.5em 0 0;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
`
|
74
|
+
|
75
|
+
Spinner.defaultProps = {};
|
76
|
+
|
77
|
+
Spinner.propTypes = {
|
78
|
+
color: PropTypes.string
|
79
|
+
};
|
80
|
+
|
81
|
+
|
82
|
+
export default Spinner;
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import PropTypes from "prop-types";
|
4
|
+
|
5
|
+
import { getWidgetType } from '../../helpers/util';
|
6
|
+
import ReusableHeader from '../ReusableHeader/ReusableHeader';
|
7
|
+
|
8
|
+
const WidgetContainer = ({
|
9
|
+
widgetTitle,
|
10
|
+
widgetType,
|
11
|
+
widgetControls,
|
12
|
+
widgetProps,
|
13
|
+
...props
|
14
|
+
}) => {
|
15
|
+
|
16
|
+
const child = getWidgetType(widgetType, widgetProps)
|
17
|
+
|
18
|
+
const iconCliked = (action) => {
|
19
|
+
console.log(action)
|
20
|
+
}
|
21
|
+
|
22
|
+
return (
|
23
|
+
<Container>
|
24
|
+
{widgetTitle &&
|
25
|
+
<ReusableHeader
|
26
|
+
title={widgetTitle}
|
27
|
+
controls={widgetControls}
|
28
|
+
iconClicked={iconCliked}
|
29
|
+
{...props.headerStyles}
|
30
|
+
/>
|
31
|
+
}
|
32
|
+
<Body>
|
33
|
+
{child}
|
34
|
+
</Body>
|
35
|
+
</Container>
|
36
|
+
)
|
37
|
+
}
|
38
|
+
|
39
|
+
const Container = styled.div`
|
40
|
+
display: flex;
|
41
|
+
flex-direction: column;
|
42
|
+
`
|
43
|
+
|
44
|
+
const Body = styled.div`
|
45
|
+
margin: 0;
|
46
|
+
padding: 0;
|
47
|
+
`
|
48
|
+
|
49
|
+
WidgetContainer.defaultProps = {}
|
50
|
+
|
51
|
+
WidgetContainer.propTypes = {
|
52
|
+
widgetType: PropTypes.oneOf(['list', 'music player', 'logo']).isRequired,
|
53
|
+
widgetTitle: PropTypes.string,
|
54
|
+
widgetControls: PropTypes.array,
|
55
|
+
widgetProps: PropTypes.object,
|
56
|
+
headerStyles: PropTypes.object
|
57
|
+
};
|
58
|
+
|
59
|
+
export default WidgetContainer
|