@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,132 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.CardWithoutImageColumn = exports.CardWithoutImage = exports.CardWithImageColumn = exports.CardWithImage = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _Card = _interopRequireDefault(require("./Card"));
|
13
|
+
|
14
|
+
var _default = {
|
15
|
+
title: 'Reusable Components/Cards/Regular Card',
|
16
|
+
component: _Card.default
|
17
|
+
};
|
18
|
+
exports.default = _default;
|
19
|
+
|
20
|
+
var Template = function Template(args) {
|
21
|
+
return /*#__PURE__*/_react.default.createElement(_Card.default, args);
|
22
|
+
};
|
23
|
+
|
24
|
+
var CardWithImage = Template.bind({});
|
25
|
+
exports.CardWithImage = CardWithImage;
|
26
|
+
CardWithImage.args = {
|
27
|
+
title: 'Card with image',
|
28
|
+
description: 'Lorem ipsum dolor sit amet consectetur.',
|
29
|
+
img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png',
|
30
|
+
cardBackgroundColor: '#f1d6d6',
|
31
|
+
cardRadius: '20',
|
32
|
+
cardTitleFontSize: '',
|
33
|
+
cardTitleColor: '',
|
34
|
+
cardImageRadius: '100',
|
35
|
+
cardDescriptionFontSize: '',
|
36
|
+
cardDescriptionColor: '',
|
37
|
+
cardDirection: '',
|
38
|
+
cardPadding: '10',
|
39
|
+
imgSize: '90',
|
40
|
+
cardBorderSize: '',
|
41
|
+
cardBorderColor: '',
|
42
|
+
controlsStyles: {
|
43
|
+
showOnHover: true,
|
44
|
+
iconBackground: "#272727",
|
45
|
+
dropdownBackground: "#272727",
|
46
|
+
dropdownFontColor: "white",
|
47
|
+
dropdownItemHoverColor: "#414141",
|
48
|
+
iconBackgroundHover: "#414141"
|
49
|
+
}
|
50
|
+
};
|
51
|
+
var CardWithImageColumn = Template.bind({});
|
52
|
+
exports.CardWithImageColumn = CardWithImageColumn;
|
53
|
+
CardWithImageColumn.args = {
|
54
|
+
title: 'Card with image column',
|
55
|
+
description: 'Lorem ipsum dolor sit amet consectetur.',
|
56
|
+
img: 'https://www.kindpng.com/picc/m/163-1636340_user-avatar-icon-avatar-transparent-user-icon-png.png',
|
57
|
+
cardBackgroundColor: '#f1d6d6',
|
58
|
+
cardRadius: '20',
|
59
|
+
cardTitleFontSize: '',
|
60
|
+
cardTitleColor: '',
|
61
|
+
cardImageRadius: '100',
|
62
|
+
cardDescriptionFontSize: '',
|
63
|
+
cardDescriptionColor: '',
|
64
|
+
cardDirection: 'column',
|
65
|
+
cardPadding: '10',
|
66
|
+
imgSize: '90',
|
67
|
+
cardBorderSize: '',
|
68
|
+
cardBorderColor: '',
|
69
|
+
controlsStyles: {
|
70
|
+
showOnHover: true,
|
71
|
+
iconBackground: "#272727",
|
72
|
+
dropdownBackground: "#272727",
|
73
|
+
dropdownFontColor: "white",
|
74
|
+
dropdownItemHoverColor: "#414141",
|
75
|
+
iconBackgroundHover: "#414141"
|
76
|
+
}
|
77
|
+
};
|
78
|
+
var CardWithoutImage = Template.bind({});
|
79
|
+
exports.CardWithoutImage = CardWithoutImage;
|
80
|
+
CardWithoutImage.args = {
|
81
|
+
title: 'Card with image',
|
82
|
+
description: 'Lorem ipsum dolor sit amet consectetur.',
|
83
|
+
img: '',
|
84
|
+
cardBackgroundColor: '#f1d6d6',
|
85
|
+
cardRadius: '20',
|
86
|
+
cardTitleFontSize: '',
|
87
|
+
cardTitleColor: '',
|
88
|
+
cardImageRadius: '100',
|
89
|
+
cardDescriptionFontSize: '',
|
90
|
+
cardDescriptionColor: '',
|
91
|
+
cardDirection: '',
|
92
|
+
cardPadding: '10',
|
93
|
+
imgSize: '90',
|
94
|
+
cardBorderSize: '',
|
95
|
+
cardBorderColor: '',
|
96
|
+
controlsStyles: {
|
97
|
+
showOnHover: true,
|
98
|
+
iconBackground: "#272727",
|
99
|
+
dropdownBackground: "#272727",
|
100
|
+
dropdownFontColor: "white",
|
101
|
+
dropdownItemHoverColor: "#414141",
|
102
|
+
iconBackgroundHover: "#414141"
|
103
|
+
}
|
104
|
+
};
|
105
|
+
var CardWithoutImageColumn = Template.bind({});
|
106
|
+
exports.CardWithoutImageColumn = CardWithoutImageColumn;
|
107
|
+
CardWithoutImageColumn.args = {
|
108
|
+
title: 'Card with image column',
|
109
|
+
description: 'Lorem ipsum dolor sit amet consectetur.',
|
110
|
+
img: '',
|
111
|
+
cardBackgroundColor: '#f1d6d6',
|
112
|
+
onHoverBackgroundColor: '',
|
113
|
+
cardRadius: '20',
|
114
|
+
cardTitleFontSize: '',
|
115
|
+
cardTitleColor: '',
|
116
|
+
cardImageRadius: '100',
|
117
|
+
cardDescriptionFontSize: '',
|
118
|
+
cardDescriptionColor: '',
|
119
|
+
cardDirection: 'column',
|
120
|
+
cardPadding: '10',
|
121
|
+
imgSize: '90',
|
122
|
+
cardBorderSize: '',
|
123
|
+
cardBorderColor: '',
|
124
|
+
controlsStyles: {
|
125
|
+
showOnHover: true,
|
126
|
+
iconBackground: "#272727",
|
127
|
+
dropdownBackground: "#272727",
|
128
|
+
dropdownFontColor: "white",
|
129
|
+
dropdownItemHoverColor: "#414141",
|
130
|
+
iconBackgroundHover: "#414141"
|
131
|
+
}
|
132
|
+
};
|
@@ -0,0 +1,70 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Img = exports.ImgWrapper = exports.Description = exports.Title = exports.globalContent = exports.MainCard = void 0;
|
9
|
+
|
10
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/taggedTemplateLiteral"));
|
11
|
+
|
12
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
13
|
+
|
14
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
15
|
+
|
16
|
+
var MainCard = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n* {\n margin: 0;\n padding: 0;\n }\n font-family: sans-serif;\n display: flex;\n background-color: ", ";\n border-radius: ", "px;\n border: ", ";\n align-items: center;\n padding: ", " !important;\n order: ", ";\n &:hover {\n box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);\n -webkit-filter: ", ";\n transition: all .2s ease;\n background-color: ", ";\n }\n"])), function (props) {
|
17
|
+
return props.cardBackgroundColor || 'white';
|
18
|
+
}, function (props) {
|
19
|
+
return props.cardRadius;
|
20
|
+
}, function (props) {
|
21
|
+
return props.cardBorderSize + 'px solid ' + props.cardBorderColor;
|
22
|
+
}, function (props) {
|
23
|
+
return props.cardPadding + 'px' || 0;
|
24
|
+
}, function (props) {
|
25
|
+
return props.priority;
|
26
|
+
}, function (props) {
|
27
|
+
return props.darkOnHover ? 'brightness(60%)' : 'brightness(100%)';
|
28
|
+
}, function (props) {
|
29
|
+
return props.onHoverBackgroundColor;
|
30
|
+
});
|
31
|
+
|
32
|
+
exports.MainCard = MainCard;
|
33
|
+
|
34
|
+
var globalContent = _styledComponents.default.div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n gap: ", "px;\n"])), function (props) {
|
35
|
+
return props.contentGap;
|
36
|
+
});
|
37
|
+
|
38
|
+
exports.globalContent = globalContent;
|
39
|
+
|
40
|
+
var Title = _styledComponents.default.h3(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n text-transform: capitalize;\n color: ", ";\n font-size: ", "px;\n font-weight: ", ";\n"])), function (props) {
|
41
|
+
return props.cardTitleColor || 'black';
|
42
|
+
}, function (props) {
|
43
|
+
return props.cardTitleFontSize;
|
44
|
+
}, function (props) {
|
45
|
+
return props.cardTitleFontWeight || 300;
|
46
|
+
});
|
47
|
+
|
48
|
+
exports.Title = Title;
|
49
|
+
|
50
|
+
var Description = _styledComponents.default.h5(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\ncolor: ", ";\nfont-size: ", "px;\nfont-weight: 500;\n"])), function (props) {
|
51
|
+
return props.cardDescriptionColor || 'black';
|
52
|
+
}, function (props) {
|
53
|
+
return props.cardDescriptionFontSize;
|
54
|
+
});
|
55
|
+
|
56
|
+
exports.Description = Description;
|
57
|
+
|
58
|
+
var ImgWrapper = _styledComponents.default.div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2.default)(["\n width: ", "px;\n height: ", "px;\n border-radius: ", ";\n"])), function (props) {
|
59
|
+
return props.imgSize || 100;
|
60
|
+
}, function (props) {
|
61
|
+
return props.imgSize || 100;
|
62
|
+
}, function (props) {
|
63
|
+
return props.cardImageRadius + 'px' || '100%';
|
64
|
+
});
|
65
|
+
|
66
|
+
exports.ImgWrapper = ImgWrapper;
|
67
|
+
|
68
|
+
var Img = _styledComponents.default.img(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2.default)(["\n width: 100%;\n height: 100%;\n object-position: center;\n object-fit: cover;\n border-radius: inherit;\n"])));
|
69
|
+
|
70
|
+
exports.Img = Img;
|
@@ -0,0 +1,128 @@
|
|
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 _io = require("react-icons/io");
|
21
|
+
|
22
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
|
23
|
+
|
24
|
+
var _excluded = ["controls", "maxIcons"];
|
25
|
+
|
26
|
+
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); }
|
27
|
+
|
28
|
+
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; }
|
29
|
+
|
30
|
+
var Controls = function Controls(_ref) {
|
31
|
+
var controls = _ref.controls,
|
32
|
+
_ref$maxIcons = _ref.maxIcons,
|
33
|
+
maxIcons = _ref$maxIcons === void 0 ? 2 : _ref$maxIcons,
|
34
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
35
|
+
|
36
|
+
var _useState = (0, _react.useState)(false),
|
37
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
38
|
+
showMore = _useState2[0],
|
39
|
+
setShowMore = _useState2[1];
|
40
|
+
|
41
|
+
var showIcons = props.showOnHover && props.show || !props.showOnHover;
|
42
|
+
var showMoreIcon = showIcons && controls.length > maxIcons;
|
43
|
+
|
44
|
+
var clicked = function clicked(action) {
|
45
|
+
props.onIconClicked(action);
|
46
|
+
};
|
47
|
+
|
48
|
+
var dropdownMenu;
|
49
|
+
|
50
|
+
if (showMore) {
|
51
|
+
dropdownMenu = /*#__PURE__*/_react.default.createElement(IconsDropDown, props, controls.slice(maxIcons, controls.length).map(function (control, index) {
|
52
|
+
return /*#__PURE__*/_react.default.createElement(DropdownItem, Object.assign({
|
53
|
+
key: index
|
54
|
+
}, props, {
|
55
|
+
onClick: function onClick(e) {
|
56
|
+
return clicked(control.action);
|
57
|
+
}
|
58
|
+
}), control.icon, /*#__PURE__*/_react.default.createElement(IconName, null, control.name));
|
59
|
+
}));
|
60
|
+
}
|
61
|
+
|
62
|
+
return /*#__PURE__*/_react.default.createElement(ListIcons, props, showIcons && controls.slice(0, maxIcons).map(function (control, index) {
|
63
|
+
return /*#__PURE__*/_react.default.createElement(IconContainer, Object.assign({
|
64
|
+
key: index
|
65
|
+
}, props, {
|
66
|
+
onClick: function onClick() {
|
67
|
+
return clicked(control.action);
|
68
|
+
}
|
69
|
+
}), control.icon);
|
70
|
+
}), showMoreIcon && /*#__PURE__*/_react.default.createElement(IconContainer, Object.assign({
|
71
|
+
onClick: function onClick() {
|
72
|
+
return setShowMore(!showMore);
|
73
|
+
},
|
74
|
+
onMouseLeave: function onMouseLeave(e) {
|
75
|
+
return setShowMore(false);
|
76
|
+
}
|
77
|
+
}, props), /*#__PURE__*/_react.default.createElement(_io.IoIosMore, null), dropdownMenu));
|
78
|
+
};
|
79
|
+
|
80
|
+
var ListIcons = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n gap: ", "px;\n position: ", ";\n left: ", ";\n top: ", ";\n bottom: ", ";\n transform: ", ";\n\n & * {\n padding: 0;\n margin: 0;\n }\n\n & svg{\n fill: ", ";\n width: ", "px;\n height: ", "px;\n }\n"])), function (props) {
|
81
|
+
return props.iconsGap;
|
82
|
+
}, function (props) {
|
83
|
+
return props.position ? 'absolute' : 'static';
|
84
|
+
}, function (props) {
|
85
|
+
return props.position === 'center' ? '50%' : '90%';
|
86
|
+
}, function (props) {
|
87
|
+
return props.position === 'center' ? '50%' : '0';
|
88
|
+
}, function (props) {
|
89
|
+
return props.position === 'center' ? 'unset' : '90%';
|
90
|
+
}, function (props) {
|
91
|
+
return props.position === 'center' ? 'translate(-50%, -50%)' : 'translate(0, 0)';
|
92
|
+
}, function (props) {
|
93
|
+
return props.iconColor || 'white';
|
94
|
+
}, function (props) {
|
95
|
+
return props.iconSize;
|
96
|
+
}, function (props) {
|
97
|
+
return props.iconSize;
|
98
|
+
});
|
99
|
+
|
100
|
+
var IconContainer = _styledComponents.default.div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n background-color: ", ";\n border-radius: ", "px;\n cursor: pointer;\n position: relative;\n padding: ", "px;\n\n &:hover {\n background-color: ", "\n }\n\n"])), function (props) {
|
101
|
+
return props.iconBackground;
|
102
|
+
}, function (props) {
|
103
|
+
return props.iconBorderRadius;
|
104
|
+
}, function (props) {
|
105
|
+
return props.containerPadding;
|
106
|
+
}, function (props) {
|
107
|
+
return props.iconBackgroundHover;
|
108
|
+
});
|
109
|
+
|
110
|
+
var IconsDropDown = _styledComponents.default.div(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n position: absolute;\n right: 0;\n top: 100%;\n background-color: ", ";\n min-width: 150px;\n color: ", ";\n"])), function (props) {
|
111
|
+
return props.dropdownBackground;
|
112
|
+
}, function (props) {
|
113
|
+
return props.dropdownFontColor;
|
114
|
+
});
|
115
|
+
|
116
|
+
var DropdownItem = _styledComponents.default.div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n align-items: center;\n gap: 10px;\n padding: 10px 3px !important;\n\n &:hover{\n background-color: ", ";\n color: white;\n\n svg{\n fill: ", ";\n }\n }\n"])), function (props) {
|
117
|
+
return props.dropdownItemHoverColor;
|
118
|
+
}, function (props) {
|
119
|
+
return props.iconHoverColor;
|
120
|
+
});
|
121
|
+
|
122
|
+
var IconName = _styledComponents.default.p(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2.default)(["\n text-transform: capitalize;\n font-size: ", "px;\n"])), function (props) {
|
123
|
+
return props.dropdownFontSize;
|
124
|
+
});
|
125
|
+
|
126
|
+
Controls.defaultProps = {};
|
127
|
+
var _default = Controls;
|
128
|
+
exports.default = _default;
|
@@ -0,0 +1,49 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.fixedControls = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _Controls = _interopRequireDefault(require("./Controls"));
|
13
|
+
|
14
|
+
var _ai = require("react-icons/ai");
|
15
|
+
|
16
|
+
var _io = require("react-icons/io");
|
17
|
+
|
18
|
+
var controls = [{
|
19
|
+
icon: /*#__PURE__*/_react.default.createElement(_ai.AiOutlineUserAdd, null),
|
20
|
+
action: 'add',
|
21
|
+
name: 'Add member'
|
22
|
+
}, {
|
23
|
+
icon: /*#__PURE__*/_react.default.createElement(_ai.AiOutlineDelete, null),
|
24
|
+
action: 'remove',
|
25
|
+
name: 'Add member'
|
26
|
+
}, {
|
27
|
+
icon: /*#__PURE__*/_react.default.createElement(_io.IoIosAirplane, null),
|
28
|
+
action: 'add',
|
29
|
+
name: 'Some Icon'
|
30
|
+
}, {
|
31
|
+
icon: /*#__PURE__*/_react.default.createElement(_io.IoIosAlarm, null),
|
32
|
+
action: 'remove',
|
33
|
+
name: 'Another Icons'
|
34
|
+
}];
|
35
|
+
var _default = {
|
36
|
+
title: 'reusable Components/Controls',
|
37
|
+
component: _Controls.default
|
38
|
+
};
|
39
|
+
exports.default = _default;
|
40
|
+
|
41
|
+
var Template = function Template(args) {
|
42
|
+
return /*#__PURE__*/_react.default.createElement(_Controls.default, args);
|
43
|
+
};
|
44
|
+
|
45
|
+
var fixedControls = Template.bind({});
|
46
|
+
exports.fixedControls = fixedControls;
|
47
|
+
fixedControls.args = {
|
48
|
+
controls: controls
|
49
|
+
};
|
@@ -0,0 +1,120 @@
|
|
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 _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
13
|
+
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
15
|
+
|
16
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
17
|
+
|
18
|
+
var _CardStyle = _interopRequireDefault(require("../Cards/Card-style-3/CardStyle3"));
|
19
|
+
|
20
|
+
var _util = require("../../helpers/util");
|
21
|
+
|
22
|
+
var _ReusableHeader = _interopRequireDefault(require("../ReusableHeader/ReusableHeader"));
|
23
|
+
|
24
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4;
|
25
|
+
|
26
|
+
var _excluded = ["data", "cardStyle", "customCardStyles", "type", "cardControls"];
|
27
|
+
|
28
|
+
var Gallery = function Gallery(_ref) {
|
29
|
+
var data = _ref.data,
|
30
|
+
cardStyle = _ref.cardStyle,
|
31
|
+
customCardStyles = _ref.customCardStyles,
|
32
|
+
type = _ref.type,
|
33
|
+
_ref$cardControls = _ref.cardControls,
|
34
|
+
cardControls = _ref$cardControls === void 0 ? null : _ref$cardControls,
|
35
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
36
|
+
var child;
|
37
|
+
|
38
|
+
var iconCliked = function iconCliked(action) {
|
39
|
+
props.iconClicked(action);
|
40
|
+
};
|
41
|
+
|
42
|
+
var clicked = function clicked(index) {
|
43
|
+
props.cardClicked(index);
|
44
|
+
};
|
45
|
+
|
46
|
+
var cardIconClicked = function cardIconClicked(action, index) {
|
47
|
+
props.cardIconClicked(action, index);
|
48
|
+
};
|
49
|
+
|
50
|
+
var mapOverCardsData = function mapOverCardsData(data) {
|
51
|
+
return data.map(function (cardProps, index) {
|
52
|
+
return (0, _util.getCardStyle)(cardProps, cardStyle, customCardStyles, cardControls, index, clicked, cardIconClicked);
|
53
|
+
});
|
54
|
+
};
|
55
|
+
|
56
|
+
if (type === 'flat') {
|
57
|
+
child = mapOverCardsData(data);
|
58
|
+
} else if (type === 'sectioned') {
|
59
|
+
child = data.map(function (section, index) {
|
60
|
+
return /*#__PURE__*/_react.default.createElement(Section, {
|
61
|
+
priority: section.priority,
|
62
|
+
key: index
|
63
|
+
}, /*#__PURE__*/_react.default.createElement(_CardStyle.default, Object.assign({
|
64
|
+
title: section.title
|
65
|
+
}, props.sectionHeaderStyles)), /*#__PURE__*/_react.default.createElement(SectionBody, props, mapOverCardsData(section.data)));
|
66
|
+
});
|
67
|
+
}
|
68
|
+
|
69
|
+
return /*#__PURE__*/_react.default.createElement(GalleryContainer, props, /*#__PURE__*/_react.default.createElement(_ReusableHeader.default, Object.assign({
|
70
|
+
title: props.galleryTitle,
|
71
|
+
controls: props.galleryControls,
|
72
|
+
iconClicked: iconCliked
|
73
|
+
}, props.headerStyles)), /*#__PURE__*/_react.default.createElement(GalleryBody, Object.assign({
|
74
|
+
type: type
|
75
|
+
}, props), child));
|
76
|
+
};
|
77
|
+
|
78
|
+
var GalleryContainer = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n flex-direction: column;\n font-family: sans-serif;\n width: ", ";\n padding: 0;\n"])), function (props) {
|
79
|
+
return props.galleryWidth + 'px' || '100%';
|
80
|
+
});
|
81
|
+
|
82
|
+
var GalleryBody = _styledComponents.default.div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n padding: ", "px;\n display: ", ";\n flex-direction: column;\n grid-template-columns: ", ";\n grid-auto-rows: ", "px;\n /* grid-auto-rows: ", "; */\n column-gap: ", "px;\n row-gap: ", "px;\n"])), function (props) {
|
83
|
+
return props.galleryBodyPadding;
|
84
|
+
}, function (_ref2) {
|
85
|
+
var type = _ref2.type;
|
86
|
+
return type === 'flat' ? 'grid' : 'flex';
|
87
|
+
}, function (props) {
|
88
|
+
return 'repeat(' + props.columnsNumber + ', 1fr)';
|
89
|
+
}, function (props) {
|
90
|
+
return props.rowsHeight || 400;
|
91
|
+
}, function (props) {
|
92
|
+
return props.rowsHeight + 'px' || 'minmax(min-content, 400px)';
|
93
|
+
}, function (props) {
|
94
|
+
return props.galleryColumnGap;
|
95
|
+
}, function (props) {
|
96
|
+
return props.galleryRowGap;
|
97
|
+
});
|
98
|
+
|
99
|
+
var Section = _styledComponents.default.div(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n flex-direction: column;\n order: ", ";\n column-gap: ", "px;\n row-gap: ", "px;\n"])), function (_ref3) {
|
100
|
+
var priority = _ref3.priority;
|
101
|
+
return priority;
|
102
|
+
}, function (props) {
|
103
|
+
return props.galleryColumnGap;
|
104
|
+
}, function (props) {
|
105
|
+
return props.galleryRowGap;
|
106
|
+
});
|
107
|
+
|
108
|
+
var SectionBody = _styledComponents.default.div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n padding: ", "px;\n display: grid;\n grid-template-columns: ", ";\n column-gap: ", "px;\n row-gap: ", "px;\n"])), function (props) {
|
109
|
+
return props.galleryBodyPadding;
|
110
|
+
}, function (props) {
|
111
|
+
return 'repeat(' + props.columnsNumber + ', 1fr)';
|
112
|
+
}, function (props) {
|
113
|
+
return props.galleryColumnGap;
|
114
|
+
}, function (props) {
|
115
|
+
return props.galleryRowGap;
|
116
|
+
});
|
117
|
+
|
118
|
+
Gallery.defaultProps = {};
|
119
|
+
var _default = Gallery;
|
120
|
+
exports.default = _default;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.GallerySectioned = exports.GalleryFlat = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _Gallery = _interopRequireDefault(require("./Gallery"));
|
13
|
+
|
14
|
+
var _fakeData = require("../fakeData");
|
15
|
+
|
16
|
+
var _commonStyles = require("../commonStyles");
|
17
|
+
|
18
|
+
// Data
|
19
|
+
// Styles
|
20
|
+
var _default = {
|
21
|
+
title: 'Reusable components/Gallery',
|
22
|
+
component: _Gallery.default
|
23
|
+
};
|
24
|
+
exports.default = _default;
|
25
|
+
|
26
|
+
var Template = function Template(args) {
|
27
|
+
return /*#__PURE__*/_react.default.createElement(_Gallery.default, Object.assign({
|
28
|
+
galleryTitle: "Reusable Gallery",
|
29
|
+
galleryControls: _fakeData.controls,
|
30
|
+
headerStyles: {
|
31
|
+
padding: 10,
|
32
|
+
headerBackground: '#FE1744',
|
33
|
+
titleColor: '#ffff'
|
34
|
+
},
|
35
|
+
columnsNumber: 3,
|
36
|
+
galleryColumnGap: 10,
|
37
|
+
controlsStyles: _commonStyles.headingControlsStyles,
|
38
|
+
cardStyle: "card-style-6",
|
39
|
+
customCardStyles: _commonStyles.galleryCardControlsStyles
|
40
|
+
}, args));
|
41
|
+
};
|
42
|
+
|
43
|
+
var GalleryFlat = Template.bind({});
|
44
|
+
exports.GalleryFlat = GalleryFlat;
|
45
|
+
GalleryFlat.args = {
|
46
|
+
data: _fakeData.data,
|
47
|
+
type: "flat",
|
48
|
+
cardControls: _fakeData.cardControls
|
49
|
+
};
|
50
|
+
var GallerySectioned = Template.bind({});
|
51
|
+
exports.GallerySectioned = GallerySectioned;
|
52
|
+
GallerySectioned.args = {
|
53
|
+
data: _fakeData.dataWithSections,
|
54
|
+
type: "sectioned",
|
55
|
+
cardControls: _fakeData.cardControls
|
56
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
@@ -0,0 +1,72 @@
|
|
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 _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
|
13
|
+
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
15
|
+
|
16
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
17
|
+
|
18
|
+
var _reactMentions = require("react-mentions");
|
19
|
+
|
20
|
+
var _templateObject;
|
21
|
+
|
22
|
+
var _excluded = ["users", "value", "backgroundColor", "listColor", "listItemColor"];
|
23
|
+
|
24
|
+
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); }
|
25
|
+
|
26
|
+
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; }
|
27
|
+
|
28
|
+
var MentionArea = function MentionArea(_ref) {
|
29
|
+
var users = _ref.users,
|
30
|
+
value = _ref.value,
|
31
|
+
backgroundColor = _ref.backgroundColor,
|
32
|
+
listColor = _ref.listColor,
|
33
|
+
listItemColor = _ref.listItemColor,
|
34
|
+
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
35
|
+
|
36
|
+
// const [value, setValue] = useState('')
|
37
|
+
// const handleOnChange = (event, newValue, newPlainTextValue, mentions) => {
|
38
|
+
// setValue(newValue)
|
39
|
+
// console.log(event, newValue, newPlainTextValue, mentions)
|
40
|
+
// }
|
41
|
+
var handleOnChange = function handleOnChange(event, newValue, newPlainTextValue, mentions) {
|
42
|
+
props.handleOnChange(newValue);
|
43
|
+
};
|
44
|
+
|
45
|
+
return /*#__PURE__*/_react.default.createElement(Container, {
|
46
|
+
backgroundColor: backgroundColor,
|
47
|
+
listColor: listColor,
|
48
|
+
listItemColor: listItemColor
|
49
|
+
}, /*#__PURE__*/_react.default.createElement(_reactMentions.MentionsInput, {
|
50
|
+
className: "mention",
|
51
|
+
value: value,
|
52
|
+
onChange: handleOnChange
|
53
|
+
}, /*#__PURE__*/_react.default.createElement(_reactMentions.Mention, {
|
54
|
+
trigger: "@",
|
55
|
+
data: users
|
56
|
+
})));
|
57
|
+
};
|
58
|
+
|
59
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n .mention{\n border: none;\n\n &__control{\n background-color: ", ";\n }\n\n &__suggestions{\n\n &__list{\n background-color: ", ";\n color: ", ";\n }\n }\n }\n"])), function (_ref2) {
|
60
|
+
var backgroundColor = _ref2.backgroundColor;
|
61
|
+
return backgroundColor;
|
62
|
+
}, function (_ref3) {
|
63
|
+
var listColor = _ref3.listColor;
|
64
|
+
return listColor;
|
65
|
+
}, function (_ref4) {
|
66
|
+
var listItemColor = _ref4.listItemColor;
|
67
|
+
return listItemColor;
|
68
|
+
});
|
69
|
+
|
70
|
+
MentionArea.defaultProps = {};
|
71
|
+
var _default = MentionArea;
|
72
|
+
exports.default = _default;
|