@mohamed-karawia/library 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/chromatic.yml +26 -0
- package/.storybook/main.js +21 -0
- package/.storybook/middleware.js +28 -0
- package/.storybook/preview.js +9 -0
- package/CHANGELOG.md +66 -0
- package/LICENSE +21 -0
- package/README.md +23 -0
- package/README.old.md +3 -0
- package/build-storybook.log +2704 -0
- package/dist/index.js +311 -0
- package/dist/stories/API/API.js +48 -0
- package/dist/stories/API/API.stories.js +24 -0
- package/dist/stories/Agora/Call/Call.js +316 -0
- package/dist/stories/Agora/Chat/Chat.js +107 -0
- package/dist/stories/Agora/Chat/Chat.stories.js +24 -0
- package/dist/stories/Agora/Chat/Components/ChatItem/ChatItem.js +34 -0
- package/dist/stories/Agora/Chat/Components/ChatRoom/ChatRoom.js +199 -0
- package/dist/stories/Agora/Controls/Controls.js +80 -0
- package/dist/stories/Agora/Preview/PreviewCamera.js +247 -0
- package/dist/stories/Agora/Preview/ShareScreen.js +119 -0
- package/dist/stories/Agora/Room/Room.js +114 -0
- package/dist/stories/Agora/Room/Room.stories.js +24 -0
- package/dist/stories/Buttons/Buttons/Buttons.js +59 -0
- package/dist/stories/Buttons/Buttons/Buttons.stories.js +39 -0
- package/dist/stories/Buttons/ReactModal/ReactModal.js +94 -0
- package/dist/stories/Buttons/ReactModal/ReactModal.stories.js +30 -0
- package/dist/stories/Buttons/ReactModal/ReactModalDemo.js +17 -0
- package/dist/stories/Chat/Chat.js +76 -0
- package/dist/stories/Chat/Chat.stories.js +76 -0
- package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.js +59 -0
- package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.js +58 -0
- package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.js +93 -0
- package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.js +56 -0
- package/dist/stories/Common Inputs/CustomDropzone/CustomDropZone.js +88 -0
- package/dist/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.js +47 -0
- package/dist/stories/Common Inputs/CustomSelect/CustomSelect.js +92 -0
- package/dist/stories/Common Inputs/CustomSelect/CustomSelect.stories.js +61 -0
- package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.js +65 -0
- package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.js +48 -0
- package/dist/stories/Common Inputs/DatePicker/DatePicker.js +104 -0
- package/dist/stories/Common Inputs/DatePicker/DatePicker.stories.js +60 -0
- package/dist/stories/Common Inputs/DatePicker/SingleDatePicker.js +97 -0
- package/dist/stories/Common Inputs/DropZone.js +148 -0
- package/dist/stories/Common Inputs/EditorComponent/EditorComponent.js +84 -0
- package/dist/stories/Common Inputs/EditorComponent/EditorComponent.stories.js +62 -0
- package/dist/stories/Common Inputs/EditorComponent/constants.js +41 -0
- package/dist/stories/Common Inputs/Formik/InputField/InputField.js +35 -0
- package/dist/stories/Common Inputs/Formik/InputField/InputField.stories.js +43 -0
- package/dist/stories/Common Inputs/Formik/RadioField/RadioField.js +54 -0
- package/dist/stories/Common Inputs/Formik/RadioField/RadioField.stories.js +60 -0
- package/dist/stories/Common Inputs/RadioInput/RadioInput.js +115 -0
- package/dist/stories/Common Inputs/RadioInput/RadioInput.stories.js +50 -0
- package/dist/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.js +31 -0
- package/dist/stories/Common Inputs/RichTextInput/Components/Gif/Gif.js +88 -0
- package/dist/stories/Common Inputs/RichTextInput/RichTextInput.js +278 -0
- package/dist/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +51 -0
- package/dist/stories/Common Inputs/TextField/TextField.js +65 -0
- package/dist/stories/Common Inputs/TextField/TextField.stories.js +48 -0
- package/dist/stories/Containers/BaseMaterial.js +65 -0
- package/dist/stories/Containers/BaseMaterial.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetBody.js +17 -0
- package/dist/stories/Containers/WidgetExample/WidgetBody.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetExample.js +23 -0
- package/dist/stories/Containers/WidgetExample/WidgetExample.stories.js +24 -0
- package/dist/stories/Containers/WidgetExample/WidgetHead.js +17 -0
- package/dist/stories/Containers/WidgetExample/WidgetHead.stories.js +24 -0
- package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.js +83 -0
- package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.stories.js +22 -0
- package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.js +81 -0
- package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.js +42 -0
- package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.js +46 -0
- package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.stories.js +65 -0
- package/dist/stories/Enrollment/Guest/FillForm/FillForm.js +64 -0
- package/dist/stories/Enrollment/Guest/FillForm/FillForm.stories.js +48 -0
- package/dist/stories/Events/CreateEvent/CreateEvent.js +110 -0
- package/dist/stories/Events/CreateEvent/CreateEvent.stories.js +30 -0
- package/dist/stories/Events/Event/Event.js +94 -0
- package/dist/stories/Events/Event/Event.stories.js +33 -0
- package/dist/stories/Events/EventsList/EventsList.js +135 -0
- package/dist/stories/Events/EventsList/EventsList.stories.js +44 -0
- package/dist/stories/Forms/AddPhoto/AddPhoto.js +101 -0
- package/dist/stories/Forms/AddPhoto/AddPhoto.stories.js +47 -0
- package/dist/stories/Forms/AddSong/AddSong.js +98 -0
- package/dist/stories/Forms/AddSong/AddSong.stories.js +37 -0
- package/dist/stories/Forms/AddVideo/AddVideo.js +103 -0
- package/dist/stories/Forms/AddVideo/AddVideo.stories.js +33 -0
- package/dist/stories/Forms/Create-Profile/CreateProfile.js +229 -0
- package/dist/stories/Forms/Create-Profile/CreateProfile.stories.js +49 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.js +54 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.js +42 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.js +49 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.js +41 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.js +41 -0
- package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.js +32 -0
- package/dist/stories/Forms/CreateAlbum/CreateAlbum.js +95 -0
- package/dist/stories/Forms/CreateAlbum/CreateAlbum.stories.js +47 -0
- package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.js +84 -0
- package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.js +58 -0
- package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.js +100 -0
- package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.js +47 -0
- package/dist/stories/Forms/CreateProfile/CreateProfile.js +383 -0
- package/dist/stories/Forms/CreateProfile/CreateProfile.stories.js +24 -0
- package/dist/stories/Forms/CreateProfile-3/CreateProfile.js +324 -0
- package/dist/stories/Forms/CreateProfile-3/CreateProfile.stories.js +24 -0
- package/dist/stories/Forms/CreateUser/CreateUser.js +27 -0
- package/dist/stories/Forms/CreateUser/CreateUser.stories.js +26 -0
- package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.js +84 -0
- package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.js +37 -0
- package/dist/stories/Forms/Form/Form.js +35 -0
- package/dist/stories/Forms/Form/Form.stories.js +24 -0
- package/dist/stories/Forms/NewProfile/NewProfile.js +450 -0
- package/dist/stories/Forms/NewProfile/NewProfile.stories.js +24 -0
- package/dist/stories/Layout/Body/Body.js +30 -0
- package/dist/stories/Layout/Body/Body.stories.js +30 -0
- package/dist/stories/Layout/Center/Center.js +26 -0
- package/dist/stories/Layout/Center/Center.stories.js +24 -0
- package/dist/stories/Layout/Head/Head.js +24 -0
- package/dist/stories/Layout/Head/Head.stories.js +24 -0
- package/dist/stories/Layout/Left/Left.js +28 -0
- package/dist/stories/Layout/Left/Left.stories.js +24 -0
- package/dist/stories/Layout/Right/Right.js +27 -0
- package/dist/stories/Layout/Right/Right.stories.js +24 -0
- package/dist/stories/Library/CreateFolder/CreateFolder.js +87 -0
- package/dist/stories/Library/CreateFolder/CreateFolder.stories.js +45 -0
- package/dist/stories/Library/Folders/Folders.js +126 -0
- package/dist/stories/Library/Folders/Folders.stories.js +55 -0
- package/dist/stories/Library/Notes/Notes.js +135 -0
- package/dist/stories/Library/Notes/Notes.stories.js +42 -0
- package/dist/stories/Library/ViewNote/ViewNote.js +30 -0
- package/dist/stories/Library/ViewNote/ViewNote.stories.js +24 -0
- package/dist/stories/Misc/Thumbnail/Thumbnail.js +118 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +131 -0
- package/dist/stories/Music Album/ViewAlbum/ViewAlbum.stories.js +115 -0
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +149 -0
- package/dist/stories/Music Album/ViewAlbums/ViewAlbums.stories.js +107 -0
- package/dist/stories/Navbar/Navbar.js +346 -0
- package/dist/stories/Navbar/Navbar.stories.js +41 -0
- package/dist/stories/Pages/Blank/Blank.js +36 -0
- package/dist/stories/Pages/Blank/Blank.stories.js +24 -0
- package/dist/stories/Pages/Centered/Centered.js +34 -0
- package/dist/stories/Pages/Centered/Centered.stories.js +24 -0
- package/dist/stories/Pages/Chat/Chat.js +86 -0
- package/dist/stories/Pages/Chat/Chat.stories.js +74 -0
- package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.js +96 -0
- package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.js +22 -0
- package/dist/stories/Pages/Enrollment/FillForm/FillForm.js +102 -0
- package/dist/stories/Pages/Enrollment/FillForm/FillForm.stories.js +22 -0
- package/dist/stories/Pages/Enrollment/Forms/Forms.js +125 -0
- package/dist/stories/Pages/Enrollment/Forms/Forms.stories.js +22 -0
- package/dist/stories/Pages/Events/Event/Event.js +89 -0
- package/dist/stories/Pages/Events/Event/Event.stories.js +22 -0
- package/dist/stories/Pages/Events/Events/Events.js +125 -0
- package/dist/stories/Pages/Events/Events/Events.stories.js +22 -0
- package/dist/stories/Pages/Library/Folders/Library.js +136 -0
- package/dist/stories/Pages/Library/Folders/Library.stories.js +22 -0
- package/dist/stories/Pages/Library/Notes/Notes.js +123 -0
- package/dist/stories/Pages/Library/Notes/Notes.stories.js +22 -0
- package/dist/stories/Pages/Music/MusicAlbum/Music.js +211 -0
- package/dist/stories/Pages/Music/MusicAlbum/Music.stories.js +22 -0
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +155 -0
- package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.js +22 -0
- package/dist/stories/Pages/Photos/Album/Album.js +164 -0
- package/dist/stories/Pages/Photos/Album/Album.stories.js +22 -0
- package/dist/stories/Pages/Photos/Albums/Albums.js +151 -0
- package/dist/stories/Pages/Photos/Albums/Albums.stories.js +22 -0
- package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.js +112 -0
- package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.js +22 -0
- package/dist/stories/Pages/Video/VideoAlbum/Video.js +216 -0
- package/dist/stories/Pages/Video/VideoAlbum/Video.stories.js +22 -0
- package/dist/stories/Pages/ViewWorld/ViewWorld.js +244 -0
- package/dist/stories/Pages/ViewWorld/ViewWorld.stories.js +264 -0
- package/dist/stories/Pages/ViewWorld/constatnts.js +172 -0
- package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.js +24 -0
- package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.js +32 -0
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +236 -0
- package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.stories.js +115 -0
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +156 -0
- package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.stories.js +102 -0
- package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.js +35 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +81 -0
- package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.js +40 -0
- package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.js +65 -0
- package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.js +34 -0
- package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.js +66 -0
- package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.js +39 -0
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +93 -0
- package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.js +27 -0
- package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.js +88 -0
- package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.js +37 -0
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +86 -0
- package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.js +44 -0
- package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.js +67 -0
- package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.js +27 -0
- package/dist/stories/Reusable Components/Cards/Card.js +102 -0
- package/dist/stories/Reusable Components/Cards/Card.stories.js +132 -0
- package/dist/stories/Reusable Components/Cards/globalCardStyles.js +70 -0
- package/dist/stories/Reusable Components/Controls/Controls.js +128 -0
- package/dist/stories/Reusable Components/Controls/Controls.stories.js +49 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.js +120 -0
- package/dist/stories/Reusable Components/Gallery/Gallery.stories.js +56 -0
- package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.js +1 -0
- package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +1 -0
- package/dist/stories/Reusable Components/Lists/List.js +1 -0
- package/dist/stories/Reusable Components/Lists/List.stories.js +1 -0
- package/dist/stories/Reusable Components/Mention/Mention.js +72 -0
- package/dist/stories/Reusable Components/Mention/Mention.stories.js +66 -0
- package/dist/stories/Reusable Components/ReactModal/ReactModal.js +83 -0
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +100 -0
- package/dist/stories/Reusable Components/ReusableForm/ReusableForm.stories.js +207 -0
- package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.js +64 -0
- package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.js +35 -0
- package/dist/stories/Reusable Components/ReusableList/ReusableList.js +92 -0
- package/dist/stories/Reusable Components/ReusableList/ReusableList.stories.js +84 -0
- package/dist/stories/Reusable Components/SearchCard/SearchCard.js +81 -0
- package/dist/stories/Reusable Components/SearchCard/SearchCard.stories.js +24 -0
- package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.js +48 -0
- package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.js +80 -0
- package/dist/stories/Reusable Components/Spinner/Spinner.js +28 -0
- package/dist/stories/Reusable Components/Spinner/Spinner.stories.js +22 -0
- package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.js +51 -0
- package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.js +80 -0
- package/dist/stories/Reusable Components/commonStyles.js +54 -0
- package/dist/stories/Reusable Components/fakeData.js +112 -0
- package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.js +74 -0
- package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +24 -0
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +151 -0
- package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.js +101 -0
- package/dist/stories/VideoAlbum/Comments/Comments.js +58 -0
- package/dist/stories/VideoAlbum/Comments/Comments.stories.js +45 -0
- package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.js +235 -0
- package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.js +149 -0
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +110 -0
- package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.stories.js +49 -0
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +150 -0
- package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.js +113 -0
- package/dist/stories/Widgets/LogoWidget/LogoWidget.js +32 -0
- package/dist/stories/Widgets/LogoWidget/LogoWidget.stories.js +26 -0
- package/dist/stories/Widgets/MusicPlayer/MusicPlayer.js +49 -0
- package/dist/stories/Widgets/MusicPlayer/MusicPlayer.stories.js +44 -0
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +93 -0
- package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.js +52 -0
- package/dist/stories/Widgets/SpacesList/SpacesList.js +28 -0
- package/dist/stories/Widgets/SpacesList/SpacesList.stories.js +52 -0
- package/dist/stories/Widgets/SpacesList/SpacesListItem.js +50 -0
- package/dist/stories/Widgets/SpacesList/SpacesListItem.stories.js +24 -0
- package/dist/stories/helpers/util.js +178 -0
- package/package.json +131 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/src/assets/add-svgrepo-com.svg +36 -0
- package/src/assets/basket-svgrepo-com.svg +42 -0
- package/src/assets/bell-svgrepo-com.svg +44 -0
- package/src/assets/compass-svgrepo-com.svg +54 -0
- package/src/assets/home-svgrepo-com.svg +42 -0
- package/src/assets/medal-svgrepo-com.svg +53 -0
- package/src/assets/search-svgrepo-com.svg +42 -0
- package/src/assets/settings-svgrepo-com.svg +47 -0
- package/src/index.js +95 -0
- package/src/stories/API/API.jsx +47 -0
- package/src/stories/API/API.stories.js +10 -0
- package/src/stories/Agora/Call/Call.jsx +213 -0
- package/src/stories/Agora/Chat/Chat.jsx +130 -0
- package/src/stories/Agora/Chat/Chat.stories.jsx +10 -0
- package/src/stories/Agora/Chat/Components/ChatItem/ChatItem.jsx +38 -0
- package/src/stories/Agora/Chat/Components/ChatRoom/ChatRoom.jsx +167 -0
- package/src/stories/Agora/Controls/Controls.jsx +56 -0
- package/src/stories/Agora/Preview/PreviewCamera.jsx +259 -0
- package/src/stories/Agora/Preview/ShareScreen.jsx +58 -0
- package/src/stories/Agora/Room/Room.jsx +85 -0
- package/src/stories/Agora/Room/Room.stories.jsx +10 -0
- package/src/stories/Buttons/Buttons/Buttons.jsx +57 -0
- package/src/stories/Buttons/Buttons/Buttons.stories.jsx +24 -0
- package/src/stories/Buttons/ReactModal/ReactModal.jsx +81 -0
- package/src/stories/Buttons/ReactModal/ReactModal.stories.jsx +18 -0
- package/src/stories/Buttons/ReactModal/ReactModalDemo.jsx +12 -0
- package/src/stories/Chat/Chat.jsx +74 -0
- package/src/stories/Chat/Chat.stories.jsx +59 -0
- package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.jsx +70 -0
- package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.jsx +32 -0
- package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.jsx +98 -0
- package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.jsx +35 -0
- package/src/stories/Common Inputs/CustomDropzone/CustomDropZone.jsx +115 -0
- package/src/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.jsx +26 -0
- package/src/stories/Common Inputs/CustomSelect/CustomSelect.jsx +89 -0
- package/src/stories/Common Inputs/CustomSelect/CustomSelect.stories.jsx +36 -0
- package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.jsx +66 -0
- package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.jsx +31 -0
- package/src/stories/Common Inputs/DatePicker/DatePicker.jsx +105 -0
- package/src/stories/Common Inputs/DatePicker/DatePicker.stories.jsx +47 -0
- package/src/stories/Common Inputs/DatePicker/SingleDatePicker.jsx +91 -0
- package/src/stories/Common Inputs/DropZone.jsx +79 -0
- package/src/stories/Common Inputs/EditorComponent/EditorComponent.jsx +54 -0
- package/src/stories/Common Inputs/EditorComponent/EditorComponent.stories.jsx +60 -0
- package/src/stories/Common Inputs/EditorComponent/constants.js +26 -0
- package/src/stories/Common Inputs/Formik/InputField/InputField.jsx +24 -0
- package/src/stories/Common Inputs/Formik/InputField/InputField.stories.jsx +27 -0
- package/src/stories/Common Inputs/Formik/RadioField/RadioField.jsx +55 -0
- package/src/stories/Common Inputs/Formik/RadioField/RadioField.stories.jsx +41 -0
- package/src/stories/Common Inputs/RadioInput/RadioInput.jsx +108 -0
- package/src/stories/Common Inputs/RadioInput/RadioInput.stories.js +30 -0
- package/src/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.jsx +16 -0
- package/src/stories/Common Inputs/RichTextInput/Components/Gif/Gif.jsx +64 -0
- package/src/stories/Common Inputs/RichTextInput/RichTextInput.jsx +331 -0
- package/src/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +45 -0
- package/src/stories/Common Inputs/TextField/TextField.jsx +66 -0
- package/src/stories/Common Inputs/TextField/TextField.stories.jsx +31 -0
- package/src/stories/Containers/BaseMaterial.jsx +58 -0
- package/src/stories/Containers/BaseMaterial.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetBody.jsx +9 -0
- package/src/stories/Containers/WidgetExample/WidgetBody.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetExample.jsx +19 -0
- package/src/stories/Containers/WidgetExample/WidgetExample.stories.js +10 -0
- package/src/stories/Containers/WidgetExample/WidgetHead.jsx +9 -0
- package/src/stories/Containers/WidgetExample/WidgetHead.stories.js +10 -0
- package/src/stories/Enrollment/Admin/CreateForm/CreateForm.jsx +62 -0
- package/src/stories/Enrollment/Admin/CreateForm/CreateForm.stories.jsx +8 -0
- package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.jsx +98 -0
- package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.jsx +36 -0
- package/src/stories/Enrollment/Admin/ViewForms/ViewForms.jsx +40 -0
- package/src/stories/Enrollment/Admin/ViewForms/ViewForms.stories.jsx +66 -0
- package/src/stories/Enrollment/Guest/FillForm/FillForm.jsx +61 -0
- package/src/stories/Enrollment/Guest/FillForm/FillForm.stories.jsx +27 -0
- package/src/stories/Events/CreateEvent/CreateEvent.jsx +96 -0
- package/src/stories/Events/CreateEvent/CreateEvent.stories.jsx +19 -0
- package/src/stories/Events/Event/Event.jsx +113 -0
- package/src/stories/Events/Event/Event.stories.jsx +21 -0
- package/src/stories/Events/EventsList/EventsList.jsx +117 -0
- package/src/stories/Events/EventsList/EventsList.stories.jsx +25 -0
- package/src/stories/Forms/AddPhoto/AddPhoto.jsx +85 -0
- package/src/stories/Forms/AddPhoto/AddPhoto.stories.jsx +37 -0
- package/src/stories/Forms/AddSong/AddSong.jsx +86 -0
- package/src/stories/Forms/AddSong/AddSong.stories.jsx +26 -0
- package/src/stories/Forms/AddVideo/AddVideo.jsx +78 -0
- package/src/stories/Forms/AddVideo/AddVideo.stories.jsx +20 -0
- package/src/stories/Forms/Create-Profile/CreateProfile.jsx +278 -0
- package/src/stories/Forms/Create-Profile/CreateProfile.stories.jsx +36 -0
- package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.jsx +63 -0
- package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.jsx +27 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.jsx +58 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.jsx +26 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.jsx +21 -0
- package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.jsx +18 -0
- package/src/stories/Forms/CreateAlbum/CreateAlbum.jsx +82 -0
- package/src/stories/Forms/CreateAlbum/CreateAlbum.stories.jsx +37 -0
- package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.jsx +63 -0
- package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.jsx +44 -0
- package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.jsx +87 -0
- package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.jsx +38 -0
- package/src/stories/Forms/CreateProfile/CreateProfile.jsx +556 -0
- package/src/stories/Forms/CreateProfile/CreateProfile.stories.js +10 -0
- package/src/stories/Forms/CreateProfile-3/CreateProfile.jsx +488 -0
- package/src/stories/Forms/CreateProfile-3/CreateProfile.stories.js +10 -0
- package/src/stories/Forms/CreateUser/CreateUser.jsx +13 -0
- package/src/stories/Forms/CreateUser/CreateUser.stories.js +10 -0
- package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.jsx +78 -0
- package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.jsx +23 -0
- package/src/stories/Forms/Form/Form.jsx +34 -0
- package/src/stories/Forms/Form/Form.stories.js +10 -0
- package/src/stories/Forms/NewProfile/NewProfile.jsx +464 -0
- package/src/stories/Forms/NewProfile/NewProfile.stories.jsx +10 -0
- package/src/stories/Forms/NewProfile/presets.json +9 -0
- package/src/stories/Layout/Body/Body.jsx +24 -0
- package/src/stories/Layout/Body/Body.stories.js +26 -0
- package/src/stories/Layout/Center/Center.jsx +16 -0
- package/src/stories/Layout/Center/Center.stories.js +14 -0
- package/src/stories/Layout/Head/Head.jsx +15 -0
- package/src/stories/Layout/Head/Head.stories.js +10 -0
- package/src/stories/Layout/Left/Left.jsx +21 -0
- package/src/stories/Layout/Left/Left.stories.js +14 -0
- package/src/stories/Layout/Right/Right.jsx +17 -0
- package/src/stories/Layout/Right/Right.stories.js +14 -0
- package/src/stories/Library/CreateFolder/CreateFolder.jsx +78 -0
- package/src/stories/Library/CreateFolder/CreateFolder.stories.jsx +32 -0
- package/src/stories/Library/Folders/Folders.jsx +117 -0
- package/src/stories/Library/Folders/Folders.stories.jsx +34 -0
- package/src/stories/Library/Notes/Notes.jsx +117 -0
- package/src/stories/Library/Notes/Notes.stories.jsx +24 -0
- package/src/stories/Library/ViewNote/ViewNote.jsx +25 -0
- package/src/stories/Library/ViewNote/ViewNote.stories.jsx +16 -0
- package/src/stories/Misc/Thumbnail/Thumbnail.jsx +79 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +111 -0
- package/src/stories/Music Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +134 -0
- package/src/stories/Music Album/ViewAlbums/ViewAlbums.stories.jsx +57 -0
- package/src/stories/Navbar/Navbar.jsx +350 -0
- package/src/stories/Navbar/Navbar.stories.js +25 -0
- package/src/stories/Pages/Blank/Blank.jsx +32 -0
- package/src/stories/Pages/Blank/Blank.stories.js +10 -0
- package/src/stories/Pages/Centered/Centered.jsx +31 -0
- package/src/stories/Pages/Centered/Centered.stories.js +14 -0
- package/src/stories/Pages/Chat/Chat.jsx +82 -0
- package/src/stories/Pages/Chat/Chat.stories.jsx +53 -0
- package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.jsx +102 -0
- package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.jsx +8 -0
- package/src/stories/Pages/Enrollment/FillForm/FillForm.jsx +96 -0
- package/src/stories/Pages/Enrollment/FillForm/FillForm.stories.jsx +8 -0
- package/src/stories/Pages/Enrollment/Forms/Forms.jsx +129 -0
- package/src/stories/Pages/Enrollment/Forms/Forms.stories.jsx +8 -0
- package/src/stories/Pages/Events/Event/Event.jsx +88 -0
- package/src/stories/Pages/Events/Event/Event.stories.jsx +8 -0
- package/src/stories/Pages/Events/Events/Events.jsx +110 -0
- package/src/stories/Pages/Events/Events/Events.stories.jsx +8 -0
- package/src/stories/Pages/Library/Folders/Library.jsx +118 -0
- package/src/stories/Pages/Library/Folders/Library.stories.jsx +8 -0
- package/src/stories/Pages/Library/Notes/Notes.jsx +109 -0
- package/src/stories/Pages/Library/Notes/Notes.stories.jsx +8 -0
- package/src/stories/Pages/Music/MusicAlbum/Music.jsx +159 -0
- package/src/stories/Pages/Music/MusicAlbum/Music.stories.jsx +8 -0
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +138 -0
- package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.jsx +8 -0
- package/src/stories/Pages/Photos/Album/Album.jsx +120 -0
- package/src/stories/Pages/Photos/Album/Album.stories.jsx +8 -0
- package/src/stories/Pages/Photos/Albums/Albums.jsx +144 -0
- package/src/stories/Pages/Photos/Albums/Albums.stories.jsx +8 -0
- package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.jsx +91 -0
- package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.jsx +8 -0
- package/src/stories/Pages/Video/VideoAlbum/Video.jsx +166 -0
- package/src/stories/Pages/Video/VideoAlbum/Video.stories.jsx +8 -0
- package/src/stories/Pages/ViewWorld/ViewWorld.jsx +193 -0
- package/src/stories/Pages/ViewWorld/ViewWorld.stories.js +270 -0
- package/src/stories/Pages/ViewWorld/constatnts.js +158 -0
- package/src/stories/Pages/ViewWorld/styles.json +18 -0
- package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.jsx +17 -0
- package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.jsx +20 -0
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +250 -0
- package/src/stories/Photo Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +146 -0
- package/src/stories/Photo Album/ViewAlbums/ViewAlbums.stories.jsx +59 -0
- package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.jsx +74 -0
- package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.jsx +22 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +94 -0
- package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.jsx +21 -0
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +79 -0
- package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.jsx +21 -0
- package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.jsx +75 -0
- package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.jsx +24 -0
- package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.jsx +61 -0
- package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.jsx +22 -0
- package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.jsx +67 -0
- package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.jsx +25 -0
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +117 -0
- package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.jsx +9 -0
- package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.jsx +126 -0
- package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.jsx +23 -0
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +113 -0
- package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.jsx +29 -0
- package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.jsx +86 -0
- package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.jsx +14 -0
- package/src/stories/Reusable Components/Cards/Card.jsx +119 -0
- package/src/stories/Reusable Components/Cards/Card.stories.jsx +118 -0
- package/src/stories/Reusable Components/Cards/globalCardStyles.js +54 -0
- package/src/stories/Reusable Components/Controls/Controls.jsx +137 -0
- package/src/stories/Reusable Components/Controls/Controls.stories.jsx +24 -0
- package/src/stories/Reusable Components/Gallery/Gallery.jsx +110 -0
- package/src/stories/Reusable Components/Gallery/Gallery.stories.jsx +43 -0
- package/src/stories/Reusable Components/Lists/Cards/ListCard-1.jsx +0 -0
- package/src/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +0 -0
- package/src/stories/Reusable Components/Lists/List.jsx +0 -0
- package/src/stories/Reusable Components/Lists/List.stories.js +0 -0
- package/src/stories/Reusable Components/Mention/Mention.jsx +69 -0
- package/src/stories/Reusable Components/Mention/Mention.stories.jsx +55 -0
- package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +76 -0
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +121 -0
- package/src/stories/Reusable Components/ReusableForm/ReusableForm.stories.jsx +167 -0
- package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.jsx +76 -0
- package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.jsx +22 -0
- package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +103 -0
- package/src/stories/Reusable Components/ReusableList/ReusableList.stories.jsx +70 -0
- package/src/stories/Reusable Components/SearchCard/SearchCard.jsx +89 -0
- package/src/stories/Reusable Components/SearchCard/SearchCard.stories.js +10 -0
- package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.jsx +48 -0
- package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.jsx +78 -0
- package/src/stories/Reusable Components/Spinner/Spinner.jsx +82 -0
- package/src/stories/Reusable Components/Spinner/Spinner.stories.jsx +8 -0
- package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.jsx +59 -0
- package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.jsx +61 -0
- package/src/stories/Reusable Components/commonStyles.js +47 -0
- package/src/stories/Reusable Components/fakeData.js +95 -0
- package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.jsx +102 -0
- package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +10 -0
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +130 -0
- package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.jsx +59 -0
- package/src/stories/VideoAlbum/Comments/Comments.jsx +58 -0
- package/src/stories/VideoAlbum/Comments/Comments.stories.jsx +18 -0
- package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.jsx +214 -0
- package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.jsx +82 -0
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +101 -0
- package/src/stories/VideoAlbum/VideoSpace/VideoSpace.stories.jsx +23 -0
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +131 -0
- package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.jsx +57 -0
- package/src/stories/Widgets/LogoWidget/LogoWidget.jsx +21 -0
- package/src/stories/Widgets/LogoWidget/LogoWidget.stories.js +12 -0
- package/src/stories/Widgets/MusicPlayer/MusicPlayer.jsx +64 -0
- package/src/stories/Widgets/MusicPlayer/MusicPlayer.stories.jsx +23 -0
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +107 -0
- package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.jsx +33 -0
- package/src/stories/Widgets/SpacesList/SpacesList.jsx +16 -0
- package/src/stories/Widgets/SpacesList/SpacesList.stories.jsx +27 -0
- package/src/stories/Widgets/SpacesList/SpacesListItem.jsx +75 -0
- package/src/stories/Widgets/SpacesList/SpacesListItem.stories.jsx +10 -0
- package/src/stories/assets/camera.svg +1 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/images/album1.jpg +0 -0
- package/src/stories/assets/images/album2.jpg +0 -0
- package/src/stories/assets/images/album3.jpg +0 -0
- package/src/stories/assets/images/album4.jpg +0 -0
- package/src/stories/assets/images/album5.jpg +0 -0
- package/src/stories/assets/images/album6.jpg +0 -0
- package/src/stories/assets/images/art.jpg +0 -0
- package/src/stories/assets/images/dance.jpg +0 -0
- package/src/stories/assets/images/football.jpg +0 -0
- package/src/stories/assets/images/music.jpg +0 -0
- package/src/stories/assets/images/music1.jpg +0 -0
- package/src/stories/assets/images/music2.jpg +0 -0
- package/src/stories/assets/images/music3.jpg +0 -0
- package/src/stories/assets/images/music4.jpg +0 -0
- package/src/stories/assets/images/music5.jpg +0 -0
- package/src/stories/assets/images/music6.jpg +0 -0
- package/src/stories/assets/images/reset.png +0 -0
- package/src/stories/assets/images/robotics.jpg +0 -0
- package/src/stories/assets/images/tennis.jpg +0 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/reset.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/helpers/util.js +66 -0
@@ -0,0 +1,250 @@
|
|
1
|
+
import React, { useState, useEffect, useCallback } from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import PropTypes from 'prop-types';
|
4
|
+
|
5
|
+
import AddPhoto from '../../Forms/AddPhoto/AddPhoto'
|
6
|
+
import Gallery from '../../Reusable Components/Gallery/Gallery';
|
7
|
+
import Modal from '../../Reusable Components/ReactModal/ReactModal';
|
8
|
+
import DetailedPhoto from '../DetailedPhoto/DetailedPhoto';
|
9
|
+
import { AiOutlineArrowLeft, AiOutlineArrowRight, AiOutlineClose, AiOutlineFileAdd, AiFillDelete } from "react-icons/ai";
|
10
|
+
|
11
|
+
const galleryControls = [
|
12
|
+
{ icon: (<AiOutlineFileAdd />), action: 'add', name: 'Add Photo' },
|
13
|
+
]
|
14
|
+
|
15
|
+
const cardControls = [
|
16
|
+
{ icon: (<AiFillDelete />), action: 'delete', name: 'Delete Image' },
|
17
|
+
]
|
18
|
+
|
19
|
+
const ViewAlbum = ({
|
20
|
+
album,
|
21
|
+
cardBackgroundColor,
|
22
|
+
imgTitleColor,
|
23
|
+
columnsNumber,
|
24
|
+
columnGap,
|
25
|
+
rowGap,
|
26
|
+
descColor,
|
27
|
+
...props
|
28
|
+
}) => {
|
29
|
+
|
30
|
+
const cardStyles = {
|
31
|
+
cardBackgroundColor: cardBackgroundColor,
|
32
|
+
cardTitleColor: imgTitleColor,
|
33
|
+
descColor,
|
34
|
+
controlsStyles: {
|
35
|
+
showOnHover: true,
|
36
|
+
position: 'absolute',
|
37
|
+
iconBackground: "transparent",
|
38
|
+
dropdownBackground: "white",
|
39
|
+
dropdownFontColor: "#FE1744",
|
40
|
+
dropdownItemHoverColor: "#FE1744",
|
41
|
+
iconBackgroundHover: "white",
|
42
|
+
iconBorderRadius: 100,
|
43
|
+
iconSize: 20,
|
44
|
+
iconsGap: 10,
|
45
|
+
maxIcons: 0,
|
46
|
+
iconColor: '#FE1744',
|
47
|
+
iconHoverColor: 'white',
|
48
|
+
dropdownFontSize: 10
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
const [showModal, setShowModal] = useState(false)
|
53
|
+
const [showImgModal, setShowImgModal] = useState(false)
|
54
|
+
const [openedImgIndex, setOpenedImgIndex] = useState(null);
|
55
|
+
const [openedImg, setOpenedImg] = useState(null)
|
56
|
+
|
57
|
+
const handleUserKeyPress = useCallback(event => {
|
58
|
+
const { key } = event;
|
59
|
+
if (key === 'ArrowRight') {
|
60
|
+
setOpenedImgIndex(prev => prev <= album.length - 2 ? prev + 1 : 0)
|
61
|
+
} else if (key === 'ArrowLeft') {
|
62
|
+
setOpenedImgIndex(prev => prev !== 0 ? prev - 1 : 0)
|
63
|
+
}
|
64
|
+
}, []);
|
65
|
+
|
66
|
+
useEffect(() => {
|
67
|
+
setOpenedImg(album[openedImgIndex])
|
68
|
+
window.addEventListener("keydown", handleUserKeyPress);
|
69
|
+
}, [openedImgIndex, handleUserKeyPress]);
|
70
|
+
|
71
|
+
const onIconClicked = (action) => {
|
72
|
+
switch (action) {
|
73
|
+
case 'add':
|
74
|
+
setShowModal(true)
|
75
|
+
break;
|
76
|
+
default:
|
77
|
+
break;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
const cardIconClicked = (action, index) => {
|
82
|
+
props.cardIconClicked(action, index)
|
83
|
+
}
|
84
|
+
|
85
|
+
const onAddPhoto = (photo) => {
|
86
|
+
setShowModal(false)
|
87
|
+
props.addPhoto(photo)
|
88
|
+
}
|
89
|
+
|
90
|
+
const cancelHandler = () => {
|
91
|
+
setShowModal(false)
|
92
|
+
}
|
93
|
+
|
94
|
+
const cardClicked = (index) => {
|
95
|
+
setOpenedImgIndex(index)
|
96
|
+
setShowImgModal(true)
|
97
|
+
}
|
98
|
+
|
99
|
+
const prevPhoto = () => {
|
100
|
+
if (openedImgIndex !== 0) {
|
101
|
+
setOpenedImgIndex(openedImgIndex - 1)
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
const nextPhoto = () => {
|
106
|
+
if (openedImgIndex <= album.length - 2) {
|
107
|
+
setOpenedImgIndex(openedImgIndex + 1)
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
return (
|
112
|
+
<Container>
|
113
|
+
<Gallery
|
114
|
+
galleryTitle="Photo Album"
|
115
|
+
data={album}
|
116
|
+
type="flat"
|
117
|
+
cardStyle="card-style-6"
|
118
|
+
headerStyles={{
|
119
|
+
padding: 10,
|
120
|
+
headerBackground: props.headerBackground,
|
121
|
+
titleColor: props.titleColor,
|
122
|
+
controlsStyles: {
|
123
|
+
iconSize: 25
|
124
|
+
}
|
125
|
+
}}
|
126
|
+
columnsNumber={columnsNumber}
|
127
|
+
galleryColumnGap={columnGap}
|
128
|
+
galleryRowGap={rowGap}
|
129
|
+
galleryControls={galleryControls}
|
130
|
+
iconClicked={onIconClicked}
|
131
|
+
cardClicked={cardClicked}
|
132
|
+
cardIconClicked={cardIconClicked}
|
133
|
+
cardControls={cardControls}
|
134
|
+
customCardStyles={cardStyles}
|
135
|
+
{...props} />
|
136
|
+
|
137
|
+
<Modal
|
138
|
+
modalIsOpen={showModal}
|
139
|
+
closeModal={() => setShowModal(false)}
|
140
|
+
exitModalButton={(e) => (
|
141
|
+
<div></div>
|
142
|
+
)}>
|
143
|
+
<AddPhoto
|
144
|
+
saveHandler={onAddPhoto}
|
145
|
+
cancelHandler={cancelHandler}
|
146
|
+
saveBtnText={'Add'}
|
147
|
+
cancelBtnText={'Cancel'} />
|
148
|
+
</Modal>
|
149
|
+
<Modal
|
150
|
+
modalIsOpen={showImgModal}
|
151
|
+
closeModal={() => {
|
152
|
+
setShowImgModal(false)
|
153
|
+
setOpenedImgIndex(null)
|
154
|
+
}}
|
155
|
+
exitModalButton={(e) => (
|
156
|
+
<div></div>
|
157
|
+
)}
|
158
|
+
width="70vw"
|
159
|
+
height="90vh">
|
160
|
+
<CloseIconContainer onClick={() => setShowImgModal(false)}>
|
161
|
+
<AiOutlineClose />
|
162
|
+
</CloseIconContainer>
|
163
|
+
<LeftIconContainer onClick={prevPhoto}>
|
164
|
+
<AiOutlineArrowLeft />
|
165
|
+
</LeftIconContainer>
|
166
|
+
<DetailedPhoto cardClicked={nextPhoto} img={openedImg} />
|
167
|
+
<RightIconContainer onClick={nextPhoto}>
|
168
|
+
<AiOutlineArrowRight />
|
169
|
+
</RightIconContainer>
|
170
|
+
</Modal>
|
171
|
+
</Container>
|
172
|
+
)
|
173
|
+
}
|
174
|
+
|
175
|
+
const Container = styled.div`
|
176
|
+
|
177
|
+
`
|
178
|
+
|
179
|
+
const IconContainer = styled.div`
|
180
|
+
width: 30px;
|
181
|
+
height: 30px;
|
182
|
+
background-color: #757575;
|
183
|
+
position: absolute;
|
184
|
+
transform: translateY(-50%);
|
185
|
+
top: 50%;
|
186
|
+
display: flex;
|
187
|
+
justify-content: center;
|
188
|
+
align-items: center;
|
189
|
+
border-radius: 50rem;
|
190
|
+
z-index: 999;
|
191
|
+
cursor: pointer;
|
192
|
+
opacity: .4;
|
193
|
+
transition: all .2s;
|
194
|
+
|
195
|
+
&:hover{
|
196
|
+
opacity: 1;
|
197
|
+
transform: scale(1.1) translateY(-50%);
|
198
|
+
}
|
199
|
+
|
200
|
+
svg{
|
201
|
+
color: white;
|
202
|
+
}
|
203
|
+
|
204
|
+
`
|
205
|
+
|
206
|
+
const CloseIconContainer = styled.div`
|
207
|
+
position: absolute;
|
208
|
+
z-index: 999;
|
209
|
+
right: 10px;
|
210
|
+
top: 10px;
|
211
|
+
cursor: pointer;
|
212
|
+
|
213
|
+
svg{
|
214
|
+
color: white;
|
215
|
+
}
|
216
|
+
`
|
217
|
+
|
218
|
+
const LeftIconContainer = styled(IconContainer)`
|
219
|
+
left: 10px;
|
220
|
+
`
|
221
|
+
|
222
|
+
const RightIconContainer = styled(IconContainer)`
|
223
|
+
right: 10px;
|
224
|
+
`
|
225
|
+
|
226
|
+
ViewAlbum.defaultProps = {
|
227
|
+
headerBackground: '#FE1744',
|
228
|
+
titleColor: 'white',
|
229
|
+
columnsNumber: 3,
|
230
|
+
columnGap: 10,
|
231
|
+
rowGap: 20,
|
232
|
+
cardBackgroundColor: 'white'
|
233
|
+
};
|
234
|
+
|
235
|
+
ViewAlbum.propTypes = {
|
236
|
+
album: PropTypes.array,
|
237
|
+
addPhoto: PropTypes.func,
|
238
|
+
deletePhoto: PropTypes.func,
|
239
|
+
cardIconClicked: PropTypes.func,
|
240
|
+
headerBackground: PropTypes.string,
|
241
|
+
titleColor: PropTypes.string,
|
242
|
+
columnsNumber: PropTypes.number,
|
243
|
+
columnGap: PropTypes.number,
|
244
|
+
rowGap: PropTypes.number,
|
245
|
+
cardBackgroundColor: PropTypes.string,
|
246
|
+
imgTitleColor: PropTypes.string,
|
247
|
+
descColor: PropTypes.string,
|
248
|
+
}
|
249
|
+
|
250
|
+
export default ViewAlbum;
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import ViewAlbum from "./ViewAlbum";
|
3
|
+
import { deleteFromArrayByIndex, addObjectToArray } from '../../helpers/util';
|
4
|
+
|
5
|
+
import img1 from '../../assets/images/album1.jpg';
|
6
|
+
import img2 from '../../assets/images/album2.jpg';
|
7
|
+
import img3 from '../../assets/images/album3.jpg';
|
8
|
+
import img4 from '../../assets/images/album4.jpg';
|
9
|
+
import img5 from '../../assets/images/album5.jpg';
|
10
|
+
import img6 from '../../assets/images/album6.jpg';
|
11
|
+
|
12
|
+
|
13
|
+
export default {
|
14
|
+
title: 'Photo Album/View Album',
|
15
|
+
component: ViewAlbum
|
16
|
+
}
|
17
|
+
|
18
|
+
export const Album = args => {
|
19
|
+
const [album, setAlbum] = useState([
|
20
|
+
{ index: 0, img: img5, title: 'Image 1', description: 'This is description test', date: '2021-11-30' },
|
21
|
+
{ index: 1, img: img3, title: 'Image 2', description: 'This is description test', date: '2021-11-30' },
|
22
|
+
{ index: 2, img: img6, title: 'Image 3', description: 'This is description test', date: '2021-11-30' },
|
23
|
+
{ index: 3, img: img2, title: 'Image 4', description: 'This is description test', date: '2021-11-30' },
|
24
|
+
{ index: 4, img: img1, title: 'Image 5', description: 'This is description test', date: '2021-11-30' },
|
25
|
+
{ index: 5, img: img4, title: 'Image 6', description: 'This is description test', date: '2021-11-30' },
|
26
|
+
])
|
27
|
+
|
28
|
+
const onAddPhoto = (photo) => {
|
29
|
+
const newImg = {
|
30
|
+
img: photo.cover.meta.previewUrl,
|
31
|
+
title: photo.title,
|
32
|
+
description: photo.description,
|
33
|
+
date: photo.date
|
34
|
+
}
|
35
|
+
setAlbum(addObjectToArray(album, newImg))
|
36
|
+
}
|
37
|
+
|
38
|
+
const cardIconClicked = (action, index) => {
|
39
|
+
switch (action) {
|
40
|
+
case 'delete':
|
41
|
+
onDeletePhoto(index)
|
42
|
+
break;
|
43
|
+
default:
|
44
|
+
break;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
const onDeletePhoto = (index) => {
|
49
|
+
setAlbum(deleteFromArrayByIndex(album, index))
|
50
|
+
}
|
51
|
+
|
52
|
+
return (
|
53
|
+
<ViewAlbum
|
54
|
+
album={album}
|
55
|
+
addPhoto={onAddPhoto}
|
56
|
+
deletePhoto={onDeletePhoto}
|
57
|
+
cardIconClicked={cardIconClicked}
|
58
|
+
{...args} />
|
59
|
+
)
|
60
|
+
}
|
@@ -0,0 +1,146 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import PropTypes from 'prop-types';
|
4
|
+
|
5
|
+
import CreateAlbum from '../../Forms/CreateAlbum/CreateAlbum'
|
6
|
+
import Gallery from '../../Reusable Components/Gallery/Gallery';
|
7
|
+
import Modal from '../../Reusable Components/ReactModal/ReactModal';
|
8
|
+
|
9
|
+
import { AiOutlineFileAdd, AiFillDelete } from "react-icons/ai";
|
10
|
+
|
11
|
+
const cardControls = [
|
12
|
+
{ icon: (<AiFillDelete />), action: 'delete', name: 'Delete album' },
|
13
|
+
]
|
14
|
+
|
15
|
+
const galleryControls = [
|
16
|
+
{ icon: (<AiOutlineFileAdd />), action: 'add', name: 'Add Album' },
|
17
|
+
]
|
18
|
+
|
19
|
+
const ViewAlbums = ({
|
20
|
+
albums,
|
21
|
+
cardBackgroundColor,
|
22
|
+
cardTitleColor,
|
23
|
+
cardTitleFontSize,
|
24
|
+
albumTitleColor,
|
25
|
+
countColor,
|
26
|
+
countFontSize,
|
27
|
+
columnsNumber,
|
28
|
+
columnGap,
|
29
|
+
rowGap,
|
30
|
+
...props }) => {
|
31
|
+
|
32
|
+
const cardStyles = {
|
33
|
+
darkOnHover: true,
|
34
|
+
cardBackgroundColor,
|
35
|
+
cardTitleColor,
|
36
|
+
cardTitleFontSize,
|
37
|
+
countColor,
|
38
|
+
countFontSize,
|
39
|
+
controlsStyles: {
|
40
|
+
showOnHover: true,
|
41
|
+
position: 'center',
|
42
|
+
dropdownFontColor: "white",
|
43
|
+
iconBorderRadius: 100,
|
44
|
+
iconSize: 40,
|
45
|
+
iconsGap: 10,
|
46
|
+
iconColor: 'white',
|
47
|
+
containerPadding: 20,
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
const [showModal, setShowModal] = useState(false)
|
52
|
+
|
53
|
+
const onIconClicked = (action) => {
|
54
|
+
switch (action) {
|
55
|
+
case 'add':
|
56
|
+
setShowModal(true)
|
57
|
+
break;
|
58
|
+
default:
|
59
|
+
break;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
const cardIconClicked = (action, index) => {
|
64
|
+
props.cardIconClicked(action, index)
|
65
|
+
}
|
66
|
+
|
67
|
+
const onAddAlbum = (album) => {
|
68
|
+
props.onAddAlbum(album)
|
69
|
+
setShowModal(false)
|
70
|
+
}
|
71
|
+
|
72
|
+
const cancelHandler = () => {
|
73
|
+
setShowModal(false)
|
74
|
+
}
|
75
|
+
|
76
|
+
return (
|
77
|
+
<Container>
|
78
|
+
<Gallery
|
79
|
+
galleryTitle="Photo Albums"
|
80
|
+
data={albums}
|
81
|
+
type="flat"
|
82
|
+
cardStyle="card-style-6"
|
83
|
+
headerStyles={{
|
84
|
+
padding: 10,
|
85
|
+
headerBackground: props.headerBackground,
|
86
|
+
titleColor: props.titleColor,
|
87
|
+
controlsStyles: {
|
88
|
+
iconSize: 25
|
89
|
+
}
|
90
|
+
}}
|
91
|
+
columnsNumber={columnsNumber}
|
92
|
+
galleryColumnGap={columnGap}
|
93
|
+
galleryRowGap={rowGap}
|
94
|
+
galleryControls={galleryControls}
|
95
|
+
iconClicked={onIconClicked}
|
96
|
+
cardClicked={() => null}
|
97
|
+
cardControls={cardControls}
|
98
|
+
cardIconClicked={cardIconClicked}
|
99
|
+
customCardStyles={cardStyles}
|
100
|
+
{...props} />
|
101
|
+
|
102
|
+
<Modal
|
103
|
+
modalIsOpen={showModal}
|
104
|
+
closeModal={() => setShowModal(false)}
|
105
|
+
exitModalButton={(e) => (
|
106
|
+
<div></div>
|
107
|
+
)}>
|
108
|
+
<CreateAlbum
|
109
|
+
saveHandler={onAddAlbum}
|
110
|
+
cancelHandler={cancelHandler} />
|
111
|
+
</Modal>
|
112
|
+
</Container>
|
113
|
+
)
|
114
|
+
}
|
115
|
+
|
116
|
+
const Container = styled.div`
|
117
|
+
|
118
|
+
`
|
119
|
+
|
120
|
+
ViewAlbums.defaultProps = {
|
121
|
+
columnsNumber: 3,
|
122
|
+
headerBackground: '#FE1744',
|
123
|
+
titleColor: 'white',
|
124
|
+
cardBackgroundColor: 'white',
|
125
|
+
columnGap: 10,
|
126
|
+
rowGap: 20
|
127
|
+
};
|
128
|
+
|
129
|
+
ViewAlbums.propTypes = {
|
130
|
+
albums: PropTypes.array,
|
131
|
+
cardIconClicked: PropTypes.func,
|
132
|
+
onDeleteAlbum: PropTypes.func,
|
133
|
+
onAddAlbum: PropTypes.func,
|
134
|
+
columnsNumber: PropTypes.number,
|
135
|
+
headerBackground: PropTypes.string,
|
136
|
+
titleColor: PropTypes.string,
|
137
|
+
cardBackgroundColor: PropTypes.string,
|
138
|
+
columnGap: PropTypes.number,
|
139
|
+
rowGap: PropTypes.number,
|
140
|
+
countColor: PropTypes.string,
|
141
|
+
countFontSize: PropTypes.number,
|
142
|
+
cardTitleColor: PropTypes.string,
|
143
|
+
cardTitleFontSize: PropTypes.number,
|
144
|
+
}
|
145
|
+
|
146
|
+
export default ViewAlbums
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
import ViewAlbums from './ViewAlbums';
|
3
|
+
import { deleteFromArrayByIndex, addObjectToArray } from '../../helpers/util';
|
4
|
+
|
5
|
+
import img1 from '../../assets/images/album1.jpg';
|
6
|
+
import img2 from '../../assets/images/album2.jpg';
|
7
|
+
import img3 from '../../assets/images/album3.jpg';
|
8
|
+
import img4 from '../../assets/images/album4.jpg';
|
9
|
+
import img5 from '../../assets/images/album5.jpg';
|
10
|
+
import img6 from '../../assets/images/album6.jpg';
|
11
|
+
|
12
|
+
|
13
|
+
export default {
|
14
|
+
title: 'Photo Album/Albums/Albums',
|
15
|
+
component: ViewAlbums
|
16
|
+
}
|
17
|
+
|
18
|
+
export const Albums = args => {
|
19
|
+
const [albums, setAlbums] = useState([
|
20
|
+
{ img: img1, title: 'Album 1', count: '24' },
|
21
|
+
{ img: img2, title: 'Album 2', count: '24' },
|
22
|
+
{ img: img3, title: 'Album 3', count: '24' },
|
23
|
+
{ img: img4, title: 'Album 4', count: '24' },
|
24
|
+
{ img: img5, title: 'Album 5', count: '24' },
|
25
|
+
{ img: img6, title: 'Album 6', count: '24' },
|
26
|
+
])
|
27
|
+
|
28
|
+
const cardIconClicked = (action, index) => {
|
29
|
+
switch (action) {
|
30
|
+
case 'delete':
|
31
|
+
onDeleteAlbum(index)
|
32
|
+
break;
|
33
|
+
default:
|
34
|
+
break;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
const onDeleteAlbum = (index) => {
|
39
|
+
setAlbums(deleteFromArrayByIndex(albums, index))
|
40
|
+
}
|
41
|
+
|
42
|
+
const onAddAlbum = (album) => {
|
43
|
+
const newAlbum = {
|
44
|
+
img: album.cover.meta.previewUrl,
|
45
|
+
title: album.title,
|
46
|
+
count: '55'
|
47
|
+
}
|
48
|
+
setAlbums(addObjectToArray(albums, newAlbum))
|
49
|
+
}
|
50
|
+
|
51
|
+
return (
|
52
|
+
<ViewAlbums
|
53
|
+
albums={albums}
|
54
|
+
cardIconClicked={cardIconClicked}
|
55
|
+
onDeleteAlbum={onDeleteAlbum}
|
56
|
+
onAddAlbum={onAddAlbum}
|
57
|
+
{...args} />
|
58
|
+
)
|
59
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
|
3
|
+
import styled from 'styled-components';
|
4
|
+
import PropTypes from "prop-types";
|
5
|
+
import Controls from '../../Controls/Controls';
|
6
|
+
|
7
|
+
import {
|
8
|
+
MainCard,
|
9
|
+
globalContent,
|
10
|
+
Title, Description,
|
11
|
+
ImgWrapper,
|
12
|
+
Img
|
13
|
+
} from '../globalCardStyles';
|
14
|
+
|
15
|
+
const CardStyle1 = ({ title, description, img, ...props }) => {
|
16
|
+
const [showIcons, setShowIcons] = useState(false)
|
17
|
+
|
18
|
+
const iconCliked = (action) => {
|
19
|
+
console.log(action)
|
20
|
+
}
|
21
|
+
|
22
|
+
return (
|
23
|
+
<Card
|
24
|
+
onMouseEnter={e => setShowIcons(true)}
|
25
|
+
onMouseLeave={e => setShowIcons(false)}
|
26
|
+
{...props}>
|
27
|
+
<ImgWrapper {...props}>
|
28
|
+
<Img src={img} />
|
29
|
+
</ImgWrapper>
|
30
|
+
<Content {...props}>
|
31
|
+
<Title {...props}>{title}</Title>
|
32
|
+
<Description {...props}>{description}</Description>
|
33
|
+
</Content>
|
34
|
+
{props.cardControls
|
35
|
+
&&
|
36
|
+
<Controls
|
37
|
+
controls={props.cardControls}
|
38
|
+
show={showIcons}
|
39
|
+
onIconClicked={iconCliked}
|
40
|
+
{...props.controlsStyles} />}
|
41
|
+
</Card>
|
42
|
+
)
|
43
|
+
}
|
44
|
+
|
45
|
+
const Card = styled(MainCard)`
|
46
|
+
column-gap: 30px;
|
47
|
+
`
|
48
|
+
|
49
|
+
const Content = styled(globalContent)`
|
50
|
+
justify-content: space-between;
|
51
|
+
`
|
52
|
+
|
53
|
+
CardStyle1.defaultProps = {}
|
54
|
+
|
55
|
+
CardStyle1.propTypes = {
|
56
|
+
title: PropTypes.string,
|
57
|
+
description: PropTypes.string,
|
58
|
+
img: PropTypes.string,
|
59
|
+
cardBackgroundColor: PropTypes.string,
|
60
|
+
onHoverBackgroundColor: PropTypes.string,
|
61
|
+
cardRadius: PropTypes.number,
|
62
|
+
cardTitleFontSize: PropTypes.number,
|
63
|
+
cardTitleFontWeight: PropTypes.number,
|
64
|
+
cardTitleColor: PropTypes.string,
|
65
|
+
cardImageRadius: PropTypes.string,
|
66
|
+
cardDescriptionFontSize: PropTypes.number,
|
67
|
+
cardDescriptionColor: PropTypes.string,
|
68
|
+
cardPadding: PropTypes.number,
|
69
|
+
imgSize: PropTypes.number,
|
70
|
+
cardBorderSize: PropTypes.number,
|
71
|
+
cardBorderColor: PropTypes.string
|
72
|
+
};
|
73
|
+
|
74
|
+
export default CardStyle1
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import CardStyle1 from './CardStyle1';
|
3
|
+
|
4
|
+
import { cardControls } from '../../fakeData'
|
5
|
+
|
6
|
+
export default {
|
7
|
+
title: 'Reusable Components/Cards/Card style 1',
|
8
|
+
component: CardStyle1
|
9
|
+
}
|
10
|
+
|
11
|
+
export const Card = args => (
|
12
|
+
<CardStyle1
|
13
|
+
img='https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png'
|
14
|
+
title="Card Style 1"
|
15
|
+
description="Card style 1 description test"
|
16
|
+
cardControls={cardControls}
|
17
|
+
controlsStyles={{
|
18
|
+
iconColor: 'black',
|
19
|
+
showOnHover: true,
|
20
|
+
}}
|
21
|
+
{...args}
|
22
|
+
/>)
|
@@ -0,0 +1,94 @@
|
|
1
|
+
import React, { useState } from 'react';
|
2
|
+
|
3
|
+
import styled from 'styled-components';
|
4
|
+
import PropTypes from "prop-types";
|
5
|
+
import Controls from '../../Controls/Controls';
|
6
|
+
|
7
|
+
import { MainCard, globalContent, Title, Description } from '../globalCardStyles';
|
8
|
+
import { AiFillFolderOpen, AiOutlineHeart, AiOutlineAudioMuted } from "react-icons/ai";
|
9
|
+
|
10
|
+
const CardStyle10 = ({
|
11
|
+
title,
|
12
|
+
description,
|
13
|
+
img,
|
14
|
+
cardControls,
|
15
|
+
...props }) => {
|
16
|
+
const [showIcons, setShowIcons] = useState(false)
|
17
|
+
|
18
|
+
const iconCliked = (action) => {
|
19
|
+
props.iconClicked(action, props.index)
|
20
|
+
}
|
21
|
+
|
22
|
+
|
23
|
+
return (
|
24
|
+
<Card
|
25
|
+
onMouseEnter={e => setShowIcons(true)}
|
26
|
+
onMouseLeave={e => setShowIcons(false)}
|
27
|
+
{...props}>
|
28
|
+
<SvgWrapper {...props}>
|
29
|
+
<AiFillFolderOpen />
|
30
|
+
</SvgWrapper>
|
31
|
+
<Content {...props}>
|
32
|
+
<Title {...props}>{title}</Title>
|
33
|
+
<Description {...props}>{description}</Description>
|
34
|
+
</Content>
|
35
|
+
<Controls
|
36
|
+
controls={cardControls}
|
37
|
+
show={showIcons}
|
38
|
+
onIconClicked={iconCliked}
|
39
|
+
showOnHover={true}
|
40
|
+
position='absolute'
|
41
|
+
iconBorderRadius={100}
|
42
|
+
iconSize={20}
|
43
|
+
iconsGap={10}
|
44
|
+
maxIcons={0}
|
45
|
+
iconColor='#FE1744'
|
46
|
+
dropdownFontSize={10}
|
47
|
+
{...props.controlsStyles} />
|
48
|
+
</Card>
|
49
|
+
)
|
50
|
+
}
|
51
|
+
|
52
|
+
const Card = styled(MainCard)`
|
53
|
+
flex-direction: column;
|
54
|
+
row-gap: 10px;
|
55
|
+
`
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
const Content = styled(globalContent)`
|
60
|
+
align-items: center;
|
61
|
+
justify-content: space-between;
|
62
|
+
|
63
|
+
`
|
64
|
+
|
65
|
+
const SvgWrapper = styled.div`
|
66
|
+
|
67
|
+
svg{
|
68
|
+
width: 70px;
|
69
|
+
height: 70px;
|
70
|
+
fill: ${props => props.iconColor}
|
71
|
+
}
|
72
|
+
`
|
73
|
+
|
74
|
+
CardStyle10.defaultProps = {}
|
75
|
+
|
76
|
+
CardStyle10.propTypes = {
|
77
|
+
title: PropTypes.string,
|
78
|
+
description: PropTypes.string,
|
79
|
+
cardBackgroundColor: PropTypes.string,
|
80
|
+
onHoverBackgroundColor: PropTypes.string,
|
81
|
+
cardRadius: PropTypes.number,
|
82
|
+
cardTitleFontSize: PropTypes.number,
|
83
|
+
cardTitleFontWeight: PropTypes.number,
|
84
|
+
cardTitleColor: PropTypes.string,
|
85
|
+
cardDescriptionFontSize: PropTypes.number,
|
86
|
+
cardDescriptionColor: PropTypes.string,
|
87
|
+
cardPadding: PropTypes.number,
|
88
|
+
cardBorderSize: PropTypes.number,
|
89
|
+
cardBorderColor: PropTypes.string,
|
90
|
+
iconColor: PropTypes.string
|
91
|
+
};
|
92
|
+
|
93
|
+
|
94
|
+
export default CardStyle10
|