@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
package/dist/index.js
ADDED
@@ -0,0 +1,311 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
Object.defineProperty(exports, "Chat", {
|
9
|
+
enumerable: true,
|
10
|
+
get: function get() {
|
11
|
+
return _Chat.default;
|
12
|
+
}
|
13
|
+
});
|
14
|
+
Object.defineProperty(exports, "CreateEnrollmentForm", {
|
15
|
+
enumerable: true,
|
16
|
+
get: function get() {
|
17
|
+
return _CreateForm.default;
|
18
|
+
}
|
19
|
+
});
|
20
|
+
Object.defineProperty(exports, "DetailedEnrollmentForm", {
|
21
|
+
enumerable: true,
|
22
|
+
get: function get() {
|
23
|
+
return _DetailedForm.default;
|
24
|
+
}
|
25
|
+
});
|
26
|
+
Object.defineProperty(exports, "ViewEnrollmentForms", {
|
27
|
+
enumerable: true,
|
28
|
+
get: function get() {
|
29
|
+
return _ViewForms.default;
|
30
|
+
}
|
31
|
+
});
|
32
|
+
Object.defineProperty(exports, "FillEnrollmentForm", {
|
33
|
+
enumerable: true,
|
34
|
+
get: function get() {
|
35
|
+
return _FillForm.default;
|
36
|
+
}
|
37
|
+
});
|
38
|
+
Object.defineProperty(exports, "CreateEvent", {
|
39
|
+
enumerable: true,
|
40
|
+
get: function get() {
|
41
|
+
return _CreateEvent.default;
|
42
|
+
}
|
43
|
+
});
|
44
|
+
Object.defineProperty(exports, "Event", {
|
45
|
+
enumerable: true,
|
46
|
+
get: function get() {
|
47
|
+
return _Event.default;
|
48
|
+
}
|
49
|
+
});
|
50
|
+
Object.defineProperty(exports, "EventsList", {
|
51
|
+
enumerable: true,
|
52
|
+
get: function get() {
|
53
|
+
return _EventsList.default;
|
54
|
+
}
|
55
|
+
});
|
56
|
+
Object.defineProperty(exports, "CreateLibraryFolder", {
|
57
|
+
enumerable: true,
|
58
|
+
get: function get() {
|
59
|
+
return _CreateFolder.default;
|
60
|
+
}
|
61
|
+
});
|
62
|
+
Object.defineProperty(exports, "LibraryFolders", {
|
63
|
+
enumerable: true,
|
64
|
+
get: function get() {
|
65
|
+
return _Folders.default;
|
66
|
+
}
|
67
|
+
});
|
68
|
+
Object.defineProperty(exports, "LibraryNotes", {
|
69
|
+
enumerable: true,
|
70
|
+
get: function get() {
|
71
|
+
return _Notes.default;
|
72
|
+
}
|
73
|
+
});
|
74
|
+
Object.defineProperty(exports, "ViewLibraryNote", {
|
75
|
+
enumerable: true,
|
76
|
+
get: function get() {
|
77
|
+
return _ViewNote.default;
|
78
|
+
}
|
79
|
+
});
|
80
|
+
Object.defineProperty(exports, "CreateMusic", {
|
81
|
+
enumerable: true,
|
82
|
+
get: function get() {
|
83
|
+
return _AddSong.default;
|
84
|
+
}
|
85
|
+
});
|
86
|
+
Object.defineProperty(exports, "CreateMusicAlbum", {
|
87
|
+
enumerable: true,
|
88
|
+
get: function get() {
|
89
|
+
return _CreateMusicAlbum.default;
|
90
|
+
}
|
91
|
+
});
|
92
|
+
Object.defineProperty(exports, "MusicAlbum", {
|
93
|
+
enumerable: true,
|
94
|
+
get: function get() {
|
95
|
+
return _ViewAlbum.default;
|
96
|
+
}
|
97
|
+
});
|
98
|
+
Object.defineProperty(exports, "MusicAlbums", {
|
99
|
+
enumerable: true,
|
100
|
+
get: function get() {
|
101
|
+
return _ViewAlbums.default;
|
102
|
+
}
|
103
|
+
});
|
104
|
+
Object.defineProperty(exports, "CreatePhotoAlbum", {
|
105
|
+
enumerable: true,
|
106
|
+
get: function get() {
|
107
|
+
return _CreateAlbum.default;
|
108
|
+
}
|
109
|
+
});
|
110
|
+
Object.defineProperty(exports, "CreatePhoto", {
|
111
|
+
enumerable: true,
|
112
|
+
get: function get() {
|
113
|
+
return _AddPhoto.default;
|
114
|
+
}
|
115
|
+
});
|
116
|
+
Object.defineProperty(exports, "PhotoAlbum", {
|
117
|
+
enumerable: true,
|
118
|
+
get: function get() {
|
119
|
+
return _ViewAlbum2.default;
|
120
|
+
}
|
121
|
+
});
|
122
|
+
Object.defineProperty(exports, "PhoroAlbums", {
|
123
|
+
enumerable: true,
|
124
|
+
get: function get() {
|
125
|
+
return _ViewAlbums2.default;
|
126
|
+
}
|
127
|
+
});
|
128
|
+
Object.defineProperty(exports, "BaseMaterial", {
|
129
|
+
enumerable: true,
|
130
|
+
get: function get() {
|
131
|
+
return _BaseMaterial.default;
|
132
|
+
}
|
133
|
+
});
|
134
|
+
Object.defineProperty(exports, "Body", {
|
135
|
+
enumerable: true,
|
136
|
+
get: function get() {
|
137
|
+
return _Body.default;
|
138
|
+
}
|
139
|
+
});
|
140
|
+
Object.defineProperty(exports, "Center", {
|
141
|
+
enumerable: true,
|
142
|
+
get: function get() {
|
143
|
+
return _Center.default;
|
144
|
+
}
|
145
|
+
});
|
146
|
+
Object.defineProperty(exports, "Head", {
|
147
|
+
enumerable: true,
|
148
|
+
get: function get() {
|
149
|
+
return _Head.default;
|
150
|
+
}
|
151
|
+
});
|
152
|
+
Object.defineProperty(exports, "Left", {
|
153
|
+
enumerable: true,
|
154
|
+
get: function get() {
|
155
|
+
return _Left.default;
|
156
|
+
}
|
157
|
+
});
|
158
|
+
Object.defineProperty(exports, "Right", {
|
159
|
+
enumerable: true,
|
160
|
+
get: function get() {
|
161
|
+
return _Right.default;
|
162
|
+
}
|
163
|
+
});
|
164
|
+
Object.defineProperty(exports, "Navbar", {
|
165
|
+
enumerable: true,
|
166
|
+
get: function get() {
|
167
|
+
return _Navbar.default;
|
168
|
+
}
|
169
|
+
});
|
170
|
+
Object.defineProperty(exports, "Gallery", {
|
171
|
+
enumerable: true,
|
172
|
+
get: function get() {
|
173
|
+
return _Gallery.default;
|
174
|
+
}
|
175
|
+
});
|
176
|
+
Object.defineProperty(exports, "List", {
|
177
|
+
enumerable: true,
|
178
|
+
get: function get() {
|
179
|
+
return _ReusableList.default;
|
180
|
+
}
|
181
|
+
});
|
182
|
+
Object.defineProperty(exports, "Header", {
|
183
|
+
enumerable: true,
|
184
|
+
get: function get() {
|
185
|
+
return _ReusableHeader.default;
|
186
|
+
}
|
187
|
+
});
|
188
|
+
Object.defineProperty(exports, "SpaceContainer", {
|
189
|
+
enumerable: true,
|
190
|
+
get: function get() {
|
191
|
+
return _SpaceContainer.default;
|
192
|
+
}
|
193
|
+
});
|
194
|
+
Object.defineProperty(exports, "Spinner", {
|
195
|
+
enumerable: true,
|
196
|
+
get: function get() {
|
197
|
+
return _Spinner.default;
|
198
|
+
}
|
199
|
+
});
|
200
|
+
Object.defineProperty(exports, "WidgetContainer", {
|
201
|
+
enumerable: true,
|
202
|
+
get: function get() {
|
203
|
+
return _WidgetContainer.default;
|
204
|
+
}
|
205
|
+
});
|
206
|
+
Object.defineProperty(exports, "CreateVideoAlbum", {
|
207
|
+
enumerable: true,
|
208
|
+
get: function get() {
|
209
|
+
return _CreateVideoAlbum.default;
|
210
|
+
}
|
211
|
+
});
|
212
|
+
Object.defineProperty(exports, "CreateVideo", {
|
213
|
+
enumerable: true,
|
214
|
+
get: function get() {
|
215
|
+
return _AddVideo.default;
|
216
|
+
}
|
217
|
+
});
|
218
|
+
Object.defineProperty(exports, "VideoAlbums", {
|
219
|
+
enumerable: true,
|
220
|
+
get: function get() {
|
221
|
+
return _AlbumsGallery.default;
|
222
|
+
}
|
223
|
+
});
|
224
|
+
Object.defineProperty(exports, "VidepSpace", {
|
225
|
+
enumerable: true,
|
226
|
+
get: function get() {
|
227
|
+
return _VideoSpace.default;
|
228
|
+
}
|
229
|
+
});
|
230
|
+
Object.defineProperty(exports, "VideoAlbum", {
|
231
|
+
enumerable: true,
|
232
|
+
get: function get() {
|
233
|
+
return _ViewAlbum3.default;
|
234
|
+
}
|
235
|
+
});
|
236
|
+
|
237
|
+
var _Chat = _interopRequireDefault(require("./stories/Chat/Chat"));
|
238
|
+
|
239
|
+
var _CreateForm = _interopRequireDefault(require("./stories/Enrollment/Admin/CreateForm/CreateForm"));
|
240
|
+
|
241
|
+
var _DetailedForm = _interopRequireDefault(require("./stories/Enrollment/Admin/DetailedForm/DetailedForm"));
|
242
|
+
|
243
|
+
var _ViewForms = _interopRequireDefault(require("./stories/Enrollment/Admin/ViewForms/ViewForms"));
|
244
|
+
|
245
|
+
var _FillForm = _interopRequireDefault(require("./stories/Enrollment/Guest/FillForm/FillForm"));
|
246
|
+
|
247
|
+
var _CreateEvent = _interopRequireDefault(require("./stories/Events/CreateEvent/CreateEvent"));
|
248
|
+
|
249
|
+
var _Event = _interopRequireDefault(require("./stories/Events/Event/Event"));
|
250
|
+
|
251
|
+
var _EventsList = _interopRequireDefault(require("./stories/Events/EventsList/EventsList"));
|
252
|
+
|
253
|
+
var _CreateFolder = _interopRequireDefault(require("./stories/Library/CreateFolder/CreateFolder"));
|
254
|
+
|
255
|
+
var _Folders = _interopRequireDefault(require("./stories/Library/Folders/Folders"));
|
256
|
+
|
257
|
+
var _Notes = _interopRequireDefault(require("./stories/Library/Notes/Notes"));
|
258
|
+
|
259
|
+
var _ViewNote = _interopRequireDefault(require("./stories/Library/ViewNote/ViewNote"));
|
260
|
+
|
261
|
+
var _AddSong = _interopRequireDefault(require("./stories/Forms/AddSong/AddSong"));
|
262
|
+
|
263
|
+
var _CreateMusicAlbum = _interopRequireDefault(require("./stories/Forms/CreateMusicAlbum/CreateMusicAlbum"));
|
264
|
+
|
265
|
+
var _ViewAlbum = _interopRequireDefault(require("./stories/Music Album/ViewAlbum/ViewAlbum"));
|
266
|
+
|
267
|
+
var _ViewAlbums = _interopRequireDefault(require("./stories/Music Album/ViewAlbums/ViewAlbums"));
|
268
|
+
|
269
|
+
var _CreateAlbum = _interopRequireDefault(require("./stories/Forms/CreateAlbum/CreateAlbum"));
|
270
|
+
|
271
|
+
var _AddPhoto = _interopRequireDefault(require("./stories/Forms/AddPhoto/AddPhoto"));
|
272
|
+
|
273
|
+
var _ViewAlbum2 = _interopRequireDefault(require("./stories/Photo Album/ViewAlbum/ViewAlbum"));
|
274
|
+
|
275
|
+
var _ViewAlbums2 = _interopRequireDefault(require("./stories/Photo Album/ViewAlbums/ViewAlbums"));
|
276
|
+
|
277
|
+
var _BaseMaterial = _interopRequireDefault(require("./stories/Containers/BaseMaterial"));
|
278
|
+
|
279
|
+
var _Body = _interopRequireDefault(require("./stories/Layout/Body/Body"));
|
280
|
+
|
281
|
+
var _Center = _interopRequireDefault(require("./stories/Layout/Center/Center"));
|
282
|
+
|
283
|
+
var _Head = _interopRequireDefault(require("./stories/Layout/Head/Head"));
|
284
|
+
|
285
|
+
var _Left = _interopRequireDefault(require("./stories/Layout/Left/Left"));
|
286
|
+
|
287
|
+
var _Right = _interopRequireDefault(require("./stories/Layout/Right/Right"));
|
288
|
+
|
289
|
+
var _Navbar = _interopRequireDefault(require("./stories/Navbar/Navbar"));
|
290
|
+
|
291
|
+
var _Gallery = _interopRequireDefault(require("./stories/Reusable Components/Gallery/Gallery"));
|
292
|
+
|
293
|
+
var _ReusableList = _interopRequireDefault(require("./stories/Reusable Components/ReusableList/ReusableList"));
|
294
|
+
|
295
|
+
var _ReusableHeader = _interopRequireDefault(require("./stories/Reusable Components/ReusableHeader/ReusableHeader"));
|
296
|
+
|
297
|
+
var _SpaceContainer = _interopRequireDefault(require("./stories/Reusable Components/SpaceContainer/SpaceContainer"));
|
298
|
+
|
299
|
+
var _Spinner = _interopRequireDefault(require("./stories/Reusable Components/Spinner/Spinner"));
|
300
|
+
|
301
|
+
var _WidgetContainer = _interopRequireDefault(require("./stories/Reusable Components/WidgetContainer/WidgetContainer"));
|
302
|
+
|
303
|
+
var _CreateVideoAlbum = _interopRequireDefault(require("./stories/Forms/CreateVideoAlbum/CreateVideoAlbum"));
|
304
|
+
|
305
|
+
var _AddVideo = _interopRequireDefault(require("./stories/Forms/AddVideo/AddVideo"));
|
306
|
+
|
307
|
+
var _AlbumsGallery = _interopRequireDefault(require("./stories/VideoAlbum/AlbumsGallery/AlbumsGallery"));
|
308
|
+
|
309
|
+
var _VideoSpace = _interopRequireDefault(require("./stories/VideoAlbum/VideoSpace/VideoSpace"));
|
310
|
+
|
311
|
+
var _ViewAlbum3 = _interopRequireDefault(require("./stories/VideoAlbum/ViewAlbum/ViewAlbum"));
|
@@ -0,0 +1,48 @@
|
|
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 _react = _interopRequireDefault(require("react"));
|
13
|
+
|
14
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
15
|
+
|
16
|
+
var _BaseMaterial = _interopRequireDefault(require("../Containers/BaseMaterial"));
|
17
|
+
|
18
|
+
var _templateObject;
|
19
|
+
|
20
|
+
var API = function API(props) {
|
21
|
+
return /*#__PURE__*/_react.default.createElement(_BaseMaterial.default, null, /*#__PURE__*/_react.default.createElement(Image, {
|
22
|
+
src: props.image_src,
|
23
|
+
alt: props.image_alt
|
24
|
+
}), /*#__PURE__*/_react.default.createElement(Text, null, props.text));
|
25
|
+
};
|
26
|
+
|
27
|
+
var Container = (0, _styledComponents.default)(_BaseMaterial.default)({
|
28
|
+
display: "flex",
|
29
|
+
position: "relative",
|
30
|
+
width: "100%",
|
31
|
+
"align-items": "center",
|
32
|
+
"flex-direction": "column",
|
33
|
+
"justify-content": "center"
|
34
|
+
});
|
35
|
+
|
36
|
+
var Text = _styledComponents.default.p(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n text-align: center;\n"])));
|
37
|
+
|
38
|
+
var Image = (0, _styledComponents.default)("img")({
|
39
|
+
width: "100%",
|
40
|
+
"object-fit": "cover"
|
41
|
+
});
|
42
|
+
API.defaultProps = {
|
43
|
+
image_src: "https://play.teleporthq.io/static/svg/default-img.svg",
|
44
|
+
image_alt: "image",
|
45
|
+
text: "Text"
|
46
|
+
};
|
47
|
+
var _default = API;
|
48
|
+
exports.default = _default;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Default = exports.default = void 0;
|
9
|
+
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
11
|
+
|
12
|
+
var _API = _interopRequireDefault(require("./API"));
|
13
|
+
|
14
|
+
var _default = {
|
15
|
+
title: 'API Statuses/API',
|
16
|
+
component: _API.default
|
17
|
+
};
|
18
|
+
exports.default = _default;
|
19
|
+
|
20
|
+
var Default = function Default(args) {
|
21
|
+
return /*#__PURE__*/_react.default.createElement(_API.default, args);
|
22
|
+
};
|
23
|
+
|
24
|
+
exports.Default = Default;
|
@@ -0,0 +1,316 @@
|
|
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 _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/toConsumableArray"));
|
13
|
+
|
14
|
+
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
15
|
+
|
16
|
+
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/asyncToGenerator"));
|
17
|
+
|
18
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
|
19
|
+
|
20
|
+
var _agoraRtcReact = require("agora-rtc-react");
|
21
|
+
|
22
|
+
var _react = _interopRequireWildcard(require("react"));
|
23
|
+
|
24
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
25
|
+
|
26
|
+
var _Controls = _interopRequireDefault(require("../Controls/Controls"));
|
27
|
+
|
28
|
+
var _templateObject, _templateObject2, _templateObject3;
|
29
|
+
|
30
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
31
|
+
|
32
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
33
|
+
|
34
|
+
var rtc = {
|
35
|
+
localAudioTrack: null,
|
36
|
+
localVideoTrack: null,
|
37
|
+
localAudioReady: null,
|
38
|
+
localVideoReady: null
|
39
|
+
};
|
40
|
+
var config = {
|
41
|
+
mode: 'rtc',
|
42
|
+
codec: 'vp8'
|
43
|
+
};
|
44
|
+
var options = {
|
45
|
+
appid: '3f54ddbde65d4f0ab9a9f5a46baa4310',
|
46
|
+
channel: 'bcd',
|
47
|
+
token: '0063f54ddbde65d4f0ab9a9f5a46baa4310IAALsgGjVTL2Av/GANIuUU61cNObFj9T7krqkn2UG1uXeHlbHbAAAAAAEAAw9+/yVoJUYQEAAQBWglRh'
|
48
|
+
};
|
49
|
+
|
50
|
+
var createCameraTrack = function createCameraTrack(videoDeviceId) {
|
51
|
+
return (0, _agoraRtcReact.createCameraVideoTrack)({
|
52
|
+
encoderConfig: '90p_1',
|
53
|
+
deviceId: videoDeviceId
|
54
|
+
});
|
55
|
+
};
|
56
|
+
|
57
|
+
var createMicrophoneTrack = function createMicrophoneTrack(audioDeviceId) {
|
58
|
+
return (0, _agoraRtcReact.createMicrophoneAudioTrack)({
|
59
|
+
deviceId: audioDeviceId
|
60
|
+
});
|
61
|
+
};
|
62
|
+
|
63
|
+
var useClient = (0, _agoraRtcReact.createClient)(config);
|
64
|
+
|
65
|
+
var Call = function Call(_ref) {
|
66
|
+
var videoDeviceId = _ref.videoDeviceId,
|
67
|
+
audioDeviceId = _ref.audioDeviceId,
|
68
|
+
token = _ref.token,
|
69
|
+
uid = _ref.uid;
|
70
|
+
var client = useClient();
|
71
|
+
var localAudio = createMicrophoneTrack(audioDeviceId)();
|
72
|
+
rtc.localAudioReady = localAudio.ready;
|
73
|
+
rtc.localAudioTrack = localAudio.track;
|
74
|
+
var localVideo = createCameraTrack(videoDeviceId)();
|
75
|
+
rtc.localVideoTrack = localVideo.track;
|
76
|
+
rtc.localVideoReady = localVideo.ready;
|
77
|
+
|
78
|
+
var _useState = (0, _react.useState)([]),
|
79
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
80
|
+
allCalls = _useState2[0],
|
81
|
+
setAllCalls = _useState2[1];
|
82
|
+
|
83
|
+
var _useState3 = (0, _react.useState)(),
|
84
|
+
_useState4 = (0, _slicedToArray2.default)(_useState3, 2),
|
85
|
+
stageUserId = _useState4[0],
|
86
|
+
setStageUserId = _useState4[1];
|
87
|
+
|
88
|
+
var leaveChannel = /*#__PURE__*/function () {
|
89
|
+
var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
|
90
|
+
return _regenerator.default.wrap(function _callee$(_context) {
|
91
|
+
while (1) {
|
92
|
+
switch (_context.prev = _context.next) {
|
93
|
+
case 0:
|
94
|
+
_context.next = 2;
|
95
|
+
return client.leave();
|
96
|
+
|
97
|
+
case 2:
|
98
|
+
client.removeAllListeners();
|
99
|
+
rtc.localAudioTrack.close();
|
100
|
+
rtc.localVideoTrack.close();
|
101
|
+
client.remoteUsers.forEach(function (user) {
|
102
|
+
user.videoTrack.close();
|
103
|
+
user.audioTrack.close();
|
104
|
+
});
|
105
|
+
|
106
|
+
case 6:
|
107
|
+
case "end":
|
108
|
+
return _context.stop();
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}, _callee);
|
112
|
+
}));
|
113
|
+
|
114
|
+
return function leaveChannel() {
|
115
|
+
return _ref2.apply(this, arguments);
|
116
|
+
};
|
117
|
+
}();
|
118
|
+
|
119
|
+
(0, _react.useEffect)(function () {
|
120
|
+
var init = /*#__PURE__*/function () {
|
121
|
+
var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() {
|
122
|
+
var localUser;
|
123
|
+
return _regenerator.default.wrap(function _callee3$(_context3) {
|
124
|
+
while (1) {
|
125
|
+
switch (_context3.prev = _context3.next) {
|
126
|
+
case 0:
|
127
|
+
client.on('user-published', /*#__PURE__*/function () {
|
128
|
+
var _ref4 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(user, mediaType) {
|
129
|
+
var remoteUser;
|
130
|
+
return _regenerator.default.wrap(function _callee2$(_context2) {
|
131
|
+
while (1) {
|
132
|
+
switch (_context2.prev = _context2.next) {
|
133
|
+
case 0:
|
134
|
+
_context2.next = 2;
|
135
|
+
return client.subscribe(user, mediaType);
|
136
|
+
|
137
|
+
case 2:
|
138
|
+
if (mediaType === 'video') {
|
139
|
+
remoteUser = {
|
140
|
+
uid: user.uid,
|
141
|
+
videoTrack: user.videoTrack,
|
142
|
+
audioTrack: user.audioTrack
|
143
|
+
};
|
144
|
+
setAllCalls(function (allCalls) {
|
145
|
+
return [].concat((0, _toConsumableArray2.default)(allCalls), [remoteUser]);
|
146
|
+
});
|
147
|
+
}
|
148
|
+
|
149
|
+
if (mediaType === 'audio') {
|
150
|
+
user.audioTrack.play();
|
151
|
+
}
|
152
|
+
|
153
|
+
case 4:
|
154
|
+
case "end":
|
155
|
+
return _context2.stop();
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}, _callee2);
|
159
|
+
}));
|
160
|
+
|
161
|
+
return function (_x, _x2) {
|
162
|
+
return _ref4.apply(this, arguments);
|
163
|
+
};
|
164
|
+
}());
|
165
|
+
client.on('user-unpublished', function (user, type) {
|
166
|
+
if (type === 'audio') {
|
167
|
+
var _user$audioTrack;
|
168
|
+
|
169
|
+
(_user$audioTrack = user.audioTrack) === null || _user$audioTrack === void 0 ? void 0 : _user$audioTrack.stop();
|
170
|
+
}
|
171
|
+
|
172
|
+
if (type === 'video') {
|
173
|
+
setAllCalls(function (users) {
|
174
|
+
return users.filter(function (u) {
|
175
|
+
return u.uid !== user.uid;
|
176
|
+
});
|
177
|
+
});
|
178
|
+
}
|
179
|
+
});
|
180
|
+
_context3.next = 4;
|
181
|
+
return client.join(options.appid, options.channel, token || null, uid);
|
182
|
+
|
183
|
+
case 4:
|
184
|
+
localUser = {
|
185
|
+
uid: client.uid,
|
186
|
+
videoTrack: rtc.localVideoTrack,
|
187
|
+
audioTrack: rtc.localAudioTrack
|
188
|
+
};
|
189
|
+
_context3.next = 7;
|
190
|
+
return client.publish([rtc.localAudioTrack, rtc.localVideoTrack]);
|
191
|
+
|
192
|
+
case 7:
|
193
|
+
setStageUserId(localUser.uid);
|
194
|
+
setAllCalls(function (allCalls) {
|
195
|
+
return [].concat((0, _toConsumableArray2.default)(allCalls), [localUser]);
|
196
|
+
});
|
197
|
+
|
198
|
+
case 9:
|
199
|
+
case "end":
|
200
|
+
return _context3.stop();
|
201
|
+
}
|
202
|
+
}
|
203
|
+
}, _callee3);
|
204
|
+
}));
|
205
|
+
|
206
|
+
return function init() {
|
207
|
+
return _ref3.apply(this, arguments);
|
208
|
+
};
|
209
|
+
}();
|
210
|
+
|
211
|
+
if (rtc.localVideoReady && rtc.localAudioReady && rtc.localVideoTrack && rtc.localAudioTrack) {
|
212
|
+
init();
|
213
|
+
}
|
214
|
+
}, [client, rtc.localAudioTrack, rtc.localVideoTrack, rtc.localAudioReady, rtc.localVideoReady]);
|
215
|
+
(0, _react.useEffect)(function () {
|
216
|
+
return function () {
|
217
|
+
rtc.localAudioTrack.close();
|
218
|
+
rtc.localVideoTrack.close();
|
219
|
+
rtc.localAudioReady = undefined;
|
220
|
+
rtc.localVideoReady = undefined;
|
221
|
+
rtc.localVideoTrack = undefined;
|
222
|
+
rtc.localAudioTrack = undefined; // setUsers([]);
|
223
|
+
|
224
|
+
setAllCalls([]);
|
225
|
+
client.leave();
|
226
|
+
client.removeAllListeners();
|
227
|
+
};
|
228
|
+
}, []);
|
229
|
+
|
230
|
+
var getStageUsers = function getStageUsers() {
|
231
|
+
var stage = allCalls.find(function (c) {
|
232
|
+
return c.uid === stageUserId;
|
233
|
+
});
|
234
|
+
return /*#__PURE__*/_react.default.createElement(_react.Fragment, null, stage && /*#__PURE__*/_react.default.createElement(_agoraRtcReact.AgoraVideoPlayer, {
|
235
|
+
className: "vid",
|
236
|
+
videoTrack: stage === null || stage === void 0 ? void 0 : stage.videoTrack,
|
237
|
+
style: {
|
238
|
+
height: '100%',
|
239
|
+
width: '100%'
|
240
|
+
}
|
241
|
+
}));
|
242
|
+
};
|
243
|
+
|
244
|
+
var getNonStageUsers = function getNonStageUsers() {
|
245
|
+
var nonStage = allCalls.filter(function (c) {
|
246
|
+
return c.uid !== stageUserId;
|
247
|
+
});
|
248
|
+
return /*#__PURE__*/_react.default.createElement(_react.Fragment, null, nonStage.length > 0 && nonStage.map(function (user) {
|
249
|
+
return /*#__PURE__*/_react.default.createElement(_agoraRtcReact.AgoraVideoPlayer, {
|
250
|
+
key: user === null || user === void 0 ? void 0 : user.uid,
|
251
|
+
videoTrack: user === null || user === void 0 ? void 0 : user.videoTrack,
|
252
|
+
style: {
|
253
|
+
height: '100%',
|
254
|
+
width: '30%'
|
255
|
+
},
|
256
|
+
onClick: function onClick(e) {
|
257
|
+
setStageUserId(user.uid);
|
258
|
+
}
|
259
|
+
});
|
260
|
+
}));
|
261
|
+
};
|
262
|
+
|
263
|
+
return /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement("h1", null, "Cleaner Video Call"), /*#__PURE__*/_react.default.createElement(_Controls.default, {
|
264
|
+
token: token,
|
265
|
+
muteVideo: function muteVideo(mute) {
|
266
|
+
if (mute) {
|
267
|
+
rtc.localAudioTrack.setVolume(0);
|
268
|
+
} else {
|
269
|
+
rtc.localAudioTrack.setVolume(100);
|
270
|
+
}
|
271
|
+
},
|
272
|
+
pauseVideo: /*#__PURE__*/function () {
|
273
|
+
var _ref5 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(pauseVideo) {
|
274
|
+
return _regenerator.default.wrap(function _callee4$(_context4) {
|
275
|
+
while (1) {
|
276
|
+
switch (_context4.prev = _context4.next) {
|
277
|
+
case 0:
|
278
|
+
if (!pauseVideo) {
|
279
|
+
_context4.next = 5;
|
280
|
+
break;
|
281
|
+
}
|
282
|
+
|
283
|
+
_context4.next = 3;
|
284
|
+
return rtc.localVideoTrack.setEnabled(false);
|
285
|
+
|
286
|
+
case 3:
|
287
|
+
_context4.next = 7;
|
288
|
+
break;
|
289
|
+
|
290
|
+
case 5:
|
291
|
+
_context4.next = 7;
|
292
|
+
return rtc.localVideoTrack.setEnabled(true);
|
293
|
+
|
294
|
+
case 7:
|
295
|
+
case "end":
|
296
|
+
return _context4.stop();
|
297
|
+
}
|
298
|
+
}
|
299
|
+
}, _callee4);
|
300
|
+
}));
|
301
|
+
|
302
|
+
return function (_x3) {
|
303
|
+
return _ref5.apply(this, arguments);
|
304
|
+
};
|
305
|
+
}()
|
306
|
+
}), /*#__PURE__*/_react.default.createElement(Videos, null, getStageUsers()), /*#__PURE__*/_react.default.createElement(RemoteVideos, null, getNonStageUsers()));
|
307
|
+
};
|
308
|
+
|
309
|
+
var Videos = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n position: relative;\n height: 44vh;\n width: 40vw;\n margin: auto;\n align-self: flex-start;\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(440px, ifr));\n justify-items: center;\n align-items: center;\n"])));
|
310
|
+
|
311
|
+
var RemoteVideos = _styledComponents.default.div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n height: 22vh;\n width: 40vw;\n display: flex;\n margin-top: 5px;\n flex-wrap: wrap;\n gap: 3%;\n"])));
|
312
|
+
|
313
|
+
var Video = _styledComponents.default.div(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n width: 30%;\n height: 100%;\n background-color: blue;\n"])));
|
314
|
+
|
315
|
+
var _default = Call;
|
316
|
+
exports.default = _default;
|