@mohamed-karawia/library 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/chromatic.yml +26 -0
- package/.storybook/main.js +21 -0
- package/.storybook/middleware.js +28 -0
- package/.storybook/preview.js +9 -0
- package/CHANGELOG.md +66 -0
- package/LICENSE +21 -0
- package/README.md +23 -0
- package/README.old.md +3 -0
- package/build-storybook.log +2704 -0
- package/dist/index.js +311 -0
- package/dist/stories/API/API.js +48 -0
- package/dist/stories/API/API.stories.js +24 -0
- package/dist/stories/Agora/Call/Call.js +316 -0
- package/dist/stories/Agora/Chat/Chat.js +107 -0
- package/dist/stories/Agora/Chat/Chat.stories.js +24 -0
- package/dist/stories/Agora/Chat/Components/ChatItem/ChatItem.js +34 -0
- package/dist/stories/Agora/Chat/Components/ChatRoom/ChatRoom.js +199 -0
- package/dist/stories/Agora/Controls/Controls.js +80 -0
- package/dist/stories/Agora/Preview/PreviewCamera.js +247 -0
- package/dist/stories/Agora/Preview/ShareScreen.js +119 -0
- package/dist/stories/Agora/Room/Room.js +114 -0
- package/dist/stories/Agora/Room/Room.stories.js +24 -0
- package/dist/stories/Buttons/Buttons/Buttons.js +59 -0
- package/dist/stories/Buttons/Buttons/Buttons.stories.js +39 -0
- package/dist/stories/Buttons/ReactModal/ReactModal.js +94 -0
- package/dist/stories/Buttons/ReactModal/ReactModal.stories.js +30 -0
- package/dist/stories/Buttons/ReactModal/ReactModalDemo.js +17 -0
- package/dist/stories/Chat/Chat.js +76 -0
- package/dist/stories/Chat/Chat.stories.js +76 -0
- package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.js +59 -0
- package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.js +58 -0
- package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.js +93 -0
- package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.js +56 -0
- package/dist/stories/Common Inputs/CustomDropzone/CustomDropZone.js +88 -0
- package/dist/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.js +47 -0
- package/dist/stories/Common Inputs/CustomSelect/CustomSelect.js +92 -0
- package/dist/stories/Common Inputs/CustomSelect/CustomSelect.stories.js +61 -0
- package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.js +65 -0
- package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.js +48 -0
- package/dist/stories/Common Inputs/DatePicker/DatePicker.js +104 -0
- package/dist/stories/Common Inputs/DatePicker/DatePicker.stories.js +60 -0
- package/dist/stories/Common Inputs/DatePicker/SingleDatePicker.js +97 -0
- package/dist/stories/Common Inputs/DropZone.js +148 -0
- package/dist/stories/Common Inputs/EditorComponent/EditorComponent.js +84 -0
- package/dist/stories/Common Inputs/EditorComponent/EditorComponent.stories.js +62 -0
- package/dist/stories/Common Inputs/EditorComponent/constants.js +41 -0
- package/dist/stories/Common Inputs/Formik/InputField/InputField.js +35 -0
- package/dist/stories/Common Inputs/Formik/InputField/InputField.stories.js +43 -0
- package/dist/stories/Common Inputs/Formik/RadioField/RadioField.js +54 -0
- package/dist/stories/Common Inputs/Formik/RadioField/RadioField.stories.js +60 -0
- package/dist/stories/Common Inputs/RadioInput/RadioInput.js +115 -0
- package/dist/stories/Common Inputs/RadioInput/RadioInput.stories.js +50 -0
- package/dist/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.js +31 -0
- package/dist/stories/Common Inputs/RichTextInput/Components/Gif/Gif.js +88 -0
- package/dist/stories/Common Inputs/RichTextInput/RichTextInput.js +278 -0
- package/dist/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +51 -0
- package/dist/stories/Common Inputs/TextField/TextField.js +65 -0
- package/dist/stories/Common Inputs/TextField/TextField.stories.js +48 -0
- package/dist/stories/Containers/BaseMaterial.js +65 -0
- package/dist/stories/Containers/BaseMaterial.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetBody.js +17 -0
- package/dist/stories/Containers/WidgetExample/WidgetBody.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetExample.js +23 -0
- package/dist/stories/Containers/WidgetExample/WidgetExample.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetHead.js +17 -0
- package/dist/stories/Containers/WidgetExample/WidgetHead.stories.js +24 -0
- package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.js +83 -0
- package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.stories.js +22 -0
- package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.js +81 -0
- package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.js +42 -0
- package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.js +46 -0
- package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.stories.js +65 -0
- package/dist/stories/Enrollment/Guest/FillForm/FillForm.js +64 -0
- package/dist/stories/Enrollment/Guest/FillForm/FillForm.stories.js +48 -0
- package/dist/stories/Events/CreateEvent/CreateEvent.js +110 -0
- package/dist/stories/Events/CreateEvent/CreateEvent.stories.js +30 -0
- package/dist/stories/Events/Event/Event.js +94 -0
- package/dist/stories/Events/Event/Event.stories.js +33 -0
- package/dist/stories/Events/EventsList/EventsList.js +135 -0
- package/dist/stories/Events/EventsList/EventsList.stories.js +44 -0
- package/dist/stories/Forms/AddPhoto/AddPhoto.js +101 -0
- package/dist/stories/Forms/AddPhoto/AddPhoto.stories.js +47 -0
- package/dist/stories/Forms/AddSong/AddSong.js +98 -0
- package/dist/stories/Forms/AddSong/AddSong.stories.js +37 -0
- package/dist/stories/Forms/AddVideo/AddVideo.js +103 -0
- package/dist/stories/Forms/AddVideo/AddVideo.stories.js +33 -0
- package/dist/stories/Forms/Create-Profile/CreateProfile.js +229 -0
- package/dist/stories/Forms/Create-Profile/CreateProfile.stories.js +49 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.js +54 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.js +42 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.js +49 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.js +41 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.js +41 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.js +32 -0
- package/dist/stories/Forms/CreateAlbum/CreateAlbum.js +95 -0
- package/dist/stories/Forms/CreateAlbum/CreateAlbum.stories.js +47 -0
- package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.js +84 -0
- package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.js +58 -0
- package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.js +100 -0
- package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.js +47 -0
- package/dist/stories/Forms/CreateProfile/CreateProfile.js +383 -0
- package/dist/stories/Forms/CreateProfile/CreateProfile.stories.js +24 -0
- package/dist/stories/Forms/CreateProfile-3/CreateProfile.js +324 -0
- package/dist/stories/Forms/CreateProfile-3/CreateProfile.stories.js +24 -0
- package/dist/stories/Forms/CreateUser/CreateUser.js +27 -0
- package/dist/stories/Forms/CreateUser/CreateUser.stories.js +26 -0
- package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.js +84 -0
- package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.js +37 -0
- package/dist/stories/Forms/Form/Form.js +35 -0
- package/dist/stories/Forms/Form/Form.stories.js +24 -0
- package/dist/stories/Forms/NewProfile/NewProfile.js +450 -0
- package/dist/stories/Forms/NewProfile/NewProfile.stories.js +24 -0
- package/dist/stories/Layout/Body/Body.js +30 -0
- package/dist/stories/Layout/Body/Body.stories.js +30 -0
- package/dist/stories/Layout/Center/Center.js +26 -0
- package/dist/stories/Layout/Center/Center.stories.js +24 -0
- package/dist/stories/Layout/Head/Head.js +24 -0
- package/dist/stories/Layout/Head/Head.stories.js +24 -0
- package/dist/stories/Layout/Left/Left.js +28 -0
- package/dist/stories/Layout/Left/Left.stories.js +24 -0
- package/dist/stories/Layout/Right/Right.js +27 -0
- package/dist/stories/Layout/Right/Right.stories.js +24 -0
- package/dist/stories/Library/CreateFolder/CreateFolder.js +87 -0
- package/dist/stories/Library/CreateFolder/CreateFolder.stories.js +45 -0
- package/dist/stories/Library/Folders/Folders.js +126 -0
- package/dist/stories/Library/Folders/Folders.stories.js +55 -0
- package/dist/stories/Library/Notes/Notes.js +135 -0
- package/dist/stories/Library/Notes/Notes.stories.js +42 -0
- package/dist/stories/Library/ViewNote/ViewNote.js +30 -0
- package/dist/stories/Library/ViewNote/ViewNote.stories.js +24 -0
- package/dist/stories/Misc/Thumbnail/Thumbnail.js +118 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +131 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.stories.js +115 -0
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +149 -0
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.stories.js +107 -0
- package/dist/stories/Navbar/Navbar.js +346 -0
- package/dist/stories/Navbar/Navbar.stories.js +41 -0
- package/dist/stories/Pages/Blank/Blank.js +36 -0
- package/dist/stories/Pages/Blank/Blank.stories.js +24 -0
- package/dist/stories/Pages/Centered/Centered.js +34 -0
- package/dist/stories/Pages/Centered/Centered.stories.js +24 -0
- package/dist/stories/Pages/Chat/Chat.js +86 -0
- package/dist/stories/Pages/Chat/Chat.stories.js +74 -0
- package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.js +96 -0
- package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.js +22 -0
- package/dist/stories/Pages/Enrollment/FillForm/FillForm.js +102 -0
- package/dist/stories/Pages/Enrollment/FillForm/FillForm.stories.js +22 -0
- package/dist/stories/Pages/Enrollment/Forms/Forms.js +125 -0
- package/dist/stories/Pages/Enrollment/Forms/Forms.stories.js +22 -0
- package/dist/stories/Pages/Events/Event/Event.js +89 -0
- package/dist/stories/Pages/Events/Event/Event.stories.js +22 -0
- package/dist/stories/Pages/Events/Events/Events.js +125 -0
- package/dist/stories/Pages/Events/Events/Events.stories.js +22 -0
- package/dist/stories/Pages/Library/Folders/Library.js +136 -0
- package/dist/stories/Pages/Library/Folders/Library.stories.js +22 -0
- package/dist/stories/Pages/Library/Notes/Notes.js +123 -0
- package/dist/stories/Pages/Library/Notes/Notes.stories.js +22 -0
- package/dist/stories/Pages/Music/MusicAlbum/Music.js +211 -0
- package/dist/stories/Pages/Music/MusicAlbum/Music.stories.js +22 -0
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +155 -0
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.js +22 -0
- package/dist/stories/Pages/Photos/Album/Album.js +164 -0
- package/dist/stories/Pages/Photos/Album/Album.stories.js +22 -0
- package/dist/stories/Pages/Photos/Albums/Albums.js +151 -0
- package/dist/stories/Pages/Photos/Albums/Albums.stories.js +22 -0
- package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.js +112 -0
- package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.js +22 -0
- package/dist/stories/Pages/Video/VideoAlbum/Video.js +216 -0
- package/dist/stories/Pages/Video/VideoAlbum/Video.stories.js +22 -0
- package/dist/stories/Pages/ViewWorld/ViewWorld.js +244 -0
- package/dist/stories/Pages/ViewWorld/ViewWorld.stories.js +264 -0
- package/dist/stories/Pages/ViewWorld/constatnts.js +172 -0
- package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.js +24 -0
- package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.js +32 -0
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +236 -0
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.stories.js +115 -0
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +156 -0
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.stories.js +102 -0
- package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.js +35 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +81 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.js +40 -0
- package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.js +65 -0
- package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.js +34 -0
- package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.js +66 -0
- package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.js +39 -0
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +93 -0
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.js +27 -0
- package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.js +88 -0
- package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +86 -0
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.js +44 -0
- package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.js +27 -0
- package/dist/stories/Reusable Components/Cards/Card.js +102 -0
- package/dist/stories/Reusable Components/Cards/Card.stories.js +132 -0
- package/dist/stories/Reusable Components/Cards/globalCardStyles.js +70 -0
- package/dist/stories/Reusable Components/Controls/Controls.js +128 -0
- package/dist/stories/Reusable Components/Controls/Controls.stories.js +49 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.js +120 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.stories.js +56 -0
- package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.js +1 -0
- package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +1 -0
- package/dist/stories/Reusable Components/Lists/List.js +1 -0
- package/dist/stories/Reusable Components/Lists/List.stories.js +1 -0
- package/dist/stories/Reusable Components/Mention/Mention.js +72 -0
- package/dist/stories/Reusable Components/Mention/Mention.stories.js +66 -0
- package/dist/stories/Reusable Components/ReactModal/ReactModal.js +83 -0
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +100 -0
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.stories.js +207 -0
- package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.js +64 -0
- package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.js +35 -0
- package/dist/stories/Reusable Components/ReusableList/ReusableList.js +92 -0
- package/dist/stories/Reusable Components/ReusableList/ReusableList.stories.js +84 -0
- package/dist/stories/Reusable Components/SearchCard/SearchCard.js +81 -0
- package/dist/stories/Reusable Components/SearchCard/SearchCard.stories.js +24 -0
- package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.js +48 -0
- package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.js +80 -0
- package/dist/stories/Reusable Components/Spinner/Spinner.js +28 -0
- package/dist/stories/Reusable Components/Spinner/Spinner.stories.js +22 -0
- package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.js +51 -0
- package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.js +80 -0
- package/dist/stories/Reusable Components/commonStyles.js +54 -0
- package/dist/stories/Reusable Components/fakeData.js +112 -0
- package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.js +74 -0
- package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +24 -0
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +151 -0
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.js +101 -0
- package/dist/stories/VideoAlbum/Comments/Comments.js +58 -0
- package/dist/stories/VideoAlbum/Comments/Comments.stories.js +45 -0
- package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.js +235 -0
- package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.js +149 -0
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +110 -0
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.stories.js +49 -0
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +150 -0
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.js +113 -0
- package/dist/stories/Widgets/LogoWidget/LogoWidget.js +32 -0
- package/dist/stories/Widgets/LogoWidget/LogoWidget.stories.js +26 -0
- package/dist/stories/Widgets/MusicPlayer/MusicPlayer.js +49 -0
- package/dist/stories/Widgets/MusicPlayer/MusicPlayer.stories.js +44 -0
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +93 -0
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.js +52 -0
- package/dist/stories/Widgets/SpacesList/SpacesList.js +28 -0
- package/dist/stories/Widgets/SpacesList/SpacesList.stories.js +52 -0
- package/dist/stories/Widgets/SpacesList/SpacesListItem.js +50 -0
- package/dist/stories/Widgets/SpacesList/SpacesListItem.stories.js +24 -0
- package/dist/stories/helpers/util.js +178 -0
- package/package.json +131 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/src/assets/add-svgrepo-com.svg +36 -0
- package/src/assets/basket-svgrepo-com.svg +42 -0
- package/src/assets/bell-svgrepo-com.svg +44 -0
- package/src/assets/compass-svgrepo-com.svg +54 -0
- package/src/assets/home-svgrepo-com.svg +42 -0
- package/src/assets/medal-svgrepo-com.svg +53 -0
- package/src/assets/search-svgrepo-com.svg +42 -0
- package/src/assets/settings-svgrepo-com.svg +47 -0
- package/src/index.js +95 -0
- package/src/stories/API/API.jsx +47 -0
- package/src/stories/API/API.stories.js +10 -0
- package/src/stories/Agora/Call/Call.jsx +213 -0
- package/src/stories/Agora/Chat/Chat.jsx +130 -0
- package/src/stories/Agora/Chat/Chat.stories.jsx +10 -0
- package/src/stories/Agora/Chat/Components/ChatItem/ChatItem.jsx +38 -0
- package/src/stories/Agora/Chat/Components/ChatRoom/ChatRoom.jsx +167 -0
- package/src/stories/Agora/Controls/Controls.jsx +56 -0
- package/src/stories/Agora/Preview/PreviewCamera.jsx +259 -0
- package/src/stories/Agora/Preview/ShareScreen.jsx +58 -0
- package/src/stories/Agora/Room/Room.jsx +85 -0
- package/src/stories/Agora/Room/Room.stories.jsx +10 -0
- package/src/stories/Buttons/Buttons/Buttons.jsx +57 -0
- package/src/stories/Buttons/Buttons/Buttons.stories.jsx +24 -0
- package/src/stories/Buttons/ReactModal/ReactModal.jsx +81 -0
- package/src/stories/Buttons/ReactModal/ReactModal.stories.jsx +18 -0
- package/src/stories/Buttons/ReactModal/ReactModalDemo.jsx +12 -0
- package/src/stories/Chat/Chat.jsx +74 -0
- package/src/stories/Chat/Chat.stories.jsx +59 -0
- package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.jsx +70 -0
- package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.jsx +32 -0
- package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.jsx +98 -0
- package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.jsx +35 -0
- package/src/stories/Common Inputs/CustomDropzone/CustomDropZone.jsx +115 -0
- package/src/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.jsx +26 -0
- package/src/stories/Common Inputs/CustomSelect/CustomSelect.jsx +89 -0
- package/src/stories/Common Inputs/CustomSelect/CustomSelect.stories.jsx +36 -0
- package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.jsx +66 -0
- package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.jsx +31 -0
- package/src/stories/Common Inputs/DatePicker/DatePicker.jsx +105 -0
- package/src/stories/Common Inputs/DatePicker/DatePicker.stories.jsx +47 -0
- package/src/stories/Common Inputs/DatePicker/SingleDatePicker.jsx +91 -0
- package/src/stories/Common Inputs/DropZone.jsx +79 -0
- package/src/stories/Common Inputs/EditorComponent/EditorComponent.jsx +54 -0
- package/src/stories/Common Inputs/EditorComponent/EditorComponent.stories.jsx +60 -0
- package/src/stories/Common Inputs/EditorComponent/constants.js +26 -0
- package/src/stories/Common Inputs/Formik/InputField/InputField.jsx +24 -0
- package/src/stories/Common Inputs/Formik/InputField/InputField.stories.jsx +27 -0
- package/src/stories/Common Inputs/Formik/RadioField/RadioField.jsx +55 -0
- package/src/stories/Common Inputs/Formik/RadioField/RadioField.stories.jsx +41 -0
- package/src/stories/Common Inputs/RadioInput/RadioInput.jsx +108 -0
- package/src/stories/Common Inputs/RadioInput/RadioInput.stories.js +30 -0
- package/src/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.jsx +16 -0
- package/src/stories/Common Inputs/RichTextInput/Components/Gif/Gif.jsx +64 -0
- package/src/stories/Common Inputs/RichTextInput/RichTextInput.jsx +331 -0
- package/src/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +45 -0
- package/src/stories/Common Inputs/TextField/TextField.jsx +66 -0
- package/src/stories/Common Inputs/TextField/TextField.stories.jsx +31 -0
- package/src/stories/Containers/BaseMaterial.jsx +58 -0
- package/src/stories/Containers/BaseMaterial.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetBody.jsx +9 -0
- package/src/stories/Containers/WidgetExample/WidgetBody.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetExample.jsx +19 -0
- package/src/stories/Containers/WidgetExample/WidgetExample.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetHead.jsx +9 -0
- package/src/stories/Containers/WidgetExample/WidgetHead.stories.js +10 -0
- package/src/stories/Enrollment/Admin/CreateForm/CreateForm.jsx +62 -0
- package/src/stories/Enrollment/Admin/CreateForm/CreateForm.stories.jsx +8 -0
- package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.jsx +98 -0
- package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.jsx +36 -0
- package/src/stories/Enrollment/Admin/ViewForms/ViewForms.jsx +40 -0
- package/src/stories/Enrollment/Admin/ViewForms/ViewForms.stories.jsx +66 -0
- package/src/stories/Enrollment/Guest/FillForm/FillForm.jsx +61 -0
- package/src/stories/Enrollment/Guest/FillForm/FillForm.stories.jsx +27 -0
- package/src/stories/Events/CreateEvent/CreateEvent.jsx +96 -0
- package/src/stories/Events/CreateEvent/CreateEvent.stories.jsx +19 -0
- package/src/stories/Events/Event/Event.jsx +113 -0
- package/src/stories/Events/Event/Event.stories.jsx +21 -0
- package/src/stories/Events/EventsList/EventsList.jsx +117 -0
- package/src/stories/Events/EventsList/EventsList.stories.jsx +25 -0
- package/src/stories/Forms/AddPhoto/AddPhoto.jsx +85 -0
- package/src/stories/Forms/AddPhoto/AddPhoto.stories.jsx +37 -0
- package/src/stories/Forms/AddSong/AddSong.jsx +86 -0
- package/src/stories/Forms/AddSong/AddSong.stories.jsx +26 -0
- package/src/stories/Forms/AddVideo/AddVideo.jsx +78 -0
- package/src/stories/Forms/AddVideo/AddVideo.stories.jsx +20 -0
- package/src/stories/Forms/Create-Profile/CreateProfile.jsx +278 -0
- package/src/stories/Forms/Create-Profile/CreateProfile.stories.jsx +36 -0
- package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.jsx +63 -0
- package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.jsx +27 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.jsx +58 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.jsx +26 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.jsx +21 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.jsx +18 -0
- package/src/stories/Forms/CreateAlbum/CreateAlbum.jsx +82 -0
- package/src/stories/Forms/CreateAlbum/CreateAlbum.stories.jsx +37 -0
- package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.jsx +63 -0
- package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.jsx +44 -0
- package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.jsx +87 -0
- package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.jsx +38 -0
- package/src/stories/Forms/CreateProfile/CreateProfile.jsx +556 -0
- package/src/stories/Forms/CreateProfile/CreateProfile.stories.js +10 -0
- package/src/stories/Forms/CreateProfile-3/CreateProfile.jsx +488 -0
- package/src/stories/Forms/CreateProfile-3/CreateProfile.stories.js +10 -0
- package/src/stories/Forms/CreateUser/CreateUser.jsx +13 -0
- package/src/stories/Forms/CreateUser/CreateUser.stories.js +10 -0
- package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.jsx +78 -0
- package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.jsx +23 -0
- package/src/stories/Forms/Form/Form.jsx +34 -0
- package/src/stories/Forms/Form/Form.stories.js +10 -0
- package/src/stories/Forms/NewProfile/NewProfile.jsx +464 -0
- package/src/stories/Forms/NewProfile/NewProfile.stories.jsx +10 -0
- package/src/stories/Forms/NewProfile/presets.json +9 -0
- package/src/stories/Layout/Body/Body.jsx +24 -0
- package/src/stories/Layout/Body/Body.stories.js +26 -0
- package/src/stories/Layout/Center/Center.jsx +16 -0
- package/src/stories/Layout/Center/Center.stories.js +14 -0
- package/src/stories/Layout/Head/Head.jsx +15 -0
- package/src/stories/Layout/Head/Head.stories.js +10 -0
- package/src/stories/Layout/Left/Left.jsx +21 -0
- package/src/stories/Layout/Left/Left.stories.js +14 -0
- package/src/stories/Layout/Right/Right.jsx +17 -0
- package/src/stories/Layout/Right/Right.stories.js +14 -0
- package/src/stories/Library/CreateFolder/CreateFolder.jsx +78 -0
- package/src/stories/Library/CreateFolder/CreateFolder.stories.jsx +32 -0
- package/src/stories/Library/Folders/Folders.jsx +117 -0
- package/src/stories/Library/Folders/Folders.stories.jsx +34 -0
- package/src/stories/Library/Notes/Notes.jsx +117 -0
- package/src/stories/Library/Notes/Notes.stories.jsx +24 -0
- package/src/stories/Library/ViewNote/ViewNote.jsx +25 -0
- package/src/stories/Library/ViewNote/ViewNote.stories.jsx +16 -0
- package/src/stories/Misc/Thumbnail/Thumbnail.jsx +79 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +111 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +134 -0
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.stories.jsx +57 -0
- package/src/stories/Navbar/Navbar.jsx +350 -0
- package/src/stories/Navbar/Navbar.stories.js +25 -0
- package/src/stories/Pages/Blank/Blank.jsx +32 -0
- package/src/stories/Pages/Blank/Blank.stories.js +10 -0
- package/src/stories/Pages/Centered/Centered.jsx +31 -0
- package/src/stories/Pages/Centered/Centered.stories.js +14 -0
- package/src/stories/Pages/Chat/Chat.jsx +82 -0
- package/src/stories/Pages/Chat/Chat.stories.jsx +53 -0
- package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.jsx +102 -0
- package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.jsx +8 -0
- package/src/stories/Pages/Enrollment/FillForm/FillForm.jsx +96 -0
- package/src/stories/Pages/Enrollment/FillForm/FillForm.stories.jsx +8 -0
- package/src/stories/Pages/Enrollment/Forms/Forms.jsx +129 -0
- package/src/stories/Pages/Enrollment/Forms/Forms.stories.jsx +8 -0
- package/src/stories/Pages/Events/Event/Event.jsx +88 -0
- package/src/stories/Pages/Events/Event/Event.stories.jsx +8 -0
- package/src/stories/Pages/Events/Events/Events.jsx +110 -0
- package/src/stories/Pages/Events/Events/Events.stories.jsx +8 -0
- package/src/stories/Pages/Library/Folders/Library.jsx +118 -0
- package/src/stories/Pages/Library/Folders/Library.stories.jsx +8 -0
- package/src/stories/Pages/Library/Notes/Notes.jsx +109 -0
- package/src/stories/Pages/Library/Notes/Notes.stories.jsx +8 -0
- package/src/stories/Pages/Music/MusicAlbum/Music.jsx +159 -0
- package/src/stories/Pages/Music/MusicAlbum/Music.stories.jsx +8 -0
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +138 -0
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.jsx +8 -0
- package/src/stories/Pages/Photos/Album/Album.jsx +120 -0
- package/src/stories/Pages/Photos/Album/Album.stories.jsx +8 -0
- package/src/stories/Pages/Photos/Albums/Albums.jsx +144 -0
- package/src/stories/Pages/Photos/Albums/Albums.stories.jsx +8 -0
- package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.jsx +91 -0
- package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.jsx +8 -0
- package/src/stories/Pages/Video/VideoAlbum/Video.jsx +166 -0
- package/src/stories/Pages/Video/VideoAlbum/Video.stories.jsx +8 -0
- package/src/stories/Pages/ViewWorld/ViewWorld.jsx +193 -0
- package/src/stories/Pages/ViewWorld/ViewWorld.stories.js +270 -0
- package/src/stories/Pages/ViewWorld/constatnts.js +158 -0
- package/src/stories/Pages/ViewWorld/styles.json +18 -0
- package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.jsx +17 -0
- package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.jsx +20 -0
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +250 -0
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +146 -0
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.stories.jsx +59 -0
- package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.jsx +74 -0
- package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.jsx +22 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +94 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.jsx +21 -0
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +79 -0
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.jsx +21 -0
- package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.jsx +75 -0
- package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.jsx +24 -0
- package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.jsx +61 -0
- package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.jsx +22 -0
- package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.jsx +67 -0
- package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.jsx +25 -0
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +117 -0
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.jsx +9 -0
- package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.jsx +126 -0
- package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.jsx +23 -0
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +113 -0
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.jsx +29 -0
- package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.jsx +86 -0
- package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.jsx +14 -0
- package/src/stories/Reusable Components/Cards/Card.jsx +119 -0
- package/src/stories/Reusable Components/Cards/Card.stories.jsx +118 -0
- package/src/stories/Reusable Components/Cards/globalCardStyles.js +54 -0
- package/src/stories/Reusable Components/Controls/Controls.jsx +137 -0
- package/src/stories/Reusable Components/Controls/Controls.stories.jsx +24 -0
- package/src/stories/Reusable Components/Gallery/Gallery.jsx +110 -0
- package/src/stories/Reusable Components/Gallery/Gallery.stories.jsx +43 -0
- package/src/stories/Reusable Components/Lists/Cards/ListCard-1.jsx +0 -0
- package/src/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +0 -0
- package/src/stories/Reusable Components/Lists/List.jsx +0 -0
- package/src/stories/Reusable Components/Lists/List.stories.js +0 -0
- package/src/stories/Reusable Components/Mention/Mention.jsx +69 -0
- package/src/stories/Reusable Components/Mention/Mention.stories.jsx +55 -0
- package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +76 -0
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +121 -0
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.stories.jsx +167 -0
- package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.jsx +76 -0
- package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.jsx +22 -0
- package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +103 -0
- package/src/stories/Reusable Components/ReusableList/ReusableList.stories.jsx +70 -0
- package/src/stories/Reusable Components/SearchCard/SearchCard.jsx +89 -0
- package/src/stories/Reusable Components/SearchCard/SearchCard.stories.js +10 -0
- package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.jsx +48 -0
- package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.jsx +78 -0
- package/src/stories/Reusable Components/Spinner/Spinner.jsx +82 -0
- package/src/stories/Reusable Components/Spinner/Spinner.stories.jsx +8 -0
- package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.jsx +59 -0
- package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.jsx +61 -0
- package/src/stories/Reusable Components/commonStyles.js +47 -0
- package/src/stories/Reusable Components/fakeData.js +95 -0
- package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.jsx +102 -0
- package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +10 -0
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +130 -0
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.jsx +59 -0
- package/src/stories/VideoAlbum/Comments/Comments.jsx +58 -0
- package/src/stories/VideoAlbum/Comments/Comments.stories.jsx +18 -0
- package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.jsx +214 -0
- package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.jsx +82 -0
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +101 -0
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.stories.jsx +23 -0
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +131 -0
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.jsx +57 -0
- package/src/stories/Widgets/LogoWidget/LogoWidget.jsx +21 -0
- package/src/stories/Widgets/LogoWidget/LogoWidget.stories.js +12 -0
- package/src/stories/Widgets/MusicPlayer/MusicPlayer.jsx +64 -0
- package/src/stories/Widgets/MusicPlayer/MusicPlayer.stories.jsx +23 -0
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +107 -0
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.jsx +33 -0
- package/src/stories/Widgets/SpacesList/SpacesList.jsx +16 -0
- package/src/stories/Widgets/SpacesList/SpacesList.stories.jsx +27 -0
- package/src/stories/Widgets/SpacesList/SpacesListItem.jsx +75 -0
- package/src/stories/Widgets/SpacesList/SpacesListItem.stories.jsx +10 -0
- package/src/stories/assets/camera.svg +1 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/images/album1.jpg +0 -0
- package/src/stories/assets/images/album2.jpg +0 -0
- package/src/stories/assets/images/album3.jpg +0 -0
- package/src/stories/assets/images/album4.jpg +0 -0
- package/src/stories/assets/images/album5.jpg +0 -0
- package/src/stories/assets/images/album6.jpg +0 -0
- package/src/stories/assets/images/art.jpg +0 -0
- package/src/stories/assets/images/dance.jpg +0 -0
- package/src/stories/assets/images/football.jpg +0 -0
- package/src/stories/assets/images/music.jpg +0 -0
- package/src/stories/assets/images/music1.jpg +0 -0
- package/src/stories/assets/images/music2.jpg +0 -0
- package/src/stories/assets/images/music3.jpg +0 -0
- package/src/stories/assets/images/music4.jpg +0 -0
- package/src/stories/assets/images/music5.jpg +0 -0
- package/src/stories/assets/images/music6.jpg +0 -0
- package/src/stories/assets/images/reset.png +0 -0
- package/src/stories/assets/images/robotics.jpg +0 -0
- package/src/stories/assets/images/tennis.jpg +0 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/reset.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/helpers/util.js +66 -0
@@ -0,0 +1,331 @@
|
|
1
|
+
import { Gif } from '@giphy/react-components';
|
2
|
+
import { Emoji as SingleEmoji } from 'emoji-mart';
|
3
|
+
import React, { useState, useEffect } from 'react';
|
4
|
+
import { BiGift, BiPlusCircle } from 'react-icons/bi';
|
5
|
+
import styled from 'styled-components';
|
6
|
+
import ReactModalComponent from '../../Reusable Components/ReactModal/ReactModal';
|
7
|
+
import MentionArea from '../../Reusable Components/Mention/Mention';
|
8
|
+
import Emoji from './Components/Emoji/Emoji';
|
9
|
+
import Gify from './Components/Gif/Gif';
|
10
|
+
const RichTextInput = ({ users, ...props }) => {
|
11
|
+
const [show, setShow] = useState(false);
|
12
|
+
const [source, setSource] = useState(0);
|
13
|
+
const [text, setText] = useState('');
|
14
|
+
const [file, setFile] = useState();
|
15
|
+
const [gif, setGif] = useState();
|
16
|
+
const emojis = [
|
17
|
+
'smiley',
|
18
|
+
'wink',
|
19
|
+
'innocent',
|
20
|
+
'yum',
|
21
|
+
'joy',
|
22
|
+
'money_mouth_face',
|
23
|
+
];
|
24
|
+
const [displayEmoji, setDisplayEmoji] = useState(emojis[0]);
|
25
|
+
const customStyles = {
|
26
|
+
content: {
|
27
|
+
borderColor: 'black',
|
28
|
+
boxShadow: '',
|
29
|
+
backgroundColor: '',
|
30
|
+
padding: '',
|
31
|
+
height: '50%',
|
32
|
+
width: '50%',
|
33
|
+
color: '',
|
34
|
+
borderRadius: '',
|
35
|
+
top: '50%',
|
36
|
+
left: '50%',
|
37
|
+
right: 'auto',
|
38
|
+
bottom: 'auto',
|
39
|
+
marginRight: '-50%',
|
40
|
+
transform: 'translate(-50%, -50%)',
|
41
|
+
},
|
42
|
+
};
|
43
|
+
|
44
|
+
|
45
|
+
return (
|
46
|
+
<div>
|
47
|
+
<Container>
|
48
|
+
<LeftContainer>
|
49
|
+
<FileLabel>
|
50
|
+
<BiPlusCircle
|
51
|
+
style={{ width: '30px', height: '20px', color: 'grey' }}
|
52
|
+
onMouseOver={(e) => (e.target.style.color = 'black')}
|
53
|
+
onMouseOut={(e) => (e.target.style.color = 'grey')}
|
54
|
+
/>
|
55
|
+
<FileInput
|
56
|
+
type='file'
|
57
|
+
name='file'
|
58
|
+
onChange={(e) => {
|
59
|
+
const objectURL = URL.createObjectURL(e.target.files[0]);
|
60
|
+
setFile({ url: objectURL, fileName: e.target.files[0].name });
|
61
|
+
setShow(true);
|
62
|
+
}}
|
63
|
+
onClick={(e) => (e.target.value = null)}
|
64
|
+
/>
|
65
|
+
</FileLabel>
|
66
|
+
</LeftContainer>
|
67
|
+
<CenterContainer>
|
68
|
+
{/* <TextInput
|
69
|
+
placeholder='Type your message'
|
70
|
+
value={text}
|
71
|
+
onChange={(e) => {
|
72
|
+
setText(e.target.value);
|
73
|
+
}}
|
74
|
+
/> */}
|
75
|
+
{/* <CustomAutoComplete
|
76
|
+
items={users}
|
77
|
+
/> */}
|
78
|
+
{
|
79
|
+
users ?
|
80
|
+
<MentionArea value={text} handleOnChange={(newValue) => setText(newValue)} users={users} />
|
81
|
+
:
|
82
|
+
<TextInput
|
83
|
+
placeholder='Type your message'
|
84
|
+
value={text}
|
85
|
+
onChange={(e) => {
|
86
|
+
setText(e.target.value);
|
87
|
+
}}
|
88
|
+
/>
|
89
|
+
}
|
90
|
+
</CenterContainer>
|
91
|
+
<RightContainer>
|
92
|
+
<GifTab
|
93
|
+
onClick={() => {
|
94
|
+
setShow((show) => !show);
|
95
|
+
setSource(0);
|
96
|
+
}}
|
97
|
+
>
|
98
|
+
<BiGift
|
99
|
+
style={{ width: '50px', height: '25px', color: 'grey' }}
|
100
|
+
onMouseOver={(e) => (e.target.style.color = 'black')}
|
101
|
+
onMouseOut={(e) => (e.target.style.color = 'grey')}
|
102
|
+
/>
|
103
|
+
</GifTab>
|
104
|
+
<EmojiTab
|
105
|
+
onClick={() => {
|
106
|
+
setShow((show) => !show);
|
107
|
+
setSource(1);
|
108
|
+
}}
|
109
|
+
>
|
110
|
+
<SingleEmoji
|
111
|
+
emoji={displayEmoji}
|
112
|
+
onOver={(emoji, e) => {
|
113
|
+
let i = emojis.indexOf(displayEmoji);
|
114
|
+
if (i === emojis.length - 1) i = -1;
|
115
|
+
setDisplayEmoji(emojis[i + 1]);
|
116
|
+
emoji = displayEmoji;
|
117
|
+
}}
|
118
|
+
size={24}
|
119
|
+
/>
|
120
|
+
</EmojiTab>
|
121
|
+
</RightContainer>
|
122
|
+
</Container>
|
123
|
+
{show && (
|
124
|
+
<ReactModalComponent
|
125
|
+
customStyle={customStyles}
|
126
|
+
modalIsOpen={show}
|
127
|
+
closeModal={(show) => {
|
128
|
+
setShow(!show);
|
129
|
+
setFile('');
|
130
|
+
}}
|
131
|
+
exitModalButton={(e) => (
|
132
|
+
// <button onClick={e}>{'Close'}</button>
|
133
|
+
<div></div>
|
134
|
+
)}
|
135
|
+
>
|
136
|
+
{/* <Gify/> */}
|
137
|
+
{/* <Emoji /> */}
|
138
|
+
<ModalContainer>
|
139
|
+
{!file ? (
|
140
|
+
<div>
|
141
|
+
<TopBar>
|
142
|
+
<Tab
|
143
|
+
selected={source === 0 ? true : false}
|
144
|
+
onClick={() => setSource(0)}
|
145
|
+
>
|
146
|
+
GIFs
|
147
|
+
</Tab>
|
148
|
+
<Tab
|
149
|
+
selected={source === 1 ? true : false}
|
150
|
+
onClick={() => setSource(1)}
|
151
|
+
>
|
152
|
+
Emoji
|
153
|
+
</Tab>
|
154
|
+
</TopBar>
|
155
|
+
{source === 0 ? (
|
156
|
+
<Gify
|
157
|
+
setDisplayGif={(gif) => {
|
158
|
+
setShow(false);
|
159
|
+
setGif(gif);
|
160
|
+
}}
|
161
|
+
/>
|
162
|
+
) : (
|
163
|
+
<Emoji
|
164
|
+
setEmoji={(emoji) => {
|
165
|
+
let temp = `${text}${emoji.native}`;
|
166
|
+
setText(temp);
|
167
|
+
}}
|
168
|
+
/>
|
169
|
+
)}
|
170
|
+
</div>
|
171
|
+
) : (
|
172
|
+
<FileContainer>
|
173
|
+
<PreviewImage src={file.url} />
|
174
|
+
<FileName>{file.fileName}</FileName>
|
175
|
+
<FileInputContainer>
|
176
|
+
<FileInputText
|
177
|
+
placeholder='Type your message'
|
178
|
+
value={text}
|
179
|
+
onChange={(e) => {
|
180
|
+
setText(e.target.value);
|
181
|
+
}}
|
182
|
+
/>
|
183
|
+
<div style={{ width: '10%' }}>
|
184
|
+
<EmojiTab
|
185
|
+
onClick={() => {
|
186
|
+
setShow((show) => !show);
|
187
|
+
setSource(1);
|
188
|
+
}}
|
189
|
+
>
|
190
|
+
<SingleEmoji
|
191
|
+
emoji={displayEmoji}
|
192
|
+
onOver={(emoji, e) => {
|
193
|
+
let i = emojis.indexOf(displayEmoji);
|
194
|
+
if (i === emojis.length - 1) i = -1;
|
195
|
+
setDisplayEmoji(emojis[i + 1]);
|
196
|
+
emoji = displayEmoji;
|
197
|
+
}}
|
198
|
+
size={26}
|
199
|
+
/>
|
200
|
+
</EmojiTab>
|
201
|
+
</div>
|
202
|
+
</FileInputContainer>
|
203
|
+
</FileContainer>
|
204
|
+
)}
|
205
|
+
</ModalContainer>
|
206
|
+
</ReactModalComponent>
|
207
|
+
)}
|
208
|
+
{gif && <Gif gif={gif} width='200' />}
|
209
|
+
</div>
|
210
|
+
);
|
211
|
+
};
|
212
|
+
|
213
|
+
const Container = styled.div`
|
214
|
+
display: flex;
|
215
|
+
width: 100%;
|
216
|
+
border: 1px solid grey;
|
217
|
+
align-items: center;
|
218
|
+
`;
|
219
|
+
const LeftContainer = styled.div`
|
220
|
+
width: 5vw;
|
221
|
+
color: white;
|
222
|
+
display: flex;
|
223
|
+
justify-content: center;
|
224
|
+
align-items: center;
|
225
|
+
text-align: center;
|
226
|
+
flex-direction: column;
|
227
|
+
:hover {
|
228
|
+
font-weight: 600;
|
229
|
+
}
|
230
|
+
`;
|
231
|
+
|
232
|
+
const CenterContainer = styled.div`
|
233
|
+
width: 100%;
|
234
|
+
`;
|
235
|
+
const TextInput = styled.input`
|
236
|
+
width: 100%;
|
237
|
+
height: 26px;
|
238
|
+
border: 0px;
|
239
|
+
outline: none;
|
240
|
+
margin-right: 2%;
|
241
|
+
margin-left: 1%;
|
242
|
+
`;
|
243
|
+
const RightContainer = styled.div`
|
244
|
+
width: 10vw;
|
245
|
+
align-self: flex-end;
|
246
|
+
flex-direction: row;
|
247
|
+
display: flex;
|
248
|
+
`;
|
249
|
+
const GifTab = styled.div`
|
250
|
+
height: 5vh;
|
251
|
+
width: 5vw;
|
252
|
+
align-items: center;
|
253
|
+
justify-content: center;
|
254
|
+
:hover {
|
255
|
+
cursor: pointer;
|
256
|
+
}
|
257
|
+
`;
|
258
|
+
const EmojiTab = styled.div`
|
259
|
+
height: 100%;
|
260
|
+
width: 100%;
|
261
|
+
display: flex;
|
262
|
+
align-items: center;
|
263
|
+
justify-content: center;
|
264
|
+
:hover {
|
265
|
+
cursor: pointer;
|
266
|
+
}
|
267
|
+
`;
|
268
|
+
const ModalContainer = styled.div``;
|
269
|
+
|
270
|
+
const TopBar = styled.div`
|
271
|
+
display: flex;
|
272
|
+
border: 1px solid #fdfdfd;
|
273
|
+
`;
|
274
|
+
|
275
|
+
const Tab = styled.label`
|
276
|
+
border: ${(props) => (props.selected ? '1px solid grey' : '')};
|
277
|
+
padding-left: 10px;
|
278
|
+
padding-right: 10px;
|
279
|
+
background-color: ${(props) => (props.selected ? 'grey' : 'white')};
|
280
|
+
color: ${(props) => (props.selected ? 'white' : 'black')};
|
281
|
+
:hover {
|
282
|
+
cursor: pointer;
|
283
|
+
font-weight: 550;
|
284
|
+
}
|
285
|
+
`;
|
286
|
+
|
287
|
+
const FileInput = styled.input`
|
288
|
+
display: none;
|
289
|
+
`;
|
290
|
+
|
291
|
+
const FileLabel = styled.label`
|
292
|
+
margin-top: auto;
|
293
|
+
align-items: center;
|
294
|
+
justify-content: center;
|
295
|
+
:hover {
|
296
|
+
cursor: pointer;
|
297
|
+
}
|
298
|
+
`;
|
299
|
+
|
300
|
+
const PreviewImage = styled.img`
|
301
|
+
height: 30%;
|
302
|
+
width: 30%;
|
303
|
+
margin-left: 5%;
|
304
|
+
`;
|
305
|
+
|
306
|
+
const FileContainer = styled.div`
|
307
|
+
display: flex;
|
308
|
+
flex-direction: column;
|
309
|
+
`;
|
310
|
+
const FileName = styled.label`
|
311
|
+
margin-left: 5%;
|
312
|
+
margin-top: 2%;
|
313
|
+
font-size: large;
|
314
|
+
font-weight: 600;
|
315
|
+
`;
|
316
|
+
const FileInputText = styled.input`
|
317
|
+
border: 0px;
|
318
|
+
outline: none;
|
319
|
+
width: 90%;
|
320
|
+
`;
|
321
|
+
const FileInputContainer = styled.div`
|
322
|
+
border: 1px solid black;
|
323
|
+
width: 93%;
|
324
|
+
height: 30px;
|
325
|
+
display: flex;
|
326
|
+
margin-right: 2%;
|
327
|
+
margin-top: 3%;
|
328
|
+
margin-left: 5%;
|
329
|
+
justify-content: space-between;
|
330
|
+
`;
|
331
|
+
export default RichTextInput;
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import RichTextInput from './RichTextInput';
|
4
|
+
|
5
|
+
export default {
|
6
|
+
title: 'Common Inputs/RichTextInput',
|
7
|
+
component: RichTextInput,
|
8
|
+
};
|
9
|
+
|
10
|
+
const users = [
|
11
|
+
{
|
12
|
+
id: 'walter',
|
13
|
+
display: 'Walter White',
|
14
|
+
},
|
15
|
+
{
|
16
|
+
id: 'jesse',
|
17
|
+
display: 'Jesse Pinkman',
|
18
|
+
},
|
19
|
+
{
|
20
|
+
id: 'gus',
|
21
|
+
display: 'Gustavo "Gus" Fring',
|
22
|
+
},
|
23
|
+
{
|
24
|
+
id: 'saul',
|
25
|
+
display: 'Saul Goodman',
|
26
|
+
},
|
27
|
+
{
|
28
|
+
id: 'hank',
|
29
|
+
display: 'Hank Schrader',
|
30
|
+
},
|
31
|
+
{
|
32
|
+
id: 'skyler',
|
33
|
+
display: 'Skyler White',
|
34
|
+
},
|
35
|
+
{
|
36
|
+
id: 'mike',
|
37
|
+
display: 'Mike Ehrmantraut',
|
38
|
+
},
|
39
|
+
{
|
40
|
+
id: 'lydia',
|
41
|
+
display: 'Lydìã Rôdarté-Qüayle',
|
42
|
+
},
|
43
|
+
]
|
44
|
+
|
45
|
+
export const Default = (args) => <RichTextInput users={users} {...args} />
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import styled from 'styled-components';
|
4
|
+
import PropTypes from "prop-types";
|
5
|
+
// Formik
|
6
|
+
import { useField } from 'formik'
|
7
|
+
|
8
|
+
const TextField = (props) => {
|
9
|
+
const [field, meta] = useField(props)
|
10
|
+
return (
|
11
|
+
<TextFieldWrapper>
|
12
|
+
<Label htmlFor={field.name} {...props}>{props.label}</Label>
|
13
|
+
<Input {...field} {...props} />
|
14
|
+
{(meta.error && meta.touched) && <Error>{meta.error}</Error>}
|
15
|
+
</TextFieldWrapper>
|
16
|
+
)
|
17
|
+
}
|
18
|
+
|
19
|
+
const TextFieldWrapper = styled.div`
|
20
|
+
display: flex;
|
21
|
+
flex-direction: column;
|
22
|
+
font-family: sans-serif;
|
23
|
+
`
|
24
|
+
const Label = styled.label`
|
25
|
+
margin-bottom: 5px;
|
26
|
+
text-transform: capitalize;
|
27
|
+
font-size: ${props => props.labelFontSize || 15}px;
|
28
|
+
color: ${props => props.labelColor || 'black'};
|
29
|
+
`
|
30
|
+
|
31
|
+
const Input = styled.input`
|
32
|
+
padding: ${props => props.padding || 5}px;
|
33
|
+
border: ${props => props.borderSize || 1}px solid;
|
34
|
+
border-top-color: ${props => props.borderTopColor || '#9e9e9e'};
|
35
|
+
border-bottom-color: ${props => props.borderBottomColor || '#9e9e9e'};
|
36
|
+
border-right-color: ${props => props.borderRightColor || '#9e9e9e'};
|
37
|
+
border-left-color: ${props => props.borderLeftColor || '#9e9e9e'};
|
38
|
+
border-radius: ${props => props.borderRadius || 0}px;
|
39
|
+
font-size: ${props => props.inputFontSize || 15}px;
|
40
|
+
color: ${props => props.inputFontColor || 'black'};
|
41
|
+
`
|
42
|
+
|
43
|
+
const Error = styled.p`
|
44
|
+
color: red;
|
45
|
+
margin-top: 3px;
|
46
|
+
`
|
47
|
+
|
48
|
+
|
49
|
+
TextField.defaultProps = {};
|
50
|
+
|
51
|
+
TextField.propTypes = {
|
52
|
+
label: PropTypes.string,
|
53
|
+
labelFontSize: PropTypes.number,
|
54
|
+
labelColor: PropTypes.string,
|
55
|
+
padding: PropTypes.number,
|
56
|
+
borderSize: PropTypes.number,
|
57
|
+
borderTopColor: PropTypes.string,
|
58
|
+
borderBottomColor: PropTypes.string,
|
59
|
+
borderRightColor: PropTypes.string,
|
60
|
+
borderLeftColor: PropTypes.string,
|
61
|
+
borderRadius: PropTypes.number,
|
62
|
+
inputFontSize: PropTypes.number,
|
63
|
+
inputFontColor: PropTypes.string
|
64
|
+
};
|
65
|
+
|
66
|
+
export default TextField
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import withFormik from "storybook-formik";
|
4
|
+
import * as Yup from 'yup';
|
5
|
+
|
6
|
+
import CustomTextField from './TextField';
|
7
|
+
|
8
|
+
const formSchema = Yup.object().shape({
|
9
|
+
userName: Yup.string()
|
10
|
+
.required("Required"),
|
11
|
+
});
|
12
|
+
|
13
|
+
export default {
|
14
|
+
title: 'Common Inputs/TextField',
|
15
|
+
component: CustomTextField,
|
16
|
+
decorators: [withFormik],
|
17
|
+
parameters: {
|
18
|
+
formik: {
|
19
|
+
initialValues: {
|
20
|
+
userName: '',
|
21
|
+
validationSchema: formSchema
|
22
|
+
},
|
23
|
+
validationSchema: formSchema,
|
24
|
+
},
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
export const TextInput = (args) => {
|
29
|
+
|
30
|
+
return <CustomTextField name="userName" label="User Name" {...args} />
|
31
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import PropTypes from "prop-types";
|
3
|
+
|
4
|
+
import styled from "styled-components";
|
5
|
+
|
6
|
+
const BaseMaterial = props => {
|
7
|
+
return (
|
8
|
+
<StyledBaseMaterial
|
9
|
+
borderWidth={props.borderWidth}
|
10
|
+
backgroundColor={props.backgroundColor}
|
11
|
+
borderColor={props.borderColor}
|
12
|
+
boxShadow={props.boxShadow}
|
13
|
+
borderRadius={props.borderRadius}
|
14
|
+
padding={props.padding}
|
15
|
+
fontFamily={props.fontFamily}
|
16
|
+
inputBGColor={props.inputBGColor}
|
17
|
+
fill={props.fill}
|
18
|
+
paddingLeft={props.paddingLeft}
|
19
|
+
paddingRight={props.paddingRight}
|
20
|
+
verticalSpacing={props.verticalSpacing}
|
21
|
+
>
|
22
|
+
{props.children}
|
23
|
+
</StyledBaseMaterial>
|
24
|
+
);
|
25
|
+
};
|
26
|
+
|
27
|
+
const StyledBaseMaterial = styled.div`
|
28
|
+
box-sizing: border-box;
|
29
|
+
margin-top: ${props => props.verticalSpacing || 0}px;
|
30
|
+
margin-bottom: ${props => props.verticalSpacing || 0}px;
|
31
|
+
width: ${props => props.fill ? "100%" : "auto"};
|
32
|
+
padding: ${props => props.padding || 0}px;
|
33
|
+
border-width: ${props => props.borderWidth || 0}px;
|
34
|
+
padding-left: ${props => props.paddingLeft || "auto"}px;
|
35
|
+
padding-right: ${props => props.paddingRight || "auto"}px;
|
36
|
+
background: ${props => props.backgroundColor || ""};
|
37
|
+
border-color: ${props => props.borderColor || ""};
|
38
|
+
border-style: solid;
|
39
|
+
box-shadow: ${props => props.boxShadow || ""};
|
40
|
+
border-radius: ${props => props.borderRadius || ""}px;
|
41
|
+
font-family: ${props => props.fontFamily || "Arial"};
|
42
|
+
> input {
|
43
|
+
background-color: ${props => props.inputBGColor || ""};
|
44
|
+
}
|
45
|
+
`;
|
46
|
+
|
47
|
+
BaseMaterial.defaultProps = {};
|
48
|
+
|
49
|
+
BaseMaterial.propTypes = {
|
50
|
+
borderWidth: PropTypes.number,
|
51
|
+
borderColor: PropTypes.string,
|
52
|
+
boxShadow: PropTypes.string,
|
53
|
+
backgroundColor: PropTypes.string,
|
54
|
+
borderRadius: PropTypes.number,
|
55
|
+
padding: PropTypes.number
|
56
|
+
};
|
57
|
+
|
58
|
+
export default BaseMaterial;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import React from "react"
|
2
|
+
|
3
|
+
import BaseMaterial from "../BaseMaterial"
|
4
|
+
|
5
|
+
import WidgetHead from "./WidgetHead"
|
6
|
+
import WidgetBody from "./WidgetBody"
|
7
|
+
|
8
|
+
const WidgetExample = props => (
|
9
|
+
<BaseMaterial>
|
10
|
+
<WidgetHead>
|
11
|
+
<p>Head</p>
|
12
|
+
</WidgetHead>
|
13
|
+
<WidgetBody>
|
14
|
+
<p>Body</p>
|
15
|
+
</WidgetBody>
|
16
|
+
</BaseMaterial>
|
17
|
+
)
|
18
|
+
|
19
|
+
export default WidgetExample
|
@@ -0,0 +1,62 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
|
4
|
+
import Form from '../../../Reusable Components/ReusableForm/ReusableForm';
|
5
|
+
import Buttons from '../../../Buttons/Buttons/Buttons';
|
6
|
+
import TextField from '../../../Common Inputs/TextField/TextField';
|
7
|
+
|
8
|
+
const AddQuestion = (props) => {
|
9
|
+
const [sections, setSections] = useState([])
|
10
|
+
const [showSecondForm, setShowSecondForm] = useState(false);
|
11
|
+
|
12
|
+
const onAddType = () => {
|
13
|
+
setShowSecondForm(true)
|
14
|
+
setSections([...sections, {
|
15
|
+
title: "Question",
|
16
|
+
body: [(<TextField label={`Question ${sections.length + 1}`} name={`question${sections.length}`} />)],
|
17
|
+
hideTitle: true
|
18
|
+
}])
|
19
|
+
}
|
20
|
+
|
21
|
+
const onAddQuestion = (values) => {
|
22
|
+
console.log(values)
|
23
|
+
}
|
24
|
+
|
25
|
+
const cancelHandler = () => {
|
26
|
+
alert('Form Canceled')
|
27
|
+
}
|
28
|
+
return (
|
29
|
+
<Container>
|
30
|
+
<Buttons
|
31
|
+
label='Add Question'
|
32
|
+
size="md"
|
33
|
+
variant="primary"
|
34
|
+
type="submit"
|
35
|
+
buttonClicked={onAddType}
|
36
|
+
/>
|
37
|
+
|
38
|
+
{showSecondForm &&
|
39
|
+
<Form
|
40
|
+
sections={sections}
|
41
|
+
initialValues={{}}
|
42
|
+
bodyPadding={10}
|
43
|
+
saveBtnText="Add"
|
44
|
+
cancelBtnText="Cancel"
|
45
|
+
saveHandler={onAddQuestion}
|
46
|
+
cancelHandler={cancelHandler} />}
|
47
|
+
</Container>
|
48
|
+
)
|
49
|
+
}
|
50
|
+
|
51
|
+
const Container = styled.div`
|
52
|
+
padding: 10px;
|
53
|
+
background-color: 'white';
|
54
|
+
display: flex;
|
55
|
+
flex-direction: column;
|
56
|
+
|
57
|
+
&(:first-child){
|
58
|
+
align-self: center;
|
59
|
+
}
|
60
|
+
`
|
61
|
+
|
62
|
+
export default AddQuestion
|