@mohamed-karawia/library 0.1.0
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.
- 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,346 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
|
10
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/taggedTemplateLiteral"));
|
11
|
+
|
12
|
+
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectSpread2"));
|
13
|
+
|
14
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
15
|
+
|
16
|
+
var _formik = require("formik");
|
17
|
+
|
18
|
+
var _react = _interopRequireWildcard(require("react"));
|
19
|
+
|
20
|
+
var _reactSelect = _interopRequireDefault(require("react-select"));
|
21
|
+
|
22
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
23
|
+
|
24
|
+
var _CustomAutoComplete = _interopRequireDefault(require("../Common Inputs/CustomAutoComplete/CustomAutoComplete"));
|
25
|
+
|
26
|
+
var _BaseMaterial = _interopRequireDefault(require("../Containers/BaseMaterial"));
|
27
|
+
|
28
|
+
var _homeSvgrepoCom = _interopRequireDefault(require("../../assets/home-svgrepo-com.svg"));
|
29
|
+
|
30
|
+
var _compassSvgrepoCom = _interopRequireDefault(require("../../assets/compass-svgrepo-com.svg"));
|
31
|
+
|
32
|
+
var _addSvgrepoCom = _interopRequireDefault(require("../../assets/add-svgrepo-com.svg"));
|
33
|
+
|
34
|
+
var _basketSvgrepoCom = _interopRequireDefault(require("../../assets/basket-svgrepo-com.svg"));
|
35
|
+
|
36
|
+
var _bellSvgrepoCom = _interopRequireDefault(require("../../assets/bell-svgrepo-com.svg"));
|
37
|
+
|
38
|
+
var _medalSvgrepoCom = _interopRequireDefault(require("../../assets/medal-svgrepo-com.svg"));
|
39
|
+
|
40
|
+
var _settingsSvgrepoCom = _interopRequireDefault(require("../../assets/settings-svgrepo-com.svg"));
|
41
|
+
|
42
|
+
var _searchSvgrepoCom = _interopRequireDefault(require("../../assets/search-svgrepo-com.svg"));
|
43
|
+
|
44
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
|
45
|
+
|
46
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
47
|
+
|
48
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
49
|
+
|
50
|
+
/* icon size can sm md lg @sm by default*/
|
51
|
+
|
52
|
+
/* icon background color @transparent by default*/
|
53
|
+
var Navbar = function Navbar(_ref) {
|
54
|
+
var iconSize = _ref.iconSize,
|
55
|
+
iconBackgroundColor = _ref.iconBackgroundColor,
|
56
|
+
navbarColor = _ref.navbarColor,
|
57
|
+
dropDownItemHeight = _ref.dropDownItemHeight;
|
58
|
+
var initialValues = {
|
59
|
+
search: '',
|
60
|
+
searchIcons: ''
|
61
|
+
};
|
62
|
+
|
63
|
+
var _useState = (0, _react.useState)(false),
|
64
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
65
|
+
menuOpen = _useState2[0],
|
66
|
+
setMenuOpen = _useState2[1];
|
67
|
+
|
68
|
+
var submitHandler = function submitHandler(values) {
|
69
|
+
console.log(values);
|
70
|
+
};
|
71
|
+
|
72
|
+
var icons = [{
|
73
|
+
id: 'home',
|
74
|
+
label: 'home'
|
75
|
+
}, {
|
76
|
+
id: 'add',
|
77
|
+
label: 'add'
|
78
|
+
}, {
|
79
|
+
id: 'discover',
|
80
|
+
label: 'discover'
|
81
|
+
}, {
|
82
|
+
id: 'badge',
|
83
|
+
label: 'badge'
|
84
|
+
}, {
|
85
|
+
id: 'marketplace',
|
86
|
+
label: 'marketplace'
|
87
|
+
}, {
|
88
|
+
id: 'setting',
|
89
|
+
label: 'setting'
|
90
|
+
}, {
|
91
|
+
id: 'notification',
|
92
|
+
label: 'notification'
|
93
|
+
}];
|
94
|
+
|
95
|
+
var Option = function Option(name, image) {
|
96
|
+
return /*#__PURE__*/_react.default.createElement(OptionContainer, {
|
97
|
+
itemHeight: dropDownItemHeight
|
98
|
+
}, /*#__PURE__*/_react.default.createElement(OptionImage, {
|
99
|
+
src: image
|
100
|
+
}), /*#__PURE__*/_react.default.createElement(Label, null, name));
|
101
|
+
};
|
102
|
+
|
103
|
+
var options = [{
|
104
|
+
value: 'cat',
|
105
|
+
label: Option('cat', 'https://cdn.pixabay.com/photo/2014/11/30/14/11/cat-551554__340.jpg')
|
106
|
+
}, {
|
107
|
+
value: 'strawberry',
|
108
|
+
label: Option('strawberry', 'https://media.istockphoto.com/photos/red-berry-strawberry-isolated-picture-id1157946861?b=1&k=20&m=1157946861&s=170667a&w=0&h=feuhHInk3SV4tpLEHTWtpEW-dBKjPWPmOMlgmPh82Ls=')
|
109
|
+
}, {
|
110
|
+
value: 'vanilla',
|
111
|
+
label: Option('vanilla', 'https://static.toiimg.com/thumb/54677722.cms?imgsize=134423&width=800&height=800')
|
112
|
+
}];
|
113
|
+
var accountOptions = [{
|
114
|
+
value: 'settings',
|
115
|
+
label: Option('settings', 'http://simpleicon.com/wp-content/uploads/setting2.png')
|
116
|
+
}, {
|
117
|
+
value: 'logout',
|
118
|
+
label: Option('logout', 'https://cdn2.vectorstock.com/i/1000x1000/24/66/door-icon-emergency-exit-sign-vector-20712466.jpg')
|
119
|
+
}];
|
120
|
+
var customStyles = {
|
121
|
+
menu: function menu(styles) {
|
122
|
+
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, styles), {}, {
|
123
|
+
width: '150px'
|
124
|
+
});
|
125
|
+
},
|
126
|
+
control: function control(styles) {
|
127
|
+
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, styles), {}, {
|
128
|
+
border: '0',
|
129
|
+
backgroundColor: "".concat(navbarColor)
|
130
|
+
});
|
131
|
+
}
|
132
|
+
};
|
133
|
+
return /*#__PURE__*/_react.default.createElement(_BaseMaterial.default, null, /*#__PURE__*/_react.default.createElement(NavBar, {
|
134
|
+
color: navbarColor
|
135
|
+
}, /*#__PURE__*/_react.default.createElement(UniverseContainer, null, /*#__PURE__*/_react.default.createElement(IconContainer, {
|
136
|
+
size: iconSize,
|
137
|
+
color: iconBackgroundColor
|
138
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
139
|
+
src: _homeSvgrepoCom.default,
|
140
|
+
size: iconSize
|
141
|
+
})), /*#__PURE__*/_react.default.createElement(IconContainer, {
|
142
|
+
size: iconSize,
|
143
|
+
color: iconBackgroundColor
|
144
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
145
|
+
src: _addSvgrepoCom.default,
|
146
|
+
size: iconSize
|
147
|
+
})), /*#__PURE__*/_react.default.createElement("div", {
|
148
|
+
style: {
|
149
|
+
width: '200px'
|
150
|
+
}
|
151
|
+
}, /*#__PURE__*/_react.default.createElement(_reactSelect.default, {
|
152
|
+
options: options,
|
153
|
+
styles: {
|
154
|
+
color: 'blue'
|
155
|
+
}
|
156
|
+
}))), /*#__PURE__*/_react.default.createElement(DiscoverContainer, null, /*#__PURE__*/_react.default.createElement(IconContainer, {
|
157
|
+
size: iconSize,
|
158
|
+
color: iconBackgroundColor
|
159
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
160
|
+
src: _compassSvgrepoCom.default,
|
161
|
+
size: iconSize
|
162
|
+
})), /*#__PURE__*/_react.default.createElement(IconContainer, {
|
163
|
+
size: iconSize,
|
164
|
+
color: iconBackgroundColor
|
165
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
166
|
+
src: _medalSvgrepoCom.default,
|
167
|
+
size: iconSize
|
168
|
+
})), /*#__PURE__*/_react.default.createElement(IconContainer, {
|
169
|
+
size: iconSize,
|
170
|
+
color: iconBackgroundColor
|
171
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
172
|
+
src: _basketSvgrepoCom.default,
|
173
|
+
size: iconSize
|
174
|
+
}))), /*#__PURE__*/_react.default.createElement(SearchContainer, null, /*#__PURE__*/_react.default.createElement(SearchBar, null, /*#__PURE__*/_react.default.createElement(Icon, {
|
175
|
+
src: _searchSvgrepoCom.default,
|
176
|
+
size: iconSize
|
177
|
+
}), /*#__PURE__*/_react.default.createElement(_formik.Formik, {
|
178
|
+
initialValues: initialValues,
|
179
|
+
onSubmit: function onSubmit(values) {
|
180
|
+
return submitHandler(values);
|
181
|
+
}
|
182
|
+
}, function (_ref2) {
|
183
|
+
var errors = _ref2.errors,
|
184
|
+
touched = _ref2.touched,
|
185
|
+
setFieldValue = _ref2.setFieldValue,
|
186
|
+
values = _ref2.values;
|
187
|
+
return /*#__PURE__*/_react.default.createElement(CreateForm, null, /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_CustomAutoComplete.default, {
|
188
|
+
label: "",
|
189
|
+
name: "searchIcons",
|
190
|
+
items: icons,
|
191
|
+
placeholder: "Search Icons",
|
192
|
+
value: values.searchIcons,
|
193
|
+
onInputChange: function onInputChange(value) {
|
194
|
+
setFieldValue('searchIcons', value);
|
195
|
+
},
|
196
|
+
inputValue: values.searchIcons,
|
197
|
+
outline: "none",
|
198
|
+
itemHeight: "35",
|
199
|
+
width: "98",
|
200
|
+
borderColor: "#9e9e9e",
|
201
|
+
borderSize: "0",
|
202
|
+
borderRadius: "10",
|
203
|
+
padding: "4",
|
204
|
+
height: "30"
|
205
|
+
})));
|
206
|
+
}))), /*#__PURE__*/_react.default.createElement(ProfileBar, null, /*#__PURE__*/_react.default.createElement(ProfileContainer, null, /*#__PURE__*/_react.default.createElement(Profile, null, /*#__PURE__*/_react.default.createElement(_reactSelect.default, {
|
207
|
+
options: accountOptions,
|
208
|
+
styles: customStyles,
|
209
|
+
components: {
|
210
|
+
ValueContainer: function ValueContainer() {
|
211
|
+
return null;
|
212
|
+
},
|
213
|
+
IndicatorSeparator: function IndicatorSeparator() {
|
214
|
+
return null;
|
215
|
+
},
|
216
|
+
DropdownIndicator: function DropdownIndicator() {
|
217
|
+
return /*#__PURE__*/_react.default.createElement(Image, {
|
218
|
+
src: "https://play.teleporthq.io/static/svg/default-img.svg",
|
219
|
+
onClick: function onClick() {
|
220
|
+
return setMenuOpen(!menuOpen);
|
221
|
+
}
|
222
|
+
});
|
223
|
+
}
|
224
|
+
},
|
225
|
+
menuIsOpen: menuOpen
|
226
|
+
})), /*#__PURE__*/_react.default.createElement(UserName, null, "illo")), /*#__PURE__*/_react.default.createElement(SettingsContainer, null, /*#__PURE__*/_react.default.createElement(IconContainer, {
|
227
|
+
size: iconSize,
|
228
|
+
color: iconBackgroundColor
|
229
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
230
|
+
src: _settingsSvgrepoCom.default,
|
231
|
+
size: iconSize
|
232
|
+
})), /*#__PURE__*/_react.default.createElement(IconContainer, {
|
233
|
+
size: iconSize,
|
234
|
+
color: iconBackgroundColor
|
235
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
236
|
+
src: _bellSvgrepoCom.default,
|
237
|
+
size: iconSize
|
238
|
+
}))))));
|
239
|
+
};
|
240
|
+
|
241
|
+
var _default = Navbar;
|
242
|
+
exports.default = _default;
|
243
|
+
var CreateForm = (0, _styledComponents.default)(_formik.Form)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n flex-direction: column;\n width: 100%;\n"])));
|
244
|
+
|
245
|
+
var Image = _styledComponents.default.img(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n width: 40px;\n height: 40px;\n border-radius: 20px;\n"])));
|
246
|
+
|
247
|
+
var NavBar = _styledComponents.default.div(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n flex: 0 0 auto;\n height: 72px;\n display: flex;\n align-items: center;\n padding-left: 16;\n padding-right: 16;\n flex-direction: row;\n justify-content: flex-start;\n background-color: ", ";\n"])), function (props) {
|
248
|
+
return props.color || '#e3e5e8';
|
249
|
+
});
|
250
|
+
|
251
|
+
var UniverseContainer = (0, _styledComponents.default)('div')({
|
252
|
+
width: '346px',
|
253
|
+
height: '72px',
|
254
|
+
display: 'flex',
|
255
|
+
'align-items': 'center',
|
256
|
+
'flex-direction': 'row',
|
257
|
+
'justify-content': 'flex-start'
|
258
|
+
});
|
259
|
+
|
260
|
+
var IconContainer = _styledComponents.default.div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n flex: 0 0 auto;\n width: ", ";\n height: ", ";\n display: flex;\n align-items: center;\n margin-left: 0px;\n margin-right: 4px;\n border-radius: 20px;\n flex-direction: row;\n justify-content: center;\n background-color: ", ";\n"])), function (props) {
|
261
|
+
return props.size === 'sm' ? '30px' : props.size === 'md' ? '35px' : props.size === 'lg' ? '40px' : '30px';
|
262
|
+
}, function (props) {
|
263
|
+
return props.size === 'sm' ? '30px' : props.size === 'md' ? '35px' : props.size === 'lg' ? '40px' : '30px';
|
264
|
+
}, function (props) {
|
265
|
+
return props.color || 'transparent';
|
266
|
+
});
|
267
|
+
|
268
|
+
var Icon = _styledComponents.default.img(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2.default)(["\n width: ", ";\n height: ", ";\n"])), function (props) {
|
269
|
+
return props.size === 'sm' ? '20px' : props.size === 'md' ? '25px' : props.size === 'lg' ? '30px' : '20px';
|
270
|
+
}, function (props) {
|
271
|
+
return props.size === 'sm' ? '20px' : props.size === 'md' ? '25px' : props.size === 'lg' ? '30px' : '20px';
|
272
|
+
});
|
273
|
+
|
274
|
+
var DiscoverContainer = (0, _styledComponents.default)('div')({
|
275
|
+
width: '190px',
|
276
|
+
height: '72px',
|
277
|
+
display: 'flex',
|
278
|
+
'align-items': 'center',
|
279
|
+
'flex-direction': 'row',
|
280
|
+
'justify-content': 'center'
|
281
|
+
});
|
282
|
+
var SearchContainer = (0, _styledComponents.default)('div')({
|
283
|
+
width: '100%',
|
284
|
+
height: '72px',
|
285
|
+
display: 'flex',
|
286
|
+
'align-items': 'center',
|
287
|
+
'flex-direction': 'row',
|
288
|
+
'justify-content': 'center'
|
289
|
+
});
|
290
|
+
var SearchBar = (0, _styledComponents.default)('div')({
|
291
|
+
width: '315px',
|
292
|
+
height: '40px',
|
293
|
+
display: 'flex',
|
294
|
+
paddingLeft: '8px',
|
295
|
+
'align-items': 'center',
|
296
|
+
'border-radius': '20px',
|
297
|
+
'flex-direction': 'row',
|
298
|
+
'background-color': '#ffffff',
|
299
|
+
flex: '1'
|
300
|
+
});
|
301
|
+
var ProfileBar = (0, _styledComponents.default)('div')({
|
302
|
+
width: '273px',
|
303
|
+
height: '72px',
|
304
|
+
display: 'flex',
|
305
|
+
'align-items': 'center',
|
306
|
+
'flex-direction': 'row',
|
307
|
+
'justify-content': 'space-between'
|
308
|
+
});
|
309
|
+
var ProfileContainer = (0, _styledComponents.default)('div')({
|
310
|
+
width: '86px',
|
311
|
+
height: '100%',
|
312
|
+
display: 'flex',
|
313
|
+
'align-items': 'center',
|
314
|
+
'flex-direction': 'row',
|
315
|
+
'justify-content': 'flex-start'
|
316
|
+
});
|
317
|
+
var Profile = (0, _styledComponents.default)('div')({
|
318
|
+
flex: '0 0 auto',
|
319
|
+
width: '50px',
|
320
|
+
height: '50px',
|
321
|
+
display: 'flex',
|
322
|
+
'align-items': 'center',
|
323
|
+
'margin-left': '4px',
|
324
|
+
'border-radius': '20px',
|
325
|
+
'flex-direction': 'row',
|
326
|
+
'justify-content': 'center'
|
327
|
+
});
|
328
|
+
var UserName = (0, _styledComponents.default)('span')({
|
329
|
+
'padding-left': '8px'
|
330
|
+
});
|
331
|
+
var SettingsContainer = (0, _styledComponents.default)('div')({
|
332
|
+
width: '59px',
|
333
|
+
height: '100%',
|
334
|
+
display: 'flex',
|
335
|
+
'align-items': 'center',
|
336
|
+
'flex-direction': 'row',
|
337
|
+
'justify-content': 'center'
|
338
|
+
});
|
339
|
+
|
340
|
+
var OptionContainer = _styledComponents.default.div(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n flex-direction: row;\n align-items: center;\n height: ", ";\n"])), function (props) {
|
341
|
+
return props.itemHeight || '20px';
|
342
|
+
});
|
343
|
+
|
344
|
+
var OptionImage = _styledComponents.default.img(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2.default)(["\n height: 30px;\n width: 30px;\n"])));
|
345
|
+
|
346
|
+
var Label = _styledComponents.default.label(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2.default)(["\n padding-left: 5px;\n"])));
|
@@ -0,0 +1,41 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Default = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _Navbar = _interopRequireDefault(require("./Navbar"));
|
13
|
+
|
14
|
+
var _default = {
|
15
|
+
title: 'Navbar/Default',
|
16
|
+
component: _Navbar.default,
|
17
|
+
argTypes: {
|
18
|
+
iconSize: {
|
19
|
+
options: ['sm', 'md', 'lg'],
|
20
|
+
control: {
|
21
|
+
type: 'select'
|
22
|
+
}
|
23
|
+
},
|
24
|
+
iconBackgroundColor: {
|
25
|
+
type: 'string'
|
26
|
+
},
|
27
|
+
navbarColor: {
|
28
|
+
type: 'string'
|
29
|
+
},
|
30
|
+
dropDownItemHeight: {
|
31
|
+
type: 'string'
|
32
|
+
}
|
33
|
+
}
|
34
|
+
};
|
35
|
+
exports.default = _default;
|
36
|
+
|
37
|
+
var Default = function Default(props) {
|
38
|
+
return /*#__PURE__*/_react.default.createElement(_Navbar.default, props);
|
39
|
+
};
|
40
|
+
|
41
|
+
exports.Default = Default;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
13
|
+
|
14
|
+
var _Head = _interopRequireDefault(require("../../Layout/Head/Head"));
|
15
|
+
|
16
|
+
var _Body = _interopRequireDefault(require("../../Layout/Body/Body"));
|
17
|
+
|
18
|
+
var _Left = _interopRequireDefault(require("../../Layout/Left/Left"));
|
19
|
+
|
20
|
+
var _Center = _interopRequireDefault(require("../../Layout/Center/Center"));
|
21
|
+
|
22
|
+
var _Right = _interopRequireDefault(require("../../Layout/Right/Right"));
|
23
|
+
|
24
|
+
var BlankPage = function BlankPage() {
|
25
|
+
return /*#__PURE__*/_react.default.createElement(Container, null, /*#__PURE__*/_react.default.createElement(_Head.default, null), /*#__PURE__*/_react.default.createElement(_Body.default, null, /*#__PURE__*/_react.default.createElement(_Left.default, null, /*#__PURE__*/_react.default.createElement("p", null, "Left")), /*#__PURE__*/_react.default.createElement(_Center.default, null, /*#__PURE__*/_react.default.createElement("p", null, "Center")), /*#__PURE__*/_react.default.createElement(_Right.default, null, /*#__PURE__*/_react.default.createElement("p", null, "Right"))));
|
26
|
+
};
|
27
|
+
|
28
|
+
var _default = BlankPage;
|
29
|
+
exports.default = _default;
|
30
|
+
var Container = (0, _styledComponents.default)('div')({
|
31
|
+
width: '100%',
|
32
|
+
height: 'auto',
|
33
|
+
display: 'flex',
|
34
|
+
'min-height': '100vh',
|
35
|
+
'flex-direction': 'column'
|
36
|
+
});
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Default = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _Blank = _interopRequireDefault(require("./Blank"));
|
13
|
+
|
14
|
+
var _default = {
|
15
|
+
title: 'Pages/Blank',
|
16
|
+
component: _Blank.default
|
17
|
+
};
|
18
|
+
exports.default = _default;
|
19
|
+
|
20
|
+
var Default = function Default(props) {
|
21
|
+
return /*#__PURE__*/_react.default.createElement(_Blank.default, props);
|
22
|
+
};
|
23
|
+
|
24
|
+
exports.Default = Default;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
13
|
+
|
14
|
+
var Centered = function Centered(_ref) {
|
15
|
+
var children = _ref.children;
|
16
|
+
return /*#__PURE__*/_react.default.createElement(Container, null, /*#__PURE__*/_react.default.createElement(Content, null, children));
|
17
|
+
};
|
18
|
+
|
19
|
+
var _default = Centered;
|
20
|
+
exports.default = _default;
|
21
|
+
var Container = (0, _styledComponents.default)('div')({
|
22
|
+
height: 'auto',
|
23
|
+
'min-height': '100vh',
|
24
|
+
width: '100%',
|
25
|
+
display: 'flex',
|
26
|
+
'flex-direction': 'column',
|
27
|
+
'align-items': 'center',
|
28
|
+
'justify-content': 'center'
|
29
|
+
});
|
30
|
+
var Content = (0, _styledComponents.default)('div')({
|
31
|
+
display: 'flex',
|
32
|
+
'align-items': 'flex-start',
|
33
|
+
flex: '0 0 auto'
|
34
|
+
});
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Default = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _Centered = _interopRequireDefault(require("./Centered"));
|
13
|
+
|
14
|
+
var _default = {
|
15
|
+
title: 'Pages/Centered',
|
16
|
+
component: _Centered.default
|
17
|
+
};
|
18
|
+
exports.default = _default;
|
19
|
+
|
20
|
+
var Default = function Default(props) {
|
21
|
+
return /*#__PURE__*/_react.default.createElement(_Centered.default, props, "Welcome To Community Builder Pro");
|
22
|
+
};
|
23
|
+
|
24
|
+
exports.Default = Default;
|
@@ -0,0 +1,86 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
|
10
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
11
|
+
|
12
|
+
var _react = _interopRequireWildcard(require("react"));
|
13
|
+
|
14
|
+
var _Body = _interopRequireDefault(require("../../Layout/Body/Body"));
|
15
|
+
|
16
|
+
var _Left = _interopRequireDefault(require("../../Layout/Left/Left"));
|
17
|
+
|
18
|
+
var _Center = _interopRequireDefault(require("../../Layout/Center/Center"));
|
19
|
+
|
20
|
+
var _Right = _interopRequireDefault(require("../../Layout/Right/Right"));
|
21
|
+
|
22
|
+
var _Navbar = _interopRequireDefault(require("../../Navbar/Navbar"));
|
23
|
+
|
24
|
+
var _BaseMaterial = _interopRequireDefault(require("../../Containers/BaseMaterial"));
|
25
|
+
|
26
|
+
var _SpaceContainer = _interopRequireDefault(require("../../Reusable Components/SpaceContainer/SpaceContainer"));
|
27
|
+
|
28
|
+
var _WidgetContainer = _interopRequireDefault(require("../../Reusable Components/WidgetContainer/WidgetContainer"));
|
29
|
+
|
30
|
+
var _styles = _interopRequireDefault(require("../ViewWorld/styles.json"));
|
31
|
+
|
32
|
+
var _constatnts = require("../ViewWorld/constatnts");
|
33
|
+
|
34
|
+
var _Chat = _interopRequireDefault(require("../../Chat/Chat"));
|
35
|
+
|
36
|
+
var _excluded = ["users", "data"];
|
37
|
+
|
38
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
39
|
+
|
40
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
41
|
+
|
42
|
+
var Chat = function Chat(_ref) {
|
43
|
+
var users = _ref.users,
|
44
|
+
data = _ref.data,
|
45
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
46
|
+
return /*#__PURE__*/_react.default.createElement(_BaseMaterial.default, Object.assign({}, _styles.default.containerStyle, props), /*#__PURE__*/_react.default.createElement(_Navbar.default, null), /*#__PURE__*/_react.default.createElement(_Body.default, _styles.default.bodyStyle, /*#__PURE__*/_react.default.createElement(_Left.default, null, /*#__PURE__*/_react.default.createElement(_WidgetContainer.default, {
|
47
|
+
widgetType: "logo",
|
48
|
+
widgetProps: {
|
49
|
+
imgUrl: props.imgUrl
|
50
|
+
}
|
51
|
+
}), /*#__PURE__*/_react.default.createElement(_WidgetContainer.default, {
|
52
|
+
widgetType: "list",
|
53
|
+
widgetProps: {
|
54
|
+
listTitle: 'Your Spaces',
|
55
|
+
type: 'sectioned',
|
56
|
+
data: _constatnts.SPACES,
|
57
|
+
cardStyle: 'card-style-3',
|
58
|
+
sectionHeaderStyles: {
|
59
|
+
cardBorderSize: 2,
|
60
|
+
cardPadding: 2,
|
61
|
+
cardBackgroundColor: '#fff',
|
62
|
+
cardBorderColor: 'black'
|
63
|
+
},
|
64
|
+
customCardStyles: {
|
65
|
+
cardPadding: 6,
|
66
|
+
cardTitleFontSize: 15,
|
67
|
+
cardBackgroundColor: 'black',
|
68
|
+
cardTitleColor: 'white',
|
69
|
+
onHoverBackgroundColor: '#F6891F',
|
70
|
+
controlsStyles: {
|
71
|
+
showOnHover: true
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
})), /*#__PURE__*/_react.default.createElement(_Center.default, null, /*#__PURE__*/_react.default.createElement(_SpaceContainer.default, {
|
76
|
+
title: "Music Album",
|
77
|
+
discription: "Lorem ipsum dolor sit amet consectetur.",
|
78
|
+
hideTitle: true
|
79
|
+
}, /*#__PURE__*/_react.default.createElement(_Chat.default, {
|
80
|
+
data: data,
|
81
|
+
users: users
|
82
|
+
}))), /*#__PURE__*/_react.default.createElement(_Right.default, null)));
|
83
|
+
};
|
84
|
+
|
85
|
+
var _default = Chat;
|
86
|
+
exports.default = _default;
|
@@ -0,0 +1,74 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Page = exports.default = void 0;
|
9
|
+
|
10
|
+
var _Chat = _interopRequireDefault(require("./Chat"));
|
11
|
+
|
12
|
+
var _default = {
|
13
|
+
title: 'Pages/Chat',
|
14
|
+
component: _Chat.default
|
15
|
+
};
|
16
|
+
exports.default = _default;
|
17
|
+
var users = [{
|
18
|
+
id: 'walter',
|
19
|
+
display: 'Walter White'
|
20
|
+
}, {
|
21
|
+
id: 'jesse',
|
22
|
+
display: 'Jesse Pinkman'
|
23
|
+
}, {
|
24
|
+
id: 'gus',
|
25
|
+
display: 'Gustavo "Gus" Fring'
|
26
|
+
}, {
|
27
|
+
id: 'saul',
|
28
|
+
display: 'Saul Goodman'
|
29
|
+
}, {
|
30
|
+
id: 'hank',
|
31
|
+
display: 'Hank Schrader'
|
32
|
+
}, {
|
33
|
+
id: 'skyler',
|
34
|
+
display: 'Skyler White'
|
35
|
+
}, {
|
36
|
+
id: 'mike',
|
37
|
+
display: 'Mike Ehrmantraut'
|
38
|
+
}, {
|
39
|
+
id: 'lydia',
|
40
|
+
display: 'Lydìã Rôdarté-Qüayle'
|
41
|
+
}];
|
42
|
+
var data = [{
|
43
|
+
username: 'Test User',
|
44
|
+
img: "https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png",
|
45
|
+
date: '5/11/2021',
|
46
|
+
text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test '
|
47
|
+
}, {
|
48
|
+
username: 'Test User',
|
49
|
+
img: "https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png",
|
50
|
+
date: '5/11/2021',
|
51
|
+
text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test ',
|
52
|
+
media: /*#__PURE__*/React.createElement("img", {
|
53
|
+
src: "https://arabhardware.net/wp-content/uploads/2020/03/valorant-2020-4k-0f-scaled.jpg"
|
54
|
+
})
|
55
|
+
}, {
|
56
|
+
username: 'Test User',
|
57
|
+
img: "https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png",
|
58
|
+
date: '5/11/2021',
|
59
|
+
text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test '
|
60
|
+
}, {
|
61
|
+
username: 'Test User',
|
62
|
+
img: "https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png",
|
63
|
+
date: '5/11/2021',
|
64
|
+
text: 'This is fake chat test This is fake chat test This is fake chat test This is fake chat test This is fake chat test '
|
65
|
+
}];
|
66
|
+
|
67
|
+
var Page = function Page(args) {
|
68
|
+
return /*#__PURE__*/React.createElement(_Chat.default, Object.assign({
|
69
|
+
users: users,
|
70
|
+
data: data
|
71
|
+
}, args));
|
72
|
+
};
|
73
|
+
|
74
|
+
exports.Page = Page;
|