@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,57 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import styled, { css } from 'styled-components'
|
3
|
+
import PropTypes from 'prop-types'
|
4
|
+
|
5
|
+
const Buttons = ({ variant, size, label, type, ...props }) => {
|
6
|
+
return (
|
7
|
+
<StyledButton onClick={() => props.buttonClicked()} variant={variant} size={size} type={type}>
|
8
|
+
{ label }
|
9
|
+
</StyledButton>
|
10
|
+
)
|
11
|
+
}
|
12
|
+
|
13
|
+
const StyledButton = styled.button.attrs(props => ({
|
14
|
+
type: props.type
|
15
|
+
}))`
|
16
|
+
font-family: Helvetica, Arial, sans-serif;
|
17
|
+
font-weight: 400;
|
18
|
+
letter-spacing: .1cm;
|
19
|
+
border: 0;
|
20
|
+
cursor: pointer;
|
21
|
+
display: inline-block;
|
22
|
+
line-height: 1;
|
23
|
+
color: #fff;
|
24
|
+
${props => props.variant === 'primary' && css`
|
25
|
+
background-color: #2e2e2e;
|
26
|
+
&:hover{
|
27
|
+
background-color: #5e5e5e;
|
28
|
+
}
|
29
|
+
`}
|
30
|
+
${props => props.variant === 'secondary' && css`
|
31
|
+
background-color: #888;
|
32
|
+
&:hover{
|
33
|
+
background-color: #555;
|
34
|
+
}
|
35
|
+
`}
|
36
|
+
${props => props.size === 'sm' && css`
|
37
|
+
padding: 10px 16px;
|
38
|
+
font-size: 12px;
|
39
|
+
`}
|
40
|
+
${props => props.size === 'md' && css`
|
41
|
+
padding: 11px 20px;
|
42
|
+
font-size: 14px;
|
43
|
+
`}
|
44
|
+
|
45
|
+
${props => props.size === 'lg' && css`
|
46
|
+
padding: 12px 3rem;
|
47
|
+
font-size: 16px;
|
48
|
+
`}
|
49
|
+
`
|
50
|
+
|
51
|
+
Buttons.propTypes = {
|
52
|
+
variant: PropTypes.oneOf(['primary', 'secondary']),
|
53
|
+
label: PropTypes.string,
|
54
|
+
size: PropTypes.oneOf(['sm', 'md', 'lg'])
|
55
|
+
}
|
56
|
+
|
57
|
+
export default Buttons
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import Button from './Buttons'
|
3
|
+
|
4
|
+
export default {
|
5
|
+
title: 'Buttons/Primary',
|
6
|
+
component: Button,
|
7
|
+
}
|
8
|
+
|
9
|
+
const Template = (args) => <Button {...args} />
|
10
|
+
|
11
|
+
export const Primary = Template.bind({});
|
12
|
+
Primary.args = {
|
13
|
+
variant: 'primary',
|
14
|
+
label: 'Submit',
|
15
|
+
size: 'md',
|
16
|
+
type: 'submit'
|
17
|
+
}
|
18
|
+
export const Secondary = Template.bind({});
|
19
|
+
Secondary.args = {
|
20
|
+
variant: 'secondary',
|
21
|
+
label: 'Submit',
|
22
|
+
size: 'md',
|
23
|
+
type: 'submit'
|
24
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import React, { useState } from "react";
|
2
|
+
import ReactModal from "../../Reusable Components/ReactModal/ReactModal";
|
3
|
+
import PropTypes from "prop-types";
|
4
|
+
import styled from "styled-components";
|
5
|
+
|
6
|
+
const ReactModalIndex = ({
|
7
|
+
closeButtonPosition,
|
8
|
+
borderColor,
|
9
|
+
boxShadow,
|
10
|
+
backgroundColor,
|
11
|
+
onOverlayCloseClick,
|
12
|
+
borderRadius,
|
13
|
+
padding,
|
14
|
+
height,
|
15
|
+
width,
|
16
|
+
color,
|
17
|
+
children,
|
18
|
+
modalBtnOpenText,
|
19
|
+
modalBtnCloseText,
|
20
|
+
modalContent}
|
21
|
+
, ...props) => {
|
22
|
+
const [modalIsOpen, setIsOpen] = useState(false);
|
23
|
+
|
24
|
+
const toggleModal = () => {
|
25
|
+
setIsOpen((prevState) => !prevState);
|
26
|
+
};
|
27
|
+
|
28
|
+
|
29
|
+
return (
|
30
|
+
<div>
|
31
|
+
<button onClick={toggleModal}>{modalBtnOpenText}</button>
|
32
|
+
<ReactModal
|
33
|
+
onOverlayCloseClick={onOverlayCloseClick}
|
34
|
+
modalIsOpen={modalIsOpen}
|
35
|
+
closeModal={toggleModal}
|
36
|
+
borderColor={borderColor}
|
37
|
+
boxShadow={boxShadow}
|
38
|
+
backgroundColor={backgroundColor}
|
39
|
+
padding={padding}
|
40
|
+
height={height}
|
41
|
+
width={width}
|
42
|
+
color={color}
|
43
|
+
borderRadius={borderRadius}
|
44
|
+
exitModalButton = {(e)=> <Container position={closeButtonPosition} onClick={e}>{modalBtnCloseText}</Container>}
|
45
|
+
>
|
46
|
+
{modalContent}
|
47
|
+
</ReactModal>
|
48
|
+
</div>
|
49
|
+
);
|
50
|
+
};
|
51
|
+
|
52
|
+
const Container = styled.button`
|
53
|
+
${({position})=> position === 'TopRight' &&
|
54
|
+
"position: absolute; right: 0; top: 0;"
|
55
|
+
}
|
56
|
+
${({position})=> position === 'TopLeft' && "position: absolute; left: 0; top: 0;"}
|
57
|
+
${({position})=> position === 'BottomRight' && "float: right"}
|
58
|
+
`
|
59
|
+
|
60
|
+
ReactModalIndex.propTypes = {
|
61
|
+
borderColor: PropTypes.string,
|
62
|
+
boxShadow: PropTypes.string,
|
63
|
+
backgroundColor: PropTypes.string,
|
64
|
+
borderRadius: PropTypes.number,
|
65
|
+
padding: PropTypes.number,
|
66
|
+
height: PropTypes.string,
|
67
|
+
width: PropTypes.string,
|
68
|
+
color: PropTypes.string,
|
69
|
+
closeButtonPosition: PropTypes.oneOf(["TopLeft", "TopRight", "BottomLeft", "BottomRight"]),
|
70
|
+
onOverlayCloseClick: PropTypes.oneOf([true, false]),
|
71
|
+
};
|
72
|
+
|
73
|
+
ReactModalIndex.defaultProps = {
|
74
|
+
height: "80vh",
|
75
|
+
width: "50vw",
|
76
|
+
closeButtonPosition: "TopRight",
|
77
|
+
onOverlayCloseClick: false
|
78
|
+
}
|
79
|
+
|
80
|
+
|
81
|
+
export default ReactModalIndex;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import React from "react";
|
2
|
+
|
3
|
+
import ReactModal from "./ReactModal";
|
4
|
+
import ReactModalDemo from "./ReactModalDemo";
|
5
|
+
|
6
|
+
export default {
|
7
|
+
title: "Buttons/React Modal",
|
8
|
+
component: ReactModal
|
9
|
+
};
|
10
|
+
|
11
|
+
export const Modal = args => (
|
12
|
+
<ReactModal
|
13
|
+
{...args}
|
14
|
+
modalBtnOpenText="Lets Open The Modal"
|
15
|
+
modalBtnCloseText="Lets Close The Modal"
|
16
|
+
modalContent={<ReactModalDemo />}
|
17
|
+
/>
|
18
|
+
);
|
@@ -0,0 +1,74 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import styled from 'styled-components';
|
4
|
+
|
5
|
+
import { controls } from '../Reusable Components/fakeData';
|
6
|
+
import ReusableHeader from '../Reusable Components/ReusableHeader/ReusableHeader';
|
7
|
+
import List from '../Reusable Components/ReusableList/ReusableList';
|
8
|
+
import RichTextInput from '../Common Inputs/RichTextInput/RichTextInput';
|
9
|
+
|
10
|
+
const Chat = ({
|
11
|
+
data,
|
12
|
+
title,
|
13
|
+
titleColor,
|
14
|
+
headerBackground,
|
15
|
+
headerPadding,
|
16
|
+
cardBackgroundColor,
|
17
|
+
cardTitleColor,
|
18
|
+
textColor,
|
19
|
+
users,
|
20
|
+
...props }) => {
|
21
|
+
|
22
|
+
return (
|
23
|
+
<Container
|
24
|
+
cardBackgroundColor={cardBackgroundColor}>
|
25
|
+
<ReusableHeader
|
26
|
+
title={title}
|
27
|
+
titleColor={titleColor}
|
28
|
+
controls={controls}
|
29
|
+
controlsStyles={{
|
30
|
+
iconColor: 'white',
|
31
|
+
maxIcons: 4,
|
32
|
+
dropdownBackground: 'white'
|
33
|
+
}}
|
34
|
+
headerBackground={headerBackground}
|
35
|
+
padding={headerPadding} />
|
36
|
+
<List
|
37
|
+
type="flat"
|
38
|
+
data={data}
|
39
|
+
cardStyle="card-style-8"
|
40
|
+
customCardStyles={{
|
41
|
+
cardBackgroundColor,
|
42
|
+
cardTitleColor,
|
43
|
+
cardDescriptionColor: textColor
|
44
|
+
}}
|
45
|
+
/>
|
46
|
+
<RichTextInput
|
47
|
+
users={users}
|
48
|
+
/>
|
49
|
+
</Container>
|
50
|
+
)
|
51
|
+
}
|
52
|
+
|
53
|
+
const Container = styled.div`
|
54
|
+
background-color: ${cardBackgroundColor => cardBackgroundColor};
|
55
|
+
width: 100%;
|
56
|
+
padding: 15px 0;
|
57
|
+
`
|
58
|
+
|
59
|
+
Chat.defaultProps = {
|
60
|
+
title: 'Chat Space'
|
61
|
+
};
|
62
|
+
|
63
|
+
Chat.propTypes = {
|
64
|
+
data: PropTypes.array.isRequired,
|
65
|
+
title: PropTypes.string,
|
66
|
+
titleColor: PropTypes.string,
|
67
|
+
headerBackground: PropTypes.string,
|
68
|
+
headerPadding: PropTypes.number,
|
69
|
+
cardBackgroundColor: PropTypes.string,
|
70
|
+
cardTitleColor: PropTypes.string,
|
71
|
+
textColor: PropTypes.string
|
72
|
+
}
|
73
|
+
|
74
|
+
export default Chat
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import Chat from './Chat';
|
2
|
+
|
3
|
+
export default {
|
4
|
+
title: 'Chat/Chat Space',
|
5
|
+
component: Chat
|
6
|
+
}
|
7
|
+
|
8
|
+
const data = [
|
9
|
+
{username: 'Test User', img:"https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png", date:'5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test '},
|
10
|
+
{username: 'Test User', img:"https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png", date:'5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test ', media:(<img src="https://arabhardware.net/wp-content/uploads/2020/03/valorant-2020-4k-0f-scaled.jpg"/>)},
|
11
|
+
{username: 'Test User', img:"https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png", date:'5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test '},
|
12
|
+
{username: 'Test User', img:"https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png", date:'5/11/2021', text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test '},
|
13
|
+
]
|
14
|
+
|
15
|
+
const users = [
|
16
|
+
{
|
17
|
+
id: 'walter',
|
18
|
+
display: 'Walter White',
|
19
|
+
},
|
20
|
+
{
|
21
|
+
id: 'jesse',
|
22
|
+
display: 'Jesse Pinkman',
|
23
|
+
},
|
24
|
+
{
|
25
|
+
id: 'gus',
|
26
|
+
display: 'Gustavo "Gus" Fring',
|
27
|
+
},
|
28
|
+
{
|
29
|
+
id: 'saul',
|
30
|
+
display: 'Saul Goodman',
|
31
|
+
},
|
32
|
+
{
|
33
|
+
id: 'hank',
|
34
|
+
display: 'Hank Schrader',
|
35
|
+
},
|
36
|
+
{
|
37
|
+
id: 'skyler',
|
38
|
+
display: 'Skyler White',
|
39
|
+
},
|
40
|
+
{
|
41
|
+
id: 'mike',
|
42
|
+
display: 'Mike Ehrmantraut',
|
43
|
+
},
|
44
|
+
{
|
45
|
+
id: 'lydia',
|
46
|
+
display: 'Lydìã Rôdarté-Qüayle',
|
47
|
+
},
|
48
|
+
]
|
49
|
+
|
50
|
+
const Template = (args) => (
|
51
|
+
<Chat
|
52
|
+
{...args} />
|
53
|
+
);
|
54
|
+
|
55
|
+
export const ChatSpace = Template.bind({});
|
56
|
+
ChatSpace.args = {
|
57
|
+
data,
|
58
|
+
users
|
59
|
+
};
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import styled from 'styled-components';
|
3
|
+
// Formik
|
4
|
+
import { Field, ErrorMessage } from 'formik';
|
5
|
+
// Prop types
|
6
|
+
import PropTypes from 'prop-types'
|
7
|
+
|
8
|
+
const CheckboxGroup = (props) => {
|
9
|
+
|
10
|
+
return (
|
11
|
+
<Container {...props}>
|
12
|
+
<FormLabel {...props}>{props.label}</FormLabel>
|
13
|
+
<CheckboxGroupWrapper {...props}>
|
14
|
+
{props.options.map(option => (
|
15
|
+
<CheckboxWrapper>
|
16
|
+
<Field type="checkbox" name={props.name} value={option.value} />
|
17
|
+
<Label {...props}>{option.label}</Label>
|
18
|
+
</CheckboxWrapper>
|
19
|
+
))}
|
20
|
+
</CheckboxGroupWrapper>
|
21
|
+
<ErrorMessage name={props.name} component={Error} />
|
22
|
+
</Container>
|
23
|
+
)
|
24
|
+
}
|
25
|
+
|
26
|
+
const Container = styled.div`
|
27
|
+
display: flex;
|
28
|
+
flex-direction: column;
|
29
|
+
font-family: sans-serif;
|
30
|
+
`
|
31
|
+
|
32
|
+
const CheckboxGroupWrapper = styled.div`
|
33
|
+
display: flex;
|
34
|
+
flex-direction: ${props => props.flexDirection};
|
35
|
+
gap: ${props => props.flexGap}px;
|
36
|
+
`
|
37
|
+
|
38
|
+
const CheckboxWrapper = styled.div`
|
39
|
+
|
40
|
+
`
|
41
|
+
const FormLabel = styled.label`
|
42
|
+
margin-bottom: 10px;
|
43
|
+
text-transform: capitalize;
|
44
|
+
color: ${props => props.formLabelColor};
|
45
|
+
font-size: ${props => props.formLabelFontSize}px;
|
46
|
+
`
|
47
|
+
|
48
|
+
const Label = styled.label`
|
49
|
+
text-transform: capitalize;
|
50
|
+
color: ${props => props.labelColor};
|
51
|
+
font-size: ${props => props.labelFontSize}px;
|
52
|
+
`
|
53
|
+
|
54
|
+
const Error = styled.p`
|
55
|
+
color: red;
|
56
|
+
margin-top: 3px;
|
57
|
+
`
|
58
|
+
|
59
|
+
CheckboxGroup.defaultProps = {};
|
60
|
+
|
61
|
+
CheckboxGroup.propTypes = {
|
62
|
+
formLabelFontSize: PropTypes.number,
|
63
|
+
formLabelColor: PropTypes.string,
|
64
|
+
labelFontSize: PropTypes.number,
|
65
|
+
labelColor: PropTypes.string,
|
66
|
+
flexDirection: PropTypes.string,
|
67
|
+
flexGap: PropTypes.number,
|
68
|
+
};
|
69
|
+
|
70
|
+
export default CheckboxGroup
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import withFormik from "storybook-formik";
|
3
|
+
import * as Yup from 'yup';
|
4
|
+
|
5
|
+
import CheckboxGroup from './CheckboxGroup';
|
6
|
+
|
7
|
+
const formSchema = Yup.object().shape({
|
8
|
+
acceptTerms: Yup.array()
|
9
|
+
.min(1, 'You must choose at least one element'),
|
10
|
+
});
|
11
|
+
|
12
|
+
const options = [
|
13
|
+
{label: 'option 1', value: '1'},
|
14
|
+
{label: 'option 2', value: '2'},
|
15
|
+
{label: 'option 3', value: '3'},
|
16
|
+
]
|
17
|
+
|
18
|
+
export default {
|
19
|
+
title: 'Common Inputs/Checkbox Group',
|
20
|
+
component: CheckboxGroup,
|
21
|
+
decorators: [withFormik],
|
22
|
+
parameters: {
|
23
|
+
formik: {
|
24
|
+
initialValues: {
|
25
|
+
acceptTerms: []
|
26
|
+
},
|
27
|
+
validationSchema: formSchema,
|
28
|
+
},
|
29
|
+
}
|
30
|
+
};
|
31
|
+
|
32
|
+
export const CheckBoxGroup = args => <CheckboxGroup label="Checkbox Group" name="acceptTerms" options={options} {...args} />
|
@@ -0,0 +1,98 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
|
3
|
+
import PropTypes from 'prop-types';
|
4
|
+
import styled from 'styled-components';
|
5
|
+
import Autocomplete from 'react-autocomplete';
|
6
|
+
// // Formik
|
7
|
+
// import { useField } from 'formik';
|
8
|
+
|
9
|
+
const CustomAutoComplete = (props) => {
|
10
|
+
// const [field, meta, helpers] = useField(props)
|
11
|
+
const [value, setValue] = useState('')
|
12
|
+
|
13
|
+
const inputStyle = {
|
14
|
+
border: `${props.borderSize}px solid ${props.borderColor}`,
|
15
|
+
borderRadius: `${props.borderRadius}px`,
|
16
|
+
width: '100%',
|
17
|
+
padding: `0 ${props.padding}px`,
|
18
|
+
height: `100%`
|
19
|
+
}
|
20
|
+
return (
|
21
|
+
<AutocompleteWrapper>
|
22
|
+
<Label {...props}>{props.label}</Label>
|
23
|
+
<Autocomplete
|
24
|
+
items={props.items}
|
25
|
+
shouldItemRender={(item, value) => item.label.toLowerCase().indexOf(value.toLowerCase()) > -1}
|
26
|
+
getItemValue={item => item.label}
|
27
|
+
inputProps={{ style: inputStyle, placeholder: props.placeholder, name: props.name}}
|
28
|
+
renderItem={(item, highlighted) =>
|
29
|
+
<Dropdown
|
30
|
+
key={item.id}
|
31
|
+
highlighted={highlighted}
|
32
|
+
{...props}
|
33
|
+
>
|
34
|
+
{item.label}
|
35
|
+
</Dropdown>
|
36
|
+
}
|
37
|
+
value={value}
|
38
|
+
onChange={e => {
|
39
|
+
setValue(e.target.value)
|
40
|
+
}}
|
41
|
+
onSelect={value => {
|
42
|
+
setValue(value)
|
43
|
+
}}
|
44
|
+
/>
|
45
|
+
</AutocompleteWrapper>
|
46
|
+
)
|
47
|
+
}
|
48
|
+
|
49
|
+
const AutocompleteWrapper = styled.div`
|
50
|
+
display: flex;
|
51
|
+
flex-direction: column;
|
52
|
+
`;
|
53
|
+
|
54
|
+
const Label = styled.label`
|
55
|
+
margin-bottom: 5px;
|
56
|
+
font-family: 'sans-serif';
|
57
|
+
// Customized Styles
|
58
|
+
text-transform: capitalize;
|
59
|
+
font-size: ${(props) => props.labelFontSize || 15}px;
|
60
|
+
color: ${(props) => props.labelColor || 'black'};
|
61
|
+
`;
|
62
|
+
|
63
|
+
const Dropdown = styled.div`
|
64
|
+
text-transform: capitalize;
|
65
|
+
font-family: 'sans-serif';
|
66
|
+
height: ${(props) => props.itemHeight + 'px'};
|
67
|
+
background-color: ${(props) =>
|
68
|
+
props.highlighted ? props.hoverColor || '#eee' : props.backgroundColor};
|
69
|
+
font-size: ${(props) => props.fontSize || 15}px;
|
70
|
+
color: ${(props) => props.fontColor || 'black'};
|
71
|
+
`;
|
72
|
+
|
73
|
+
const Error = styled.p`
|
74
|
+
color: red;
|
75
|
+
margin-top: 3px;
|
76
|
+
`;
|
77
|
+
|
78
|
+
CustomAutoComplete.defaultProps = {};
|
79
|
+
|
80
|
+
|
81
|
+
CustomAutoComplete.propTypes = {
|
82
|
+
items: PropTypes.array,
|
83
|
+
placeholder: PropTypes.string,
|
84
|
+
borderColor: PropTypes.string,
|
85
|
+
borderSize: PropTypes.string,
|
86
|
+
borderRadius: PropTypes.string,
|
87
|
+
padding: PropTypes.string,
|
88
|
+
height: PropTypes.string,
|
89
|
+
itemHeight: PropTypes.string,
|
90
|
+
width: PropTypes.string,
|
91
|
+
fontSize: PropTypes.number,
|
92
|
+
backgroundColor: PropTypes.string,
|
93
|
+
hoverColor: PropTypes.string,
|
94
|
+
fontColor: PropTypes.string,
|
95
|
+
onInputChange: PropTypes.func,
|
96
|
+
};
|
97
|
+
|
98
|
+
export default CustomAutoComplete;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
// import withFormik from "storybook-formik";
|
3
|
+
// import * as Yup from 'yup';
|
4
|
+
|
5
|
+
import CustomAutoComplete from './CustomAutoComplete';
|
6
|
+
|
7
|
+
// const formSchema = Yup.object().shape({
|
8
|
+
// search: Yup.string()
|
9
|
+
// .required("Required"),
|
10
|
+
// });
|
11
|
+
|
12
|
+
|
13
|
+
export default {
|
14
|
+
title: 'Common Inputs/Custom AutoComplete',
|
15
|
+
component: CustomAutoComplete,
|
16
|
+
// decorators: [withFormik],
|
17
|
+
// parameters: {
|
18
|
+
// formik: {
|
19
|
+
// initialValues: {
|
20
|
+
// search: ''
|
21
|
+
// },
|
22
|
+
// validationSchema: formSchema,
|
23
|
+
// },
|
24
|
+
// }
|
25
|
+
};
|
26
|
+
|
27
|
+
export const AutoComplete = args =>
|
28
|
+
(<CustomAutoComplete
|
29
|
+
label="themes"
|
30
|
+
items={[
|
31
|
+
{ id: 'foo', label: 'foo' },
|
32
|
+
{ id: 'bar', label: 'bar' },
|
33
|
+
{ id: 'baz', label: 'baz' },
|
34
|
+
]} name="search" {...args}
|
35
|
+
/>)
|
@@ -0,0 +1,115 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
// Dropzone
|
4
|
+
import Dropzone from 'react-dropzone-uploader';
|
5
|
+
// Formik
|
6
|
+
import { useField } from 'formik';
|
7
|
+
// Prop Types
|
8
|
+
import PropTypes from "prop-types";
|
9
|
+
|
10
|
+
const CustomDropZone = (props) => {
|
11
|
+
const [field, meta, helpers] = useField(props)
|
12
|
+
|
13
|
+
return (
|
14
|
+
<Container {...props}>
|
15
|
+
<Label htmlFor={props.name} {...props}>{props.label}</Label>
|
16
|
+
<Dropzone
|
17
|
+
name={props.name}
|
18
|
+
SubmitButtonComponent={null}
|
19
|
+
maxFiles={1}
|
20
|
+
multiple={false}
|
21
|
+
onChangeStatus={({ meta, file }, status) => {
|
22
|
+
console.log(meta)
|
23
|
+
helpers.setValue({
|
24
|
+
file,
|
25
|
+
meta
|
26
|
+
})
|
27
|
+
}}
|
28
|
+
accept={props.fileType}
|
29
|
+
inputContent={props.inputContent}
|
30
|
+
inputWithFilesContent=""
|
31
|
+
/>
|
32
|
+
{meta.error && <Error>{meta.error}</Error>}
|
33
|
+
</Container>
|
34
|
+
)
|
35
|
+
}
|
36
|
+
|
37
|
+
const Container = styled.div`
|
38
|
+
display: flex;
|
39
|
+
flex-direction: column;
|
40
|
+
|
41
|
+
& .dzu-dropzone {
|
42
|
+
width: ${props => props.width}px;
|
43
|
+
background-color: #fadada;
|
44
|
+
height: ${props => props.height ? `${props.height}px` : '100px'};
|
45
|
+
display: flex;
|
46
|
+
flex-direction: column;
|
47
|
+
justify-content: center;
|
48
|
+
font-family: sans-serif;
|
49
|
+
background-color: #b6b6b6;
|
50
|
+
border-radius: ${props => props.borderRadius}px;
|
51
|
+
padding: 10px;
|
52
|
+
|
53
|
+
}
|
54
|
+
|
55
|
+
& .dzu-dropzoneActive {
|
56
|
+
background-color: ${props => props.backgroundOnDrop};
|
57
|
+
border-color: ${props => props.borderOnDrop};
|
58
|
+
}
|
59
|
+
|
60
|
+
& .dzu-input {
|
61
|
+
/* display: none; */
|
62
|
+
display: block;
|
63
|
+
}
|
64
|
+
|
65
|
+
& .dzu-inputLabel {
|
66
|
+
font-size: ${props => props.fontSize}px;
|
67
|
+
color: ${props => props.fontColor};
|
68
|
+
}
|
69
|
+
|
70
|
+
& .dzu-previewContainer {
|
71
|
+
padding: 0;
|
72
|
+
position: relative;
|
73
|
+
width: 100%;
|
74
|
+
min-height: 60px;
|
75
|
+
z-index: 1;
|
76
|
+
border-radius: ${props => props.borderRadius}px;
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
& .dzu-previewImage {
|
81
|
+
width: 100%;
|
82
|
+
height: ${props => props.height ? `${props.height}px` : '100px'};
|
83
|
+
border-radius: ${props => props.borderRadius}px;
|
84
|
+
}
|
85
|
+
`
|
86
|
+
const Label = styled.label`
|
87
|
+
margin-bottom: 5px;
|
88
|
+
text-transform: capitalize;
|
89
|
+
font-size: ${props => props.labelFontSize || 15}px;
|
90
|
+
color: ${props => props.labelColor || 'black'};
|
91
|
+
`
|
92
|
+
const Error = styled.p`
|
93
|
+
color: red;
|
94
|
+
margin-top: 3px;
|
95
|
+
`
|
96
|
+
|
97
|
+
CustomDropZone.defaultProps = {
|
98
|
+
inputContent: 'Upload image',
|
99
|
+
fileType: 'image/*'
|
100
|
+
};
|
101
|
+
|
102
|
+
CustomDropZone.propTypes = {
|
103
|
+
width: PropTypes.string,
|
104
|
+
height: PropTypes.string,
|
105
|
+
backgroundOnDrop: PropTypes.string,
|
106
|
+
borderOnDrop: PropTypes.string,
|
107
|
+
fontSize: PropTypes.number,
|
108
|
+
fontColor: PropTypes.string,
|
109
|
+
labelColor: PropTypes.string,
|
110
|
+
labelFontSize: PropTypes.number,
|
111
|
+
borderRadius: PropTypes.number,
|
112
|
+
};
|
113
|
+
|
114
|
+
|
115
|
+
export default CustomDropZone
|