@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,236 @@
|
|
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 _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
13
|
+
|
14
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
15
|
+
|
16
|
+
var _react = _interopRequireWildcard(require("react"));
|
17
|
+
|
18
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
19
|
+
|
20
|
+
var _AddPhoto = _interopRequireDefault(require("../../Forms/AddPhoto/AddPhoto"));
|
21
|
+
|
22
|
+
var _Gallery = _interopRequireDefault(require("../../Reusable Components/Gallery/Gallery"));
|
23
|
+
|
24
|
+
var _ReactModal = _interopRequireDefault(require("../../Reusable Components/ReactModal/ReactModal"));
|
25
|
+
|
26
|
+
var _DetailedPhoto = _interopRequireDefault(require("../DetailedPhoto/DetailedPhoto"));
|
27
|
+
|
28
|
+
var _ai = require("react-icons/ai");
|
29
|
+
|
30
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
|
31
|
+
|
32
|
+
var _excluded = ["album", "cardBackgroundColor", "imgTitleColor", "columnsNumber", "columnGap", "rowGap", "descColor"];
|
33
|
+
|
34
|
+
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); }
|
35
|
+
|
36
|
+
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; }
|
37
|
+
|
38
|
+
var galleryControls = [{
|
39
|
+
icon: /*#__PURE__*/_react.default.createElement(_ai.AiOutlineFileAdd, null),
|
40
|
+
action: 'add',
|
41
|
+
name: 'Add Photo'
|
42
|
+
}];
|
43
|
+
var cardControls = [{
|
44
|
+
icon: /*#__PURE__*/_react.default.createElement(_ai.AiFillDelete, null),
|
45
|
+
action: 'delete',
|
46
|
+
name: 'Delete Image'
|
47
|
+
}];
|
48
|
+
|
49
|
+
var ViewAlbum = function ViewAlbum(_ref) {
|
50
|
+
var album = _ref.album,
|
51
|
+
cardBackgroundColor = _ref.cardBackgroundColor,
|
52
|
+
imgTitleColor = _ref.imgTitleColor,
|
53
|
+
columnsNumber = _ref.columnsNumber,
|
54
|
+
columnGap = _ref.columnGap,
|
55
|
+
rowGap = _ref.rowGap,
|
56
|
+
descColor = _ref.descColor,
|
57
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
58
|
+
var cardStyles = {
|
59
|
+
cardBackgroundColor: cardBackgroundColor,
|
60
|
+
cardTitleColor: imgTitleColor,
|
61
|
+
descColor: descColor,
|
62
|
+
controlsStyles: {
|
63
|
+
showOnHover: true,
|
64
|
+
position: 'absolute',
|
65
|
+
iconBackground: "transparent",
|
66
|
+
dropdownBackground: "white",
|
67
|
+
dropdownFontColor: "#FE1744",
|
68
|
+
dropdownItemHoverColor: "#FE1744",
|
69
|
+
iconBackgroundHover: "white",
|
70
|
+
iconBorderRadius: 100,
|
71
|
+
iconSize: 20,
|
72
|
+
iconsGap: 10,
|
73
|
+
maxIcons: 0,
|
74
|
+
iconColor: '#FE1744',
|
75
|
+
iconHoverColor: 'white',
|
76
|
+
dropdownFontSize: 10
|
77
|
+
}
|
78
|
+
};
|
79
|
+
|
80
|
+
var _useState = (0, _react.useState)(false),
|
81
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
82
|
+
showModal = _useState2[0],
|
83
|
+
setShowModal = _useState2[1];
|
84
|
+
|
85
|
+
var _useState3 = (0, _react.useState)(false),
|
86
|
+
_useState4 = (0, _slicedToArray2.default)(_useState3, 2),
|
87
|
+
showImgModal = _useState4[0],
|
88
|
+
setShowImgModal = _useState4[1];
|
89
|
+
|
90
|
+
var _useState5 = (0, _react.useState)(null),
|
91
|
+
_useState6 = (0, _slicedToArray2.default)(_useState5, 2),
|
92
|
+
openedImgIndex = _useState6[0],
|
93
|
+
setOpenedImgIndex = _useState6[1];
|
94
|
+
|
95
|
+
var _useState7 = (0, _react.useState)(null),
|
96
|
+
_useState8 = (0, _slicedToArray2.default)(_useState7, 2),
|
97
|
+
openedImg = _useState8[0],
|
98
|
+
setOpenedImg = _useState8[1];
|
99
|
+
|
100
|
+
var handleUserKeyPress = (0, _react.useCallback)(function (event) {
|
101
|
+
var key = event.key;
|
102
|
+
|
103
|
+
if (key === 'ArrowRight') {
|
104
|
+
setOpenedImgIndex(function (prev) {
|
105
|
+
return prev <= album.length - 2 ? prev + 1 : 0;
|
106
|
+
});
|
107
|
+
} else if (key === 'ArrowLeft') {
|
108
|
+
setOpenedImgIndex(function (prev) {
|
109
|
+
return prev !== 0 ? prev - 1 : 0;
|
110
|
+
});
|
111
|
+
}
|
112
|
+
}, []);
|
113
|
+
(0, _react.useEffect)(function () {
|
114
|
+
setOpenedImg(album[openedImgIndex]);
|
115
|
+
window.addEventListener("keydown", handleUserKeyPress);
|
116
|
+
}, [openedImgIndex, handleUserKeyPress]);
|
117
|
+
|
118
|
+
var onIconClicked = function onIconClicked(action) {
|
119
|
+
switch (action) {
|
120
|
+
case 'add':
|
121
|
+
setShowModal(true);
|
122
|
+
break;
|
123
|
+
|
124
|
+
default:
|
125
|
+
break;
|
126
|
+
}
|
127
|
+
};
|
128
|
+
|
129
|
+
var cardIconClicked = function cardIconClicked(action, index) {
|
130
|
+
props.cardIconClicked(action, index);
|
131
|
+
};
|
132
|
+
|
133
|
+
var onAddPhoto = function onAddPhoto(photo) {
|
134
|
+
setShowModal(false);
|
135
|
+
props.addPhoto(photo);
|
136
|
+
};
|
137
|
+
|
138
|
+
var cancelHandler = function cancelHandler() {
|
139
|
+
setShowModal(false);
|
140
|
+
};
|
141
|
+
|
142
|
+
var cardClicked = function cardClicked(index) {
|
143
|
+
setOpenedImgIndex(index);
|
144
|
+
setShowImgModal(true);
|
145
|
+
};
|
146
|
+
|
147
|
+
var prevPhoto = function prevPhoto() {
|
148
|
+
if (openedImgIndex !== 0) {
|
149
|
+
setOpenedImgIndex(openedImgIndex - 1);
|
150
|
+
}
|
151
|
+
};
|
152
|
+
|
153
|
+
var nextPhoto = function nextPhoto() {
|
154
|
+
if (openedImgIndex <= album.length - 2) {
|
155
|
+
setOpenedImgIndex(openedImgIndex + 1);
|
156
|
+
}
|
157
|
+
};
|
158
|
+
|
159
|
+
return /*#__PURE__*/_react.default.createElement(Container, null, /*#__PURE__*/_react.default.createElement(_Gallery.default, Object.assign({
|
160
|
+
galleryTitle: "Photo Album",
|
161
|
+
data: album,
|
162
|
+
type: "flat",
|
163
|
+
cardStyle: "card-style-6",
|
164
|
+
headerStyles: {
|
165
|
+
padding: 10,
|
166
|
+
headerBackground: props.headerBackground,
|
167
|
+
titleColor: props.titleColor,
|
168
|
+
controlsStyles: {
|
169
|
+
iconSize: 25
|
170
|
+
}
|
171
|
+
},
|
172
|
+
columnsNumber: columnsNumber,
|
173
|
+
galleryColumnGap: columnGap,
|
174
|
+
galleryRowGap: rowGap,
|
175
|
+
galleryControls: galleryControls,
|
176
|
+
iconClicked: onIconClicked,
|
177
|
+
cardClicked: cardClicked,
|
178
|
+
cardIconClicked: cardIconClicked,
|
179
|
+
cardControls: cardControls,
|
180
|
+
customCardStyles: cardStyles
|
181
|
+
}, props)), /*#__PURE__*/_react.default.createElement(_ReactModal.default, {
|
182
|
+
modalIsOpen: showModal,
|
183
|
+
closeModal: function closeModal() {
|
184
|
+
return setShowModal(false);
|
185
|
+
},
|
186
|
+
exitModalButton: function exitModalButton(e) {
|
187
|
+
return /*#__PURE__*/_react.default.createElement("div", null);
|
188
|
+
}
|
189
|
+
}, /*#__PURE__*/_react.default.createElement(_AddPhoto.default, {
|
190
|
+
saveHandler: onAddPhoto,
|
191
|
+
cancelHandler: cancelHandler,
|
192
|
+
saveBtnText: 'Add',
|
193
|
+
cancelBtnText: 'Cancel'
|
194
|
+
})), /*#__PURE__*/_react.default.createElement(_ReactModal.default, {
|
195
|
+
modalIsOpen: showImgModal,
|
196
|
+
closeModal: function closeModal() {
|
197
|
+
setShowImgModal(false);
|
198
|
+
setOpenedImgIndex(null);
|
199
|
+
},
|
200
|
+
exitModalButton: function exitModalButton(e) {
|
201
|
+
return /*#__PURE__*/_react.default.createElement("div", null);
|
202
|
+
},
|
203
|
+
width: "70vw",
|
204
|
+
height: "90vh"
|
205
|
+
}, /*#__PURE__*/_react.default.createElement(CloseIconContainer, {
|
206
|
+
onClick: function onClick() {
|
207
|
+
return setShowImgModal(false);
|
208
|
+
}
|
209
|
+
}, /*#__PURE__*/_react.default.createElement(_ai.AiOutlineClose, null)), /*#__PURE__*/_react.default.createElement(LeftIconContainer, {
|
210
|
+
onClick: prevPhoto
|
211
|
+
}, /*#__PURE__*/_react.default.createElement(_ai.AiOutlineArrowLeft, null)), /*#__PURE__*/_react.default.createElement(_DetailedPhoto.default, {
|
212
|
+
cardClicked: nextPhoto,
|
213
|
+
img: openedImg
|
214
|
+
}), /*#__PURE__*/_react.default.createElement(RightIconContainer, {
|
215
|
+
onClick: nextPhoto
|
216
|
+
}, /*#__PURE__*/_react.default.createElement(_ai.AiOutlineArrowRight, null))));
|
217
|
+
};
|
218
|
+
|
219
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n\n"])));
|
220
|
+
|
221
|
+
var IconContainer = _styledComponents.default.div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n width: 30px;\n height: 30px;\n background-color: #757575;\n position: absolute;\n transform: translateY(-50%);\n top: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 50rem;\n z-index: 999;\n cursor: pointer;\n opacity: .4;\n transition: all .2s;\n\n &:hover{\n opacity: 1;\n transform: scale(1.1) translateY(-50%);\n }\n\n svg{\n color: white;\n }\n \n"])));
|
222
|
+
|
223
|
+
var CloseIconContainer = _styledComponents.default.div(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n position: absolute;\n z-index: 999;\n right: 10px;\n top: 10px;\n cursor: pointer;\n\n svg{\n color: white;\n }\n"])));
|
224
|
+
|
225
|
+
var LeftIconContainer = (0, _styledComponents.default)(IconContainer)(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n left: 10px;\n"])));
|
226
|
+
var RightIconContainer = (0, _styledComponents.default)(IconContainer)(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2.default)(["\n right: 10px;\n"])));
|
227
|
+
ViewAlbum.defaultProps = {
|
228
|
+
headerBackground: '#FE1744',
|
229
|
+
titleColor: 'white',
|
230
|
+
columnsNumber: 3,
|
231
|
+
columnGap: 10,
|
232
|
+
rowGap: 20,
|
233
|
+
cardBackgroundColor: 'white'
|
234
|
+
};
|
235
|
+
var _default = ViewAlbum;
|
236
|
+
exports.default = _default;
|
@@ -0,0 +1,115 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Album = exports.default = void 0;
|
9
|
+
|
10
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
11
|
+
|
12
|
+
var _react = _interopRequireWildcard(require("react"));
|
13
|
+
|
14
|
+
var _ViewAlbum = _interopRequireDefault(require("./ViewAlbum"));
|
15
|
+
|
16
|
+
var _util = require("../../helpers/util");
|
17
|
+
|
18
|
+
var _album = _interopRequireDefault(require("../../assets/images/album1.jpg"));
|
19
|
+
|
20
|
+
var _album2 = _interopRequireDefault(require("../../assets/images/album2.jpg"));
|
21
|
+
|
22
|
+
var _album3 = _interopRequireDefault(require("../../assets/images/album3.jpg"));
|
23
|
+
|
24
|
+
var _album4 = _interopRequireDefault(require("../../assets/images/album4.jpg"));
|
25
|
+
|
26
|
+
var _album5 = _interopRequireDefault(require("../../assets/images/album5.jpg"));
|
27
|
+
|
28
|
+
var _album6 = _interopRequireDefault(require("../../assets/images/album6.jpg"));
|
29
|
+
|
30
|
+
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); }
|
31
|
+
|
32
|
+
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; }
|
33
|
+
|
34
|
+
var _default = {
|
35
|
+
title: 'Photo Album/View Album',
|
36
|
+
component: _ViewAlbum.default
|
37
|
+
};
|
38
|
+
exports.default = _default;
|
39
|
+
|
40
|
+
var Album = function Album(args) {
|
41
|
+
var _useState = (0, _react.useState)([{
|
42
|
+
index: 0,
|
43
|
+
img: _album5.default,
|
44
|
+
title: 'Image 1',
|
45
|
+
description: 'This is description test',
|
46
|
+
date: '2021-11-30'
|
47
|
+
}, {
|
48
|
+
index: 1,
|
49
|
+
img: _album3.default,
|
50
|
+
title: 'Image 2',
|
51
|
+
description: 'This is description test',
|
52
|
+
date: '2021-11-30'
|
53
|
+
}, {
|
54
|
+
index: 2,
|
55
|
+
img: _album6.default,
|
56
|
+
title: 'Image 3',
|
57
|
+
description: 'This is description test',
|
58
|
+
date: '2021-11-30'
|
59
|
+
}, {
|
60
|
+
index: 3,
|
61
|
+
img: _album2.default,
|
62
|
+
title: 'Image 4',
|
63
|
+
description: 'This is description test',
|
64
|
+
date: '2021-11-30'
|
65
|
+
}, {
|
66
|
+
index: 4,
|
67
|
+
img: _album.default,
|
68
|
+
title: 'Image 5',
|
69
|
+
description: 'This is description test',
|
70
|
+
date: '2021-11-30'
|
71
|
+
}, {
|
72
|
+
index: 5,
|
73
|
+
img: _album4.default,
|
74
|
+
title: 'Image 6',
|
75
|
+
description: 'This is description test',
|
76
|
+
date: '2021-11-30'
|
77
|
+
}]),
|
78
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
79
|
+
album = _useState2[0],
|
80
|
+
setAlbum = _useState2[1];
|
81
|
+
|
82
|
+
var onAddPhoto = function onAddPhoto(photo) {
|
83
|
+
var newImg = {
|
84
|
+
img: photo.cover.meta.previewUrl,
|
85
|
+
title: photo.title,
|
86
|
+
description: photo.description,
|
87
|
+
date: photo.date
|
88
|
+
};
|
89
|
+
setAlbum((0, _util.addObjectToArray)(album, newImg));
|
90
|
+
};
|
91
|
+
|
92
|
+
var cardIconClicked = function cardIconClicked(action, index) {
|
93
|
+
switch (action) {
|
94
|
+
case 'delete':
|
95
|
+
onDeletePhoto(index);
|
96
|
+
break;
|
97
|
+
|
98
|
+
default:
|
99
|
+
break;
|
100
|
+
}
|
101
|
+
};
|
102
|
+
|
103
|
+
var onDeletePhoto = function onDeletePhoto(index) {
|
104
|
+
setAlbum((0, _util.deleteFromArrayByIndex)(album, index));
|
105
|
+
};
|
106
|
+
|
107
|
+
return /*#__PURE__*/_react.default.createElement(_ViewAlbum.default, Object.assign({
|
108
|
+
album: album,
|
109
|
+
addPhoto: onAddPhoto,
|
110
|
+
deletePhoto: onDeletePhoto,
|
111
|
+
cardIconClicked: cardIconClicked
|
112
|
+
}, args));
|
113
|
+
};
|
114
|
+
|
115
|
+
exports.Album = Album;
|
@@ -0,0 +1,156 @@
|
|
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 _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
13
|
+
|
14
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
15
|
+
|
16
|
+
var _react = _interopRequireWildcard(require("react"));
|
17
|
+
|
18
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
19
|
+
|
20
|
+
var _CreateAlbum = _interopRequireDefault(require("../../Forms/CreateAlbum/CreateAlbum"));
|
21
|
+
|
22
|
+
var _Gallery = _interopRequireDefault(require("../../Reusable Components/Gallery/Gallery"));
|
23
|
+
|
24
|
+
var _ReactModal = _interopRequireDefault(require("../../Reusable Components/ReactModal/ReactModal"));
|
25
|
+
|
26
|
+
var _ai = require("react-icons/ai");
|
27
|
+
|
28
|
+
var _templateObject;
|
29
|
+
|
30
|
+
var _excluded = ["albums", "cardBackgroundColor", "cardTitleColor", "cardTitleFontSize", "albumTitleColor", "countColor", "countFontSize", "columnsNumber", "columnGap", "rowGap"];
|
31
|
+
|
32
|
+
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); }
|
33
|
+
|
34
|
+
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; }
|
35
|
+
|
36
|
+
var cardControls = [{
|
37
|
+
icon: /*#__PURE__*/_react.default.createElement(_ai.AiFillDelete, null),
|
38
|
+
action: 'delete',
|
39
|
+
name: 'Delete album'
|
40
|
+
}];
|
41
|
+
var galleryControls = [{
|
42
|
+
icon: /*#__PURE__*/_react.default.createElement(_ai.AiOutlineFileAdd, null),
|
43
|
+
action: 'add',
|
44
|
+
name: 'Add Album'
|
45
|
+
}];
|
46
|
+
|
47
|
+
var ViewAlbums = function ViewAlbums(_ref) {
|
48
|
+
var albums = _ref.albums,
|
49
|
+
cardBackgroundColor = _ref.cardBackgroundColor,
|
50
|
+
cardTitleColor = _ref.cardTitleColor,
|
51
|
+
cardTitleFontSize = _ref.cardTitleFontSize,
|
52
|
+
albumTitleColor = _ref.albumTitleColor,
|
53
|
+
countColor = _ref.countColor,
|
54
|
+
countFontSize = _ref.countFontSize,
|
55
|
+
columnsNumber = _ref.columnsNumber,
|
56
|
+
columnGap = _ref.columnGap,
|
57
|
+
rowGap = _ref.rowGap,
|
58
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
59
|
+
var cardStyles = {
|
60
|
+
darkOnHover: true,
|
61
|
+
cardBackgroundColor: cardBackgroundColor,
|
62
|
+
cardTitleColor: cardTitleColor,
|
63
|
+
cardTitleFontSize: cardTitleFontSize,
|
64
|
+
countColor: countColor,
|
65
|
+
countFontSize: countFontSize,
|
66
|
+
controlsStyles: {
|
67
|
+
showOnHover: true,
|
68
|
+
position: 'center',
|
69
|
+
dropdownFontColor: "white",
|
70
|
+
iconBorderRadius: 100,
|
71
|
+
iconSize: 40,
|
72
|
+
iconsGap: 10,
|
73
|
+
iconColor: 'white',
|
74
|
+
containerPadding: 20
|
75
|
+
}
|
76
|
+
};
|
77
|
+
|
78
|
+
var _useState = (0, _react.useState)(false),
|
79
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
80
|
+
showModal = _useState2[0],
|
81
|
+
setShowModal = _useState2[1];
|
82
|
+
|
83
|
+
var onIconClicked = function onIconClicked(action) {
|
84
|
+
switch (action) {
|
85
|
+
case 'add':
|
86
|
+
setShowModal(true);
|
87
|
+
break;
|
88
|
+
|
89
|
+
default:
|
90
|
+
break;
|
91
|
+
}
|
92
|
+
};
|
93
|
+
|
94
|
+
var cardIconClicked = function cardIconClicked(action, index) {
|
95
|
+
props.cardIconClicked(action, index);
|
96
|
+
};
|
97
|
+
|
98
|
+
var onAddAlbum = function onAddAlbum(album) {
|
99
|
+
props.onAddAlbum(album);
|
100
|
+
setShowModal(false);
|
101
|
+
};
|
102
|
+
|
103
|
+
var cancelHandler = function cancelHandler() {
|
104
|
+
setShowModal(false);
|
105
|
+
};
|
106
|
+
|
107
|
+
return /*#__PURE__*/_react.default.createElement(Container, null, /*#__PURE__*/_react.default.createElement(_Gallery.default, Object.assign({
|
108
|
+
galleryTitle: "Photo Albums",
|
109
|
+
data: albums,
|
110
|
+
type: "flat",
|
111
|
+
cardStyle: "card-style-6",
|
112
|
+
headerStyles: {
|
113
|
+
padding: 10,
|
114
|
+
headerBackground: props.headerBackground,
|
115
|
+
titleColor: props.titleColor,
|
116
|
+
controlsStyles: {
|
117
|
+
iconSize: 25
|
118
|
+
}
|
119
|
+
},
|
120
|
+
columnsNumber: columnsNumber,
|
121
|
+
galleryColumnGap: columnGap,
|
122
|
+
galleryRowGap: rowGap,
|
123
|
+
galleryControls: galleryControls,
|
124
|
+
iconClicked: onIconClicked,
|
125
|
+
cardClicked: function cardClicked() {
|
126
|
+
return null;
|
127
|
+
},
|
128
|
+
cardControls: cardControls,
|
129
|
+
cardIconClicked: cardIconClicked,
|
130
|
+
customCardStyles: cardStyles
|
131
|
+
}, props)), /*#__PURE__*/_react.default.createElement(_ReactModal.default, {
|
132
|
+
modalIsOpen: showModal,
|
133
|
+
closeModal: function closeModal() {
|
134
|
+
return setShowModal(false);
|
135
|
+
},
|
136
|
+
exitModalButton: function exitModalButton(e) {
|
137
|
+
return /*#__PURE__*/_react.default.createElement("div", null);
|
138
|
+
}
|
139
|
+
}, /*#__PURE__*/_react.default.createElement(_CreateAlbum.default, {
|
140
|
+
saveHandler: onAddAlbum,
|
141
|
+
cancelHandler: cancelHandler
|
142
|
+
})));
|
143
|
+
};
|
144
|
+
|
145
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n\n"])));
|
146
|
+
|
147
|
+
ViewAlbums.defaultProps = {
|
148
|
+
columnsNumber: 3,
|
149
|
+
headerBackground: '#FE1744',
|
150
|
+
titleColor: 'white',
|
151
|
+
cardBackgroundColor: 'white',
|
152
|
+
columnGap: 10,
|
153
|
+
rowGap: 20
|
154
|
+
};
|
155
|
+
var _default = ViewAlbums;
|
156
|
+
exports.default = _default;
|
@@ -0,0 +1,102 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Albums = exports.default = void 0;
|
9
|
+
|
10
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
11
|
+
|
12
|
+
var _react = _interopRequireWildcard(require("react"));
|
13
|
+
|
14
|
+
var _ViewAlbums = _interopRequireDefault(require("./ViewAlbums"));
|
15
|
+
|
16
|
+
var _util = require("../../helpers/util");
|
17
|
+
|
18
|
+
var _album = _interopRequireDefault(require("../../assets/images/album1.jpg"));
|
19
|
+
|
20
|
+
var _album2 = _interopRequireDefault(require("../../assets/images/album2.jpg"));
|
21
|
+
|
22
|
+
var _album3 = _interopRequireDefault(require("../../assets/images/album3.jpg"));
|
23
|
+
|
24
|
+
var _album4 = _interopRequireDefault(require("../../assets/images/album4.jpg"));
|
25
|
+
|
26
|
+
var _album5 = _interopRequireDefault(require("../../assets/images/album5.jpg"));
|
27
|
+
|
28
|
+
var _album6 = _interopRequireDefault(require("../../assets/images/album6.jpg"));
|
29
|
+
|
30
|
+
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); }
|
31
|
+
|
32
|
+
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; }
|
33
|
+
|
34
|
+
var _default = {
|
35
|
+
title: 'Photo Album/Albums/Albums',
|
36
|
+
component: _ViewAlbums.default
|
37
|
+
};
|
38
|
+
exports.default = _default;
|
39
|
+
|
40
|
+
var Albums = function Albums(args) {
|
41
|
+
var _useState = (0, _react.useState)([{
|
42
|
+
img: _album.default,
|
43
|
+
title: 'Album 1',
|
44
|
+
count: '24'
|
45
|
+
}, {
|
46
|
+
img: _album2.default,
|
47
|
+
title: 'Album 2',
|
48
|
+
count: '24'
|
49
|
+
}, {
|
50
|
+
img: _album3.default,
|
51
|
+
title: 'Album 3',
|
52
|
+
count: '24'
|
53
|
+
}, {
|
54
|
+
img: _album4.default,
|
55
|
+
title: 'Album 4',
|
56
|
+
count: '24'
|
57
|
+
}, {
|
58
|
+
img: _album5.default,
|
59
|
+
title: 'Album 5',
|
60
|
+
count: '24'
|
61
|
+
}, {
|
62
|
+
img: _album6.default,
|
63
|
+
title: 'Album 6',
|
64
|
+
count: '24'
|
65
|
+
}]),
|
66
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
67
|
+
albums = _useState2[0],
|
68
|
+
setAlbums = _useState2[1];
|
69
|
+
|
70
|
+
var cardIconClicked = function cardIconClicked(action, index) {
|
71
|
+
switch (action) {
|
72
|
+
case 'delete':
|
73
|
+
onDeleteAlbum(index);
|
74
|
+
break;
|
75
|
+
|
76
|
+
default:
|
77
|
+
break;
|
78
|
+
}
|
79
|
+
};
|
80
|
+
|
81
|
+
var onDeleteAlbum = function onDeleteAlbum(index) {
|
82
|
+
setAlbums((0, _util.deleteFromArrayByIndex)(albums, index));
|
83
|
+
};
|
84
|
+
|
85
|
+
var onAddAlbum = function onAddAlbum(album) {
|
86
|
+
var newAlbum = {
|
87
|
+
img: album.cover.meta.previewUrl,
|
88
|
+
title: album.title,
|
89
|
+
count: '55'
|
90
|
+
};
|
91
|
+
setAlbums((0, _util.addObjectToArray)(albums, newAlbum));
|
92
|
+
};
|
93
|
+
|
94
|
+
return /*#__PURE__*/_react.default.createElement(_ViewAlbums.default, Object.assign({
|
95
|
+
albums: albums,
|
96
|
+
cardIconClicked: cardIconClicked,
|
97
|
+
onDeleteAlbum: onDeleteAlbum,
|
98
|
+
onAddAlbum: onAddAlbum
|
99
|
+
}, args));
|
100
|
+
};
|
101
|
+
|
102
|
+
exports.Albums = Albums;
|
@@ -0,0 +1,67 @@
|
|
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 _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
13
|
+
|
14
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
15
|
+
|
16
|
+
var _react = _interopRequireWildcard(require("react"));
|
17
|
+
|
18
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
19
|
+
|
20
|
+
var _Controls = _interopRequireDefault(require("../../Controls/Controls"));
|
21
|
+
|
22
|
+
var _globalCardStyles = require("../globalCardStyles");
|
23
|
+
|
24
|
+
var _templateObject, _templateObject2;
|
25
|
+
|
26
|
+
var _excluded = ["title", "description", "img"];
|
27
|
+
|
28
|
+
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); }
|
29
|
+
|
30
|
+
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; }
|
31
|
+
|
32
|
+
var CardStyle1 = function CardStyle1(_ref) {
|
33
|
+
var title = _ref.title,
|
34
|
+
description = _ref.description,
|
35
|
+
img = _ref.img,
|
36
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
37
|
+
|
38
|
+
var _useState = (0, _react.useState)(false),
|
39
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
40
|
+
showIcons = _useState2[0],
|
41
|
+
setShowIcons = _useState2[1];
|
42
|
+
|
43
|
+
var iconCliked = function iconCliked(action) {
|
44
|
+
console.log(action);
|
45
|
+
};
|
46
|
+
|
47
|
+
return /*#__PURE__*/_react.default.createElement(Card, Object.assign({
|
48
|
+
onMouseEnter: function onMouseEnter(e) {
|
49
|
+
return setShowIcons(true);
|
50
|
+
},
|
51
|
+
onMouseLeave: function onMouseLeave(e) {
|
52
|
+
return setShowIcons(false);
|
53
|
+
}
|
54
|
+
}, props), /*#__PURE__*/_react.default.createElement(_globalCardStyles.ImgWrapper, props, /*#__PURE__*/_react.default.createElement(_globalCardStyles.Img, {
|
55
|
+
src: img
|
56
|
+
})), /*#__PURE__*/_react.default.createElement(Content, props, /*#__PURE__*/_react.default.createElement(_globalCardStyles.Title, props, title), /*#__PURE__*/_react.default.createElement(_globalCardStyles.Description, props, description)), props.cardControls && /*#__PURE__*/_react.default.createElement(_Controls.default, Object.assign({
|
57
|
+
controls: props.cardControls,
|
58
|
+
show: showIcons,
|
59
|
+
onIconClicked: iconCliked
|
60
|
+
}, props.controlsStyles)));
|
61
|
+
};
|
62
|
+
|
63
|
+
var Card = (0, _styledComponents.default)(_globalCardStyles.MainCard)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n column-gap: 30px;\n"])));
|
64
|
+
var Content = (0, _styledComponents.default)(_globalCardStyles.globalContent)(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n justify-content: space-between;\n"])));
|
65
|
+
CardStyle1.defaultProps = {};
|
66
|
+
var _default = CardStyle1;
|
67
|
+
exports.default = _default;
|