@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,488 @@
|
|
1
|
+
import React, { useState, useCallback } from 'react';
|
2
|
+
import { Formik, Form, useField } from 'formik';
|
3
|
+
import { useDropzone } from 'react-dropzone';
|
4
|
+
import styled from 'styled-components';
|
5
|
+
import * as Yup from 'yup';
|
6
|
+
import SearchCard from '../../Reusable Components/SearchCard/SearchCard';
|
7
|
+
|
8
|
+
const MyTextInput = ({ label, ...props }) => {
|
9
|
+
// useField() returns [formik.getFieldProps(), formik.getFieldMeta()]
|
10
|
+
// which we can spread on <input>. We can use field meta to show an error
|
11
|
+
// message if the field is invalid and it has been touched (i.e. visited)
|
12
|
+
const [field, meta] = useField(props);
|
13
|
+
return (
|
14
|
+
<TextInput>
|
15
|
+
<Label>{label}</Label>
|
16
|
+
<UserInput {...field} {...props} />
|
17
|
+
{meta.touched && meta.error ? <Error>{meta.error}</Error> : null}
|
18
|
+
</TextInput>
|
19
|
+
);
|
20
|
+
};
|
21
|
+
|
22
|
+
const MyStyleTextInput = ({ label, ...props }) => {
|
23
|
+
// useField() returns [formik.getFieldProps(), formik.getFieldMeta()]
|
24
|
+
// which we can spread on <input>. We can use field meta to show an error
|
25
|
+
// message if the field is invalid and it has been touched (i.e. visited)
|
26
|
+
const [field, meta] = useField(props);
|
27
|
+
return (
|
28
|
+
<StyleTextInput>
|
29
|
+
<StyleLabel>{label}</StyleLabel>
|
30
|
+
<StyleInput {...field} {...props} />
|
31
|
+
{meta.touched && meta.error ? <Error>{meta.error}</Error> : null}
|
32
|
+
</StyleTextInput>
|
33
|
+
);
|
34
|
+
};
|
35
|
+
|
36
|
+
const CreateProfile = () => {
|
37
|
+
// const [serverName, setServerName] = useState('');
|
38
|
+
const [themeName, setThemeName] = useState('');
|
39
|
+
const [fileName, setFileName] = useState('');
|
40
|
+
const [preset, setPreset] = useState([
|
41
|
+
{ name: 'preset1', selected: false },
|
42
|
+
{ name: 'preset2', selected: false },
|
43
|
+
{ name: 'preset3', selected: false },
|
44
|
+
]);
|
45
|
+
const theme=[
|
46
|
+
{ name: 'abc', selected: false },
|
47
|
+
{ name: 'bcd', selected: false },
|
48
|
+
{ name: 'def', selected: false },
|
49
|
+
];
|
50
|
+
const [image, setImage] = useState();
|
51
|
+
const onDrop = useCallback((acceptedFiles) => {
|
52
|
+
const url = URL.createObjectURL(acceptedFiles[acceptedFiles.length - 1]);
|
53
|
+
setImage(url);
|
54
|
+
}, []);
|
55
|
+
const { getRootProps, getInputProps, isDragActive } = useDropzone({
|
56
|
+
accept: 'image/*',
|
57
|
+
onDrop,
|
58
|
+
});
|
59
|
+
return (
|
60
|
+
<Container>
|
61
|
+
<Formik
|
62
|
+
initialValues={{
|
63
|
+
userName: '',
|
64
|
+
preset: '',
|
65
|
+
theme: '',
|
66
|
+
serverName: '',
|
67
|
+
serverDescription: '',
|
68
|
+
margin: '',
|
69
|
+
color: '',
|
70
|
+
padding: '',
|
71
|
+
backgroundColor: '',
|
72
|
+
border: '',
|
73
|
+
fontSize: '',
|
74
|
+
}}
|
75
|
+
validationSchema={Yup.object({
|
76
|
+
userName: Yup.string()
|
77
|
+
.min(4, 'Must be atleast 4 characters or more')
|
78
|
+
.required('username cannot be empty'),
|
79
|
+
serverName: Yup.string().required('Server name cannot be empty'),
|
80
|
+
margin: Yup.string().required('provide margin'),
|
81
|
+
color: Yup.string().required('provide color'),
|
82
|
+
padding: Yup.string().required('provide padding'),
|
83
|
+
backgroundColor: Yup.string().required('provide backgroundColor'),
|
84
|
+
border: Yup.string().required('provide border'),
|
85
|
+
fontSize: Yup.string().required('provide fontSize'),
|
86
|
+
})}
|
87
|
+
|
88
|
+
onSubmit={(values, { setSubmitting }) => {
|
89
|
+
console.log(values);
|
90
|
+
// setTimeout(() => {
|
91
|
+
// alert(JSON.stringify(values, null, 2));
|
92
|
+
// setSubmitting(false);
|
93
|
+
// }, 400);
|
94
|
+
}}
|
95
|
+
>
|
96
|
+
<Form>
|
97
|
+
<Title>Create Profile</Title>
|
98
|
+
<FileContainer>
|
99
|
+
<UploadFile>
|
100
|
+
<FileInput
|
101
|
+
onChange={(e) => setFileName(e.target.files[0].name)}
|
102
|
+
type='file'
|
103
|
+
></FileInput>
|
104
|
+
+
|
105
|
+
</UploadFile>
|
106
|
+
|
107
|
+
{fileName.length > 0 ? (
|
108
|
+
<FileName>{fileName}</FileName>
|
109
|
+
) : (
|
110
|
+
<FileName>Choose File </FileName>
|
111
|
+
)}
|
112
|
+
{/* <UserInput
|
113
|
+
value={userName}
|
114
|
+
onChange={(e) => setUserName(e.target.value)}
|
115
|
+
placeholder='username'
|
116
|
+
/> */}
|
117
|
+
<MyTextInput
|
118
|
+
label='Username'
|
119
|
+
name='userName'
|
120
|
+
type='text'
|
121
|
+
placeholder='user name'
|
122
|
+
/>
|
123
|
+
</FileContainer>
|
124
|
+
|
125
|
+
<SubContainer>
|
126
|
+
<SubHeading marginRight='20'>Create a Server</SubHeading>
|
127
|
+
<Icon
|
128
|
+
src='https://www.clipartmax.com/png/middle/138-1389227_refresh-icon-circle.png'
|
129
|
+
// onClick={() => setServerName('')}
|
130
|
+
marginRight='8'
|
131
|
+
></Icon>
|
132
|
+
</SubContainer>
|
133
|
+
<InputContainer>
|
134
|
+
<MyTextInput
|
135
|
+
label='Server name'
|
136
|
+
name='serverName'
|
137
|
+
type='text'
|
138
|
+
placeholder='server name'
|
139
|
+
/>
|
140
|
+
</InputContainer>
|
141
|
+
|
142
|
+
<InputContainer>
|
143
|
+
{/* <Input
|
144
|
+
value={serverDescription}
|
145
|
+
onChange={(e) => {
|
146
|
+
setServerDescription(e.target.value);
|
147
|
+
}}
|
148
|
+
placeholder='server description'
|
149
|
+
/> */}
|
150
|
+
|
151
|
+
<MyTextInput
|
152
|
+
label='Server description'
|
153
|
+
name='serverDescription'
|
154
|
+
type='text'
|
155
|
+
placeholder='server description'
|
156
|
+
/>
|
157
|
+
</InputContainer>
|
158
|
+
<H4>Upload a logo</H4>
|
159
|
+
<Dropdiv {...getRootProps()}>
|
160
|
+
<input {...getInputProps()} />
|
161
|
+
{isDragActive ? (
|
162
|
+
<p>Drop the files here ...</p>
|
163
|
+
) : (
|
164
|
+
<p>Drag 'n' drop some files here, or click to select files</p>
|
165
|
+
)}
|
166
|
+
</Dropdiv>
|
167
|
+
<PreviewImageContainer>
|
168
|
+
{image && <PreviewImage src={image} />}
|
169
|
+
</PreviewImageContainer>
|
170
|
+
{/* <SubContainer> */}
|
171
|
+
<PresetHeadContainer>
|
172
|
+
<H4>Presets</H4>
|
173
|
+
</PresetHeadContainer>
|
174
|
+
{/* <Icon src='https://www.clipartmax.com/png/middle/138-1389227_refresh-icon-circle.png'></Icon> */}
|
175
|
+
{/* </SubContainer> */}
|
176
|
+
|
177
|
+
<PresetDivContainer>
|
178
|
+
{preset.map((p, index) => (
|
179
|
+
<PresetDiv
|
180
|
+
key={index}
|
181
|
+
onClick={() => {
|
182
|
+
const a = preset.filter((pre, i) => {
|
183
|
+
if (i === index) {
|
184
|
+
pre.selected = !pre.selected;
|
185
|
+
return pre;
|
186
|
+
} else {
|
187
|
+
pre.selected = false;
|
188
|
+
return pre;
|
189
|
+
}
|
190
|
+
});
|
191
|
+
setPreset(a);
|
192
|
+
}}
|
193
|
+
selected={p.selected}
|
194
|
+
>
|
195
|
+
<CardImage src='https://cdn.pixabay.com/photo/2014/11/30/14/11/cat-551554__340.jpg' />
|
196
|
+
<CardTitle>{p.name}</CardTitle>
|
197
|
+
<CardDescription>{p.name}</CardDescription>
|
198
|
+
</PresetDiv>
|
199
|
+
))}
|
200
|
+
</PresetDivContainer>
|
201
|
+
|
202
|
+
<SubContainer>
|
203
|
+
<SubHeading>Theme</SubHeading>
|
204
|
+
|
205
|
+
<Icon
|
206
|
+
src='https://www.clipartmax.com/png/middle/138-1389227_refresh-icon-circle.png'
|
207
|
+
onClick={() => setThemeName('')}
|
208
|
+
marginLeft='5'
|
209
|
+
></Icon>
|
210
|
+
</SubContainer>
|
211
|
+
<InputContainer>
|
212
|
+
<Input
|
213
|
+
value={themeName}
|
214
|
+
onChange={(e) => {
|
215
|
+
setThemeName(e.target.value);
|
216
|
+
|
217
|
+
}}
|
218
|
+
placeholder='search theme...'
|
219
|
+
/>
|
220
|
+
</InputContainer>
|
221
|
+
<SearchCard list={theme} item={themeName} />
|
222
|
+
<SubContainer>
|
223
|
+
<SubHeading>Styles</SubHeading>
|
224
|
+
|
225
|
+
<Icon
|
226
|
+
src='https://www.clipartmax.com/png/middle/138-1389227_refresh-icon-circle.png'
|
227
|
+
marginLeft='7'
|
228
|
+
></Icon>
|
229
|
+
</SubContainer>
|
230
|
+
<PresetDivContainer>
|
231
|
+
<MyStyleTextInput
|
232
|
+
label='Margin'
|
233
|
+
name='margin'
|
234
|
+
type='text'
|
235
|
+
placeholder='margin'
|
236
|
+
/>
|
237
|
+
<MyStyleTextInput
|
238
|
+
label='Color'
|
239
|
+
name='color'
|
240
|
+
type='text'
|
241
|
+
placeholder='color'
|
242
|
+
/>
|
243
|
+
|
244
|
+
<MyStyleTextInput
|
245
|
+
label='Padding'
|
246
|
+
name='padding'
|
247
|
+
type='text'
|
248
|
+
placeholder='padding'
|
249
|
+
/>
|
250
|
+
</PresetDivContainer>
|
251
|
+
<PresetDivContainer>
|
252
|
+
<MyStyleTextInput
|
253
|
+
label='Background Color'
|
254
|
+
name='backgroundColor'
|
255
|
+
type='text'
|
256
|
+
placeholder='background color'
|
257
|
+
/>
|
258
|
+
<MyStyleTextInput
|
259
|
+
label='Border'
|
260
|
+
name='border'
|
261
|
+
type='text'
|
262
|
+
placeholder='border'
|
263
|
+
/>
|
264
|
+
|
265
|
+
<MyStyleTextInput
|
266
|
+
label='Font Size'
|
267
|
+
name='fontSize'
|
268
|
+
type='text'
|
269
|
+
placeholder='font size'
|
270
|
+
/>
|
271
|
+
</PresetDivContainer>
|
272
|
+
|
273
|
+
<PresetDivContainer>
|
274
|
+
{/* <StyleInput placeholder='style 4' />
|
275
|
+
<StyleInput placeholder='style 5' />
|
276
|
+
<StyleInput placeholder='style 6' /> */}
|
277
|
+
</PresetDivContainer>
|
278
|
+
<H4 marginRight='20'>Preview</H4>
|
279
|
+
<PreviewBox>
|
280
|
+
<h1>1</h1>
|
281
|
+
</PreviewBox>
|
282
|
+
<ButtonContainer>
|
283
|
+
<Button type='submit'>Create</Button>
|
284
|
+
</ButtonContainer>
|
285
|
+
</Form>
|
286
|
+
</Formik>
|
287
|
+
</Container>
|
288
|
+
);
|
289
|
+
};
|
290
|
+
const Title = styled.h3`
|
291
|
+
/* text-align: center; */
|
292
|
+
margin-right: 20%;
|
293
|
+
`;
|
294
|
+
|
295
|
+
const Container = styled.div`
|
296
|
+
flex: 1;
|
297
|
+
flex-direction: column;
|
298
|
+
font-family: Arial, Helvetica, sans-serif;
|
299
|
+
/* text-align: center; */
|
300
|
+
// background:'#000'
|
301
|
+
`;
|
302
|
+
|
303
|
+
const FileContainer = styled.div`
|
304
|
+
/* text-align: center; */
|
305
|
+
/* margin-left: 3%; */
|
306
|
+
/* width: 40%; */
|
307
|
+
`;
|
308
|
+
|
309
|
+
const UploadFile = styled.label`
|
310
|
+
border: 1px solid grey;
|
311
|
+
border-radius: 100px;
|
312
|
+
display: inline-block;
|
313
|
+
padding: 6px 12px;
|
314
|
+
cursor: pointer;
|
315
|
+
margin-right: 2%;
|
316
|
+
margin-bottom: 1%;
|
317
|
+
:hover {
|
318
|
+
color: #fff;
|
319
|
+
background: grey;
|
320
|
+
}
|
321
|
+
`;
|
322
|
+
const FileInput = styled.input`
|
323
|
+
display: none;
|
324
|
+
`;
|
325
|
+
const FileName = styled.label`
|
326
|
+
border: 1px solid #606060;
|
327
|
+
font-size: 14px;
|
328
|
+
color: #979899;
|
329
|
+
padding: 5px;
|
330
|
+
margin-right: 23%;
|
331
|
+
`;
|
332
|
+
const UserInput = styled.input`
|
333
|
+
/* width: 30%; */
|
334
|
+
width: 99%;
|
335
|
+
padding: 0.5%;
|
336
|
+
margin-top: 1%;
|
337
|
+
/* align-self: center; */
|
338
|
+
`;
|
339
|
+
const SubContainer = styled.div`
|
340
|
+
margin-top: 1%;
|
341
|
+
display: flex;
|
342
|
+
justify-content: space-between;
|
343
|
+
align-items: center;
|
344
|
+
margin-bottom: 1%;
|
345
|
+
`;
|
346
|
+
const PresetHeadContainer = styled.div`
|
347
|
+
margin-top: 1%;
|
348
|
+
margin-bottom: 1%;
|
349
|
+
`;
|
350
|
+
const SubHeading = styled.label`
|
351
|
+
font-size: 18px;
|
352
|
+
font-weight: 600;
|
353
|
+
`;
|
354
|
+
const H4 = styled.span`
|
355
|
+
font-size: 18px;
|
356
|
+
font-weight: 600;
|
357
|
+
`;
|
358
|
+
const Icon = styled.img`
|
359
|
+
width: 24px;
|
360
|
+
height: 24px;
|
361
|
+
justify-self: flex-end;
|
362
|
+
/* margin-right: ${(props) => props.marginRight}%; */
|
363
|
+
/* margin-left: ${(props) => props.marginLeft}%; */
|
364
|
+
`;
|
365
|
+
const InputContainer = styled.div`
|
366
|
+
/* margin-left: 2%; */
|
367
|
+
margin-bottom: 2%;
|
368
|
+
`;
|
369
|
+
const Input = styled.input`
|
370
|
+
width: 99%;
|
371
|
+
margin-top: 0.5%;
|
372
|
+
padding: 0.5%;
|
373
|
+
`;
|
374
|
+
const PresetDivContainer = styled.div`
|
375
|
+
display: flex;
|
376
|
+
width: 100%;
|
377
|
+
/* justify-content: center; */
|
378
|
+
margin-bottom: 2%;
|
379
|
+
/* margin-left: 2%; */
|
380
|
+
`;
|
381
|
+
const PresetDiv = styled.div`
|
382
|
+
margin-right: 2%;
|
383
|
+
width: 30%;
|
384
|
+
display: flex;
|
385
|
+
flex-direction: column;
|
386
|
+
/* flex: 1; */
|
387
|
+
border: 1px solid white;
|
388
|
+
|
389
|
+
background: ${(props) => (props.selected ? '#ccc' : 'white')};
|
390
|
+
:hover {
|
391
|
+
opacity: 0.8;
|
392
|
+
}
|
393
|
+
`;
|
394
|
+
const CardImage = styled.img`
|
395
|
+
height: 70%;
|
396
|
+
width: 100%;
|
397
|
+
:hover {
|
398
|
+
opacity: 0.8;
|
399
|
+
}
|
400
|
+
`;
|
401
|
+
|
402
|
+
const CardTitle = styled.label`
|
403
|
+
font-size: 18px;
|
404
|
+
font-weight: 400;
|
405
|
+
margin-top: 1%;
|
406
|
+
margin-left: 2%;
|
407
|
+
`;
|
408
|
+
|
409
|
+
const CardDescription = styled.label`
|
410
|
+
font-size: 14px;
|
411
|
+
font-weight: 200;
|
412
|
+
margin-top: 1%;
|
413
|
+
margin-left: 2%;
|
414
|
+
`;
|
415
|
+
|
416
|
+
const PreviewBox = styled.div`
|
417
|
+
width: 320px;
|
418
|
+
/* margin-left: 36%; */
|
419
|
+
background: grey;
|
420
|
+
`;
|
421
|
+
const ButtonContainer = styled.div`
|
422
|
+
/* margin-left: 26%; */
|
423
|
+
margin-top: 2%;
|
424
|
+
text-align: center;
|
425
|
+
`;
|
426
|
+
const Button = styled.button`
|
427
|
+
width: 300px;
|
428
|
+
padding: 1%;
|
429
|
+
border: 1px solid black;
|
430
|
+
:hover {
|
431
|
+
background: grey;
|
432
|
+
color: white;
|
433
|
+
}
|
434
|
+
`;
|
435
|
+
const PreviewImage = styled.img`
|
436
|
+
margin-top: 1%;
|
437
|
+
width: 20%;
|
438
|
+
height: 20%;
|
439
|
+
`;
|
440
|
+
const PreviewImageContainer = styled.div`
|
441
|
+
display: flex;
|
442
|
+
justify-content: center;
|
443
|
+
`;
|
444
|
+
const Dropdiv = styled.div`
|
445
|
+
display: flex;
|
446
|
+
flex-direction: column;
|
447
|
+
align-items: center;
|
448
|
+
padding: 20px;
|
449
|
+
border-width: 2px;
|
450
|
+
border-radius: 2px;
|
451
|
+
border-color: #eee;
|
452
|
+
border-style: dashed;
|
453
|
+
background-color: #fafafa;
|
454
|
+
color: #bdbdbd;
|
455
|
+
outline: none;
|
456
|
+
transition: border 0.24s ease-in-out;
|
457
|
+
`;
|
458
|
+
const TextInput = styled.div`
|
459
|
+
display: flex;
|
460
|
+
flex-direction: column;
|
461
|
+
/* background-color: black; */
|
462
|
+
`;
|
463
|
+
|
464
|
+
const StyleTextInput = styled.span`
|
465
|
+
display: flex;
|
466
|
+
flex: 1;
|
467
|
+
flex-direction: column;
|
468
|
+
/* width: 10%; */
|
469
|
+
/* margin-left: 2%; */
|
470
|
+
margin-right: 10%;
|
471
|
+
`;
|
472
|
+
const Error = styled.div`
|
473
|
+
color: red;
|
474
|
+
font-size: 14px;
|
475
|
+
`;
|
476
|
+
const Label = styled.label`
|
477
|
+
font-size: 14px;
|
478
|
+
`;
|
479
|
+
const StyleLabel = styled.label`
|
480
|
+
font-size: 14px;
|
481
|
+
`;
|
482
|
+
const StyleInput = styled.input`
|
483
|
+
width: 100%;
|
484
|
+
margin-top: 3%;
|
485
|
+
padding: 2%;
|
486
|
+
/* align-self: center; */
|
487
|
+
`;
|
488
|
+
export default CreateProfile;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import styled from "styled-components";
|
3
|
+
import BaseMaterial from "../../Containers/BaseMaterial";
|
4
|
+
|
5
|
+
const CreateUser = props => (
|
6
|
+
<BaseMaterial {...props}>
|
7
|
+
<input type="textbox" placeholder="Username" />
|
8
|
+
<input type="email" placeholder="Email Address" />
|
9
|
+
</BaseMaterial>
|
10
|
+
);
|
11
|
+
|
12
|
+
|
13
|
+
export default CreateUser
|
@@ -0,0 +1,78 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import * as Yup from 'yup';
|
4
|
+
import ReusableForm from '../../Reusable Components/ReusableForm/ReusableForm';
|
5
|
+
import TextField from '../../Common Inputs/TextField/TextField';
|
6
|
+
import CustomDropZone from '../../Common Inputs/CustomDropzone/CustomDropZone';
|
7
|
+
|
8
|
+
const CreateVideoAlbum = (props) => {
|
9
|
+
|
10
|
+
const initialValues = {
|
11
|
+
cover: null,
|
12
|
+
title: ''
|
13
|
+
}
|
14
|
+
|
15
|
+
const formSchema = Yup.object().shape({
|
16
|
+
title: Yup.string()
|
17
|
+
.required("Required")
|
18
|
+
});
|
19
|
+
|
20
|
+
const sections = [
|
21
|
+
{
|
22
|
+
title: "Announcment Details",
|
23
|
+
body: [
|
24
|
+
(<CustomDropZone label="Album Cover" name="cover" />),
|
25
|
+
(<TextField label="Title" name="title" />),
|
26
|
+
],
|
27
|
+
hideTitle: true
|
28
|
+
},
|
29
|
+
]
|
30
|
+
|
31
|
+
const onCreate = (values) => {
|
32
|
+
const album = { ...values }
|
33
|
+
const date = new Date()
|
34
|
+
album.date = date
|
35
|
+
props.saveHandler(album)
|
36
|
+
}
|
37
|
+
|
38
|
+
const cancelHandler = () => {
|
39
|
+
props.cancelHandler()
|
40
|
+
}
|
41
|
+
|
42
|
+
return (
|
43
|
+
<ReusableForm
|
44
|
+
formTitle="Create Video Album"
|
45
|
+
initialValues={initialValues}
|
46
|
+
formSchema={formSchema}
|
47
|
+
sections={sections}
|
48
|
+
headerStyles={{
|
49
|
+
padding: 10,
|
50
|
+
headerBackground: 'black',
|
51
|
+
titleColor: '#ffff',
|
52
|
+
}}
|
53
|
+
saveBtnText={props.saveBtnText}
|
54
|
+
cancelBtnText={props.cancelBtnText}
|
55
|
+
saveHandler={onCreate}
|
56
|
+
cancelHandler={cancelHandler}
|
57
|
+
headerStyles={{
|
58
|
+
padding: 10,
|
59
|
+
headerBackground: 'black',
|
60
|
+
titleColor: '#ffff',
|
61
|
+
}}
|
62
|
+
sectionPadding={10}
|
63
|
+
bodyRowGap={10}
|
64
|
+
{...props.formStyles}
|
65
|
+
/>
|
66
|
+
)
|
67
|
+
}
|
68
|
+
|
69
|
+
CreateVideoAlbum.defaultProps = {};
|
70
|
+
|
71
|
+
CreateVideoAlbum.propTypes = {
|
72
|
+
saveHandler: PropTypes.func,
|
73
|
+
cancelHandler: PropTypes.func,
|
74
|
+
saveBtnText: PropTypes.string,
|
75
|
+
cancelBtnText: PropTypes.string
|
76
|
+
}
|
77
|
+
|
78
|
+
export default CreateVideoAlbum
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import CreateVideoAlbum from './CreateVideoAlbum';
|
3
|
+
|
4
|
+
export default {
|
5
|
+
title: 'Forms/Create Video Album',
|
6
|
+
component: CreateVideoAlbum
|
7
|
+
}
|
8
|
+
|
9
|
+
const onSave = (album) => {
|
10
|
+
console.log(album)
|
11
|
+
}
|
12
|
+
|
13
|
+
const onCancel = () => {
|
14
|
+
console.log('Cancel')
|
15
|
+
}
|
16
|
+
|
17
|
+
export const Form = args =>
|
18
|
+
<CreateVideoAlbum
|
19
|
+
saveHandler={onSave}
|
20
|
+
cancelHandler={onCancel}
|
21
|
+
saveBtnText='Create'
|
22
|
+
cancelBtnText='Cancel'
|
23
|
+
{...args} />
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import RadioInput from '../../Common Inputs/RadioInput/RadioInput';
|
3
|
+
|
4
|
+
const Form = () => {
|
5
|
+
const list = [
|
6
|
+
{
|
7
|
+
title: 'abc',
|
8
|
+
description: 'abc',
|
9
|
+
imageURL:
|
10
|
+
'https://cdn.pixabay.com/photo/2014/11/30/14/11/cat-551554__340.jpg',
|
11
|
+
},
|
12
|
+
{
|
13
|
+
title: 'bcd',
|
14
|
+
|
15
|
+
description: 'abc',
|
16
|
+
imageURL:
|
17
|
+
'https://cdn.pixabay.com/photo/2014/11/30/14/11/cat-551554__340.jpg',
|
18
|
+
},
|
19
|
+
];
|
20
|
+
console.log('!!!');
|
21
|
+
return (
|
22
|
+
<div>
|
23
|
+
<RadioInput
|
24
|
+
list={list}
|
25
|
+
title='abc'
|
26
|
+
onChange={(changedListItem) => {
|
27
|
+
console.log(changedListItem);
|
28
|
+
}}
|
29
|
+
/>
|
30
|
+
</div>
|
31
|
+
);
|
32
|
+
};
|
33
|
+
|
34
|
+
export default Form;
|