@mohamed-karawia/react-storybook 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @mohamed-karawia/react-storybook might be problematic. Click here for more details.

Files changed (539) hide show
  1. package/.github/workflows/chromatic.yml +26 -0
  2. package/.storybook/main.js +21 -0
  3. package/.storybook/middleware.js +28 -0
  4. package/.storybook/preview.js +9 -0
  5. package/CHANGELOG.md +64 -0
  6. package/LICENSE +21 -0
  7. package/README.md +23 -0
  8. package/README.old.md +3 -0
  9. package/build-storybook.log +2704 -0
  10. package/dist/index.js +311 -0
  11. package/dist/stories/API/API.js +48 -0
  12. package/dist/stories/API/API.stories.js +24 -0
  13. package/dist/stories/Agora/Call/Call.js +316 -0
  14. package/dist/stories/Agora/Chat/Chat.js +107 -0
  15. package/dist/stories/Agora/Chat/Chat.stories.js +24 -0
  16. package/dist/stories/Agora/Chat/Components/ChatItem/ChatItem.js +34 -0
  17. package/dist/stories/Agora/Chat/Components/ChatRoom/ChatRoom.js +199 -0
  18. package/dist/stories/Agora/Controls/Controls.js +80 -0
  19. package/dist/stories/Agora/Preview/PreviewCamera.js +247 -0
  20. package/dist/stories/Agora/Preview/ShareScreen.js +119 -0
  21. package/dist/stories/Agora/Room/Room.js +114 -0
  22. package/dist/stories/Agora/Room/Room.stories.js +24 -0
  23. package/dist/stories/Buttons/Buttons/Buttons.js +59 -0
  24. package/dist/stories/Buttons/Buttons/Buttons.stories.js +39 -0
  25. package/dist/stories/Buttons/ReactModal/ReactModal.js +94 -0
  26. package/dist/stories/Buttons/ReactModal/ReactModal.stories.js +30 -0
  27. package/dist/stories/Buttons/ReactModal/ReactModalDemo.js +17 -0
  28. package/dist/stories/Chat/Chat.js +76 -0
  29. package/dist/stories/Chat/Chat.stories.js +76 -0
  30. package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.js +59 -0
  31. package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.js +58 -0
  32. package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.js +93 -0
  33. package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.js +56 -0
  34. package/dist/stories/Common Inputs/CustomDropzone/CustomDropZone.js +88 -0
  35. package/dist/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.js +47 -0
  36. package/dist/stories/Common Inputs/CustomSelect/CustomSelect.js +92 -0
  37. package/dist/stories/Common Inputs/CustomSelect/CustomSelect.stories.js +61 -0
  38. package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.js +65 -0
  39. package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.js +48 -0
  40. package/dist/stories/Common Inputs/DatePicker/DatePicker.js +104 -0
  41. package/dist/stories/Common Inputs/DatePicker/DatePicker.stories.js +60 -0
  42. package/dist/stories/Common Inputs/DatePicker/SingleDatePicker.js +97 -0
  43. package/dist/stories/Common Inputs/DropZone.js +148 -0
  44. package/dist/stories/Common Inputs/EditorComponent/EditorComponent.js +84 -0
  45. package/dist/stories/Common Inputs/EditorComponent/EditorComponent.stories.js +62 -0
  46. package/dist/stories/Common Inputs/EditorComponent/constants.js +41 -0
  47. package/dist/stories/Common Inputs/Formik/InputField/InputField.js +35 -0
  48. package/dist/stories/Common Inputs/Formik/InputField/InputField.stories.js +43 -0
  49. package/dist/stories/Common Inputs/Formik/RadioField/RadioField.js +54 -0
  50. package/dist/stories/Common Inputs/Formik/RadioField/RadioField.stories.js +60 -0
  51. package/dist/stories/Common Inputs/RadioInput/RadioInput.js +115 -0
  52. package/dist/stories/Common Inputs/RadioInput/RadioInput.stories.js +50 -0
  53. package/dist/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.js +31 -0
  54. package/dist/stories/Common Inputs/RichTextInput/Components/Gif/Gif.js +88 -0
  55. package/dist/stories/Common Inputs/RichTextInput/RichTextInput.js +278 -0
  56. package/dist/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +51 -0
  57. package/dist/stories/Common Inputs/TextField/TextField.js +65 -0
  58. package/dist/stories/Common Inputs/TextField/TextField.stories.js +48 -0
  59. package/dist/stories/Containers/BaseMaterial.js +65 -0
  60. package/dist/stories/Containers/BaseMaterial.stories.js +24 -0
  61. package/dist/stories/Containers/WidgetExample/WidgetBody.js +17 -0
  62. package/dist/stories/Containers/WidgetExample/WidgetBody.stories.js +24 -0
  63. package/dist/stories/Containers/WidgetExample/WidgetExample.js +23 -0
  64. package/dist/stories/Containers/WidgetExample/WidgetExample.stories.js +24 -0
  65. package/dist/stories/Containers/WidgetExample/WidgetHead.js +17 -0
  66. package/dist/stories/Containers/WidgetExample/WidgetHead.stories.js +24 -0
  67. package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.js +83 -0
  68. package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.stories.js +22 -0
  69. package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.js +81 -0
  70. package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.js +42 -0
  71. package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.js +46 -0
  72. package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.stories.js +65 -0
  73. package/dist/stories/Enrollment/Guest/FillForm/FillForm.js +64 -0
  74. package/dist/stories/Enrollment/Guest/FillForm/FillForm.stories.js +48 -0
  75. package/dist/stories/Events/CreateEvent/CreateEvent.js +110 -0
  76. package/dist/stories/Events/CreateEvent/CreateEvent.stories.js +30 -0
  77. package/dist/stories/Events/Event/Event.js +94 -0
  78. package/dist/stories/Events/Event/Event.stories.js +33 -0
  79. package/dist/stories/Events/EventsList/EventsList.js +135 -0
  80. package/dist/stories/Events/EventsList/EventsList.stories.js +44 -0
  81. package/dist/stories/Forms/AddPhoto/AddPhoto.js +101 -0
  82. package/dist/stories/Forms/AddPhoto/AddPhoto.stories.js +47 -0
  83. package/dist/stories/Forms/AddSong/AddSong.js +98 -0
  84. package/dist/stories/Forms/AddSong/AddSong.stories.js +37 -0
  85. package/dist/stories/Forms/AddVideo/AddVideo.js +103 -0
  86. package/dist/stories/Forms/AddVideo/AddVideo.stories.js +33 -0
  87. package/dist/stories/Forms/Create-Profile/CreateProfile.js +229 -0
  88. package/dist/stories/Forms/Create-Profile/CreateProfile.stories.js +49 -0
  89. package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.js +54 -0
  90. package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.js +42 -0
  91. package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.js +49 -0
  92. package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.js +41 -0
  93. package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.js +41 -0
  94. package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.js +32 -0
  95. package/dist/stories/Forms/CreateAlbum/CreateAlbum.js +95 -0
  96. package/dist/stories/Forms/CreateAlbum/CreateAlbum.stories.js +47 -0
  97. package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.js +84 -0
  98. package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.js +58 -0
  99. package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.js +100 -0
  100. package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.js +47 -0
  101. package/dist/stories/Forms/CreateProfile/CreateProfile.js +383 -0
  102. package/dist/stories/Forms/CreateProfile/CreateProfile.stories.js +24 -0
  103. package/dist/stories/Forms/CreateProfile-3/CreateProfile.js +324 -0
  104. package/dist/stories/Forms/CreateProfile-3/CreateProfile.stories.js +24 -0
  105. package/dist/stories/Forms/CreateUser/CreateUser.js +27 -0
  106. package/dist/stories/Forms/CreateUser/CreateUser.stories.js +26 -0
  107. package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.js +84 -0
  108. package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.js +37 -0
  109. package/dist/stories/Forms/Form/Form.js +35 -0
  110. package/dist/stories/Forms/Form/Form.stories.js +24 -0
  111. package/dist/stories/Forms/NewProfile/NewProfile.js +450 -0
  112. package/dist/stories/Forms/NewProfile/NewProfile.stories.js +24 -0
  113. package/dist/stories/Layout/Body/Body.js +30 -0
  114. package/dist/stories/Layout/Body/Body.stories.js +30 -0
  115. package/dist/stories/Layout/Center/Center.js +26 -0
  116. package/dist/stories/Layout/Center/Center.stories.js +24 -0
  117. package/dist/stories/Layout/Head/Head.js +24 -0
  118. package/dist/stories/Layout/Head/Head.stories.js +24 -0
  119. package/dist/stories/Layout/Left/Left.js +28 -0
  120. package/dist/stories/Layout/Left/Left.stories.js +24 -0
  121. package/dist/stories/Layout/Right/Right.js +27 -0
  122. package/dist/stories/Layout/Right/Right.stories.js +24 -0
  123. package/dist/stories/Library/CreateFolder/CreateFolder.js +87 -0
  124. package/dist/stories/Library/CreateFolder/CreateFolder.stories.js +45 -0
  125. package/dist/stories/Library/Folders/Folders.js +126 -0
  126. package/dist/stories/Library/Folders/Folders.stories.js +55 -0
  127. package/dist/stories/Library/Notes/Notes.js +135 -0
  128. package/dist/stories/Library/Notes/Notes.stories.js +42 -0
  129. package/dist/stories/Library/ViewNote/ViewNote.js +30 -0
  130. package/dist/stories/Library/ViewNote/ViewNote.stories.js +24 -0
  131. package/dist/stories/Misc/Thumbnail/Thumbnail.js +118 -0
  132. package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +131 -0
  133. package/dist/stories/Music Album/ViewAlbum/ViewAlbum.stories.js +115 -0
  134. package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +149 -0
  135. package/dist/stories/Music Album/ViewAlbums/ViewAlbums.stories.js +107 -0
  136. package/dist/stories/Navbar/Navbar.js +346 -0
  137. package/dist/stories/Navbar/Navbar.stories.js +41 -0
  138. package/dist/stories/Pages/Blank/Blank.js +36 -0
  139. package/dist/stories/Pages/Blank/Blank.stories.js +24 -0
  140. package/dist/stories/Pages/Centered/Centered.js +34 -0
  141. package/dist/stories/Pages/Centered/Centered.stories.js +24 -0
  142. package/dist/stories/Pages/Chat/Chat.js +86 -0
  143. package/dist/stories/Pages/Chat/Chat.stories.js +74 -0
  144. package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.js +96 -0
  145. package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.js +22 -0
  146. package/dist/stories/Pages/Enrollment/FillForm/FillForm.js +102 -0
  147. package/dist/stories/Pages/Enrollment/FillForm/FillForm.stories.js +22 -0
  148. package/dist/stories/Pages/Enrollment/Forms/Forms.js +125 -0
  149. package/dist/stories/Pages/Enrollment/Forms/Forms.stories.js +22 -0
  150. package/dist/stories/Pages/Events/Event/Event.js +89 -0
  151. package/dist/stories/Pages/Events/Event/Event.stories.js +22 -0
  152. package/dist/stories/Pages/Events/Events/Events.js +125 -0
  153. package/dist/stories/Pages/Events/Events/Events.stories.js +22 -0
  154. package/dist/stories/Pages/Library/Folders/Library.js +136 -0
  155. package/dist/stories/Pages/Library/Folders/Library.stories.js +22 -0
  156. package/dist/stories/Pages/Library/Notes/Notes.js +123 -0
  157. package/dist/stories/Pages/Library/Notes/Notes.stories.js +22 -0
  158. package/dist/stories/Pages/Music/MusicAlbum/Music.js +211 -0
  159. package/dist/stories/Pages/Music/MusicAlbum/Music.stories.js +22 -0
  160. package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +155 -0
  161. package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.js +22 -0
  162. package/dist/stories/Pages/Photos/Album/Album.js +164 -0
  163. package/dist/stories/Pages/Photos/Album/Album.stories.js +22 -0
  164. package/dist/stories/Pages/Photos/Albums/Albums.js +151 -0
  165. package/dist/stories/Pages/Photos/Albums/Albums.stories.js +22 -0
  166. package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.js +112 -0
  167. package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.js +22 -0
  168. package/dist/stories/Pages/Video/VideoAlbum/Video.js +216 -0
  169. package/dist/stories/Pages/Video/VideoAlbum/Video.stories.js +22 -0
  170. package/dist/stories/Pages/ViewWorld/ViewWorld.js +244 -0
  171. package/dist/stories/Pages/ViewWorld/ViewWorld.stories.js +264 -0
  172. package/dist/stories/Pages/ViewWorld/constatnts.js +172 -0
  173. package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.js +24 -0
  174. package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.js +32 -0
  175. package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +236 -0
  176. package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.stories.js +115 -0
  177. package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +156 -0
  178. package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.stories.js +102 -0
  179. package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.js +67 -0
  180. package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.js +35 -0
  181. package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +81 -0
  182. package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.js +37 -0
  183. package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +67 -0
  184. package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.js +40 -0
  185. package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.js +67 -0
  186. package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.js +37 -0
  187. package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.js +65 -0
  188. package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.js +34 -0
  189. package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.js +66 -0
  190. package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.js +39 -0
  191. package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +93 -0
  192. package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.js +27 -0
  193. package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.js +88 -0
  194. package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.js +37 -0
  195. package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +86 -0
  196. package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.js +44 -0
  197. package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.js +67 -0
  198. package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.js +27 -0
  199. package/dist/stories/Reusable Components/Cards/Card.js +102 -0
  200. package/dist/stories/Reusable Components/Cards/Card.stories.js +132 -0
  201. package/dist/stories/Reusable Components/Cards/globalCardStyles.js +70 -0
  202. package/dist/stories/Reusable Components/Controls/Controls.js +128 -0
  203. package/dist/stories/Reusable Components/Controls/Controls.stories.js +49 -0
  204. package/dist/stories/Reusable Components/Gallery/Gallery.js +120 -0
  205. package/dist/stories/Reusable Components/Gallery/Gallery.stories.js +56 -0
  206. package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.js +1 -0
  207. package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +1 -0
  208. package/dist/stories/Reusable Components/Lists/List.js +1 -0
  209. package/dist/stories/Reusable Components/Lists/List.stories.js +1 -0
  210. package/dist/stories/Reusable Components/Mention/Mention.js +72 -0
  211. package/dist/stories/Reusable Components/Mention/Mention.stories.js +66 -0
  212. package/dist/stories/Reusable Components/ReactModal/ReactModal.js +83 -0
  213. package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +100 -0
  214. package/dist/stories/Reusable Components/ReusableForm/ReusableForm.stories.js +207 -0
  215. package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.js +64 -0
  216. package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.js +35 -0
  217. package/dist/stories/Reusable Components/ReusableList/ReusableList.js +92 -0
  218. package/dist/stories/Reusable Components/ReusableList/ReusableList.stories.js +84 -0
  219. package/dist/stories/Reusable Components/SearchCard/SearchCard.js +81 -0
  220. package/dist/stories/Reusable Components/SearchCard/SearchCard.stories.js +24 -0
  221. package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.js +48 -0
  222. package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.js +80 -0
  223. package/dist/stories/Reusable Components/Spinner/Spinner.js +28 -0
  224. package/dist/stories/Reusable Components/Spinner/Spinner.stories.js +22 -0
  225. package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.js +51 -0
  226. package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.js +80 -0
  227. package/dist/stories/Reusable Components/commonStyles.js +54 -0
  228. package/dist/stories/Reusable Components/fakeData.js +112 -0
  229. package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.js +74 -0
  230. package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +24 -0
  231. package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +151 -0
  232. package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.js +101 -0
  233. package/dist/stories/VideoAlbum/Comments/Comments.js +58 -0
  234. package/dist/stories/VideoAlbum/Comments/Comments.stories.js +45 -0
  235. package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.js +235 -0
  236. package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.js +149 -0
  237. package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +110 -0
  238. package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.stories.js +49 -0
  239. package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +150 -0
  240. package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.js +113 -0
  241. package/dist/stories/Widgets/LogoWidget/LogoWidget.js +32 -0
  242. package/dist/stories/Widgets/LogoWidget/LogoWidget.stories.js +26 -0
  243. package/dist/stories/Widgets/MusicPlayer/MusicPlayer.js +49 -0
  244. package/dist/stories/Widgets/MusicPlayer/MusicPlayer.stories.js +44 -0
  245. package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +93 -0
  246. package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.js +52 -0
  247. package/dist/stories/Widgets/SpacesList/SpacesList.js +28 -0
  248. package/dist/stories/Widgets/SpacesList/SpacesList.stories.js +52 -0
  249. package/dist/stories/Widgets/SpacesList/SpacesListItem.js +50 -0
  250. package/dist/stories/Widgets/SpacesList/SpacesListItem.stories.js +24 -0
  251. package/dist/stories/helpers/util.js +178 -0
  252. package/package.json +131 -0
  253. package/public/favicon.ico +0 -0
  254. package/public/index.html +43 -0
  255. package/public/logo192.png +0 -0
  256. package/public/logo512.png +0 -0
  257. package/public/manifest.json +25 -0
  258. package/public/robots.txt +3 -0
  259. package/src/assets/add-svgrepo-com.svg +36 -0
  260. package/src/assets/basket-svgrepo-com.svg +42 -0
  261. package/src/assets/bell-svgrepo-com.svg +44 -0
  262. package/src/assets/compass-svgrepo-com.svg +54 -0
  263. package/src/assets/home-svgrepo-com.svg +42 -0
  264. package/src/assets/medal-svgrepo-com.svg +53 -0
  265. package/src/assets/search-svgrepo-com.svg +42 -0
  266. package/src/assets/settings-svgrepo-com.svg +47 -0
  267. package/src/index.js +95 -0
  268. package/src/stories/API/API.jsx +47 -0
  269. package/src/stories/API/API.stories.js +10 -0
  270. package/src/stories/Agora/Call/Call.jsx +213 -0
  271. package/src/stories/Agora/Chat/Chat.jsx +130 -0
  272. package/src/stories/Agora/Chat/Chat.stories.jsx +10 -0
  273. package/src/stories/Agora/Chat/Components/ChatItem/ChatItem.jsx +38 -0
  274. package/src/stories/Agora/Chat/Components/ChatRoom/ChatRoom.jsx +167 -0
  275. package/src/stories/Agora/Controls/Controls.jsx +56 -0
  276. package/src/stories/Agora/Preview/PreviewCamera.jsx +259 -0
  277. package/src/stories/Agora/Preview/ShareScreen.jsx +58 -0
  278. package/src/stories/Agora/Room/Room.jsx +85 -0
  279. package/src/stories/Agora/Room/Room.stories.jsx +10 -0
  280. package/src/stories/Buttons/Buttons/Buttons.jsx +57 -0
  281. package/src/stories/Buttons/Buttons/Buttons.stories.jsx +24 -0
  282. package/src/stories/Buttons/ReactModal/ReactModal.jsx +81 -0
  283. package/src/stories/Buttons/ReactModal/ReactModal.stories.jsx +18 -0
  284. package/src/stories/Buttons/ReactModal/ReactModalDemo.jsx +12 -0
  285. package/src/stories/Chat/Chat.jsx +74 -0
  286. package/src/stories/Chat/Chat.stories.jsx +59 -0
  287. package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.jsx +70 -0
  288. package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.jsx +32 -0
  289. package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.jsx +98 -0
  290. package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.jsx +35 -0
  291. package/src/stories/Common Inputs/CustomDropzone/CustomDropZone.jsx +115 -0
  292. package/src/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.jsx +26 -0
  293. package/src/stories/Common Inputs/CustomSelect/CustomSelect.jsx +89 -0
  294. package/src/stories/Common Inputs/CustomSelect/CustomSelect.stories.jsx +36 -0
  295. package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.jsx +66 -0
  296. package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.jsx +31 -0
  297. package/src/stories/Common Inputs/DatePicker/DatePicker.jsx +105 -0
  298. package/src/stories/Common Inputs/DatePicker/DatePicker.stories.jsx +47 -0
  299. package/src/stories/Common Inputs/DatePicker/SingleDatePicker.jsx +91 -0
  300. package/src/stories/Common Inputs/DropZone.jsx +79 -0
  301. package/src/stories/Common Inputs/EditorComponent/EditorComponent.jsx +54 -0
  302. package/src/stories/Common Inputs/EditorComponent/EditorComponent.stories.jsx +60 -0
  303. package/src/stories/Common Inputs/EditorComponent/constants.js +26 -0
  304. package/src/stories/Common Inputs/Formik/InputField/InputField.jsx +24 -0
  305. package/src/stories/Common Inputs/Formik/InputField/InputField.stories.jsx +27 -0
  306. package/src/stories/Common Inputs/Formik/RadioField/RadioField.jsx +55 -0
  307. package/src/stories/Common Inputs/Formik/RadioField/RadioField.stories.jsx +41 -0
  308. package/src/stories/Common Inputs/RadioInput/RadioInput.jsx +108 -0
  309. package/src/stories/Common Inputs/RadioInput/RadioInput.stories.js +30 -0
  310. package/src/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.jsx +16 -0
  311. package/src/stories/Common Inputs/RichTextInput/Components/Gif/Gif.jsx +64 -0
  312. package/src/stories/Common Inputs/RichTextInput/RichTextInput.jsx +331 -0
  313. package/src/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +45 -0
  314. package/src/stories/Common Inputs/TextField/TextField.jsx +66 -0
  315. package/src/stories/Common Inputs/TextField/TextField.stories.jsx +31 -0
  316. package/src/stories/Containers/BaseMaterial.jsx +58 -0
  317. package/src/stories/Containers/BaseMaterial.stories.js +10 -0
  318. package/src/stories/Containers/WidgetExample/WidgetBody.jsx +9 -0
  319. package/src/stories/Containers/WidgetExample/WidgetBody.stories.js +10 -0
  320. package/src/stories/Containers/WidgetExample/WidgetExample.jsx +19 -0
  321. package/src/stories/Containers/WidgetExample/WidgetExample.stories.js +10 -0
  322. package/src/stories/Containers/WidgetExample/WidgetHead.jsx +9 -0
  323. package/src/stories/Containers/WidgetExample/WidgetHead.stories.js +10 -0
  324. package/src/stories/Enrollment/Admin/CreateForm/CreateForm.jsx +62 -0
  325. package/src/stories/Enrollment/Admin/CreateForm/CreateForm.stories.jsx +8 -0
  326. package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.jsx +98 -0
  327. package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.jsx +36 -0
  328. package/src/stories/Enrollment/Admin/ViewForms/ViewForms.jsx +40 -0
  329. package/src/stories/Enrollment/Admin/ViewForms/ViewForms.stories.jsx +66 -0
  330. package/src/stories/Enrollment/Guest/FillForm/FillForm.jsx +61 -0
  331. package/src/stories/Enrollment/Guest/FillForm/FillForm.stories.jsx +27 -0
  332. package/src/stories/Events/CreateEvent/CreateEvent.jsx +96 -0
  333. package/src/stories/Events/CreateEvent/CreateEvent.stories.jsx +19 -0
  334. package/src/stories/Events/Event/Event.jsx +113 -0
  335. package/src/stories/Events/Event/Event.stories.jsx +21 -0
  336. package/src/stories/Events/EventsList/EventsList.jsx +117 -0
  337. package/src/stories/Events/EventsList/EventsList.stories.jsx +25 -0
  338. package/src/stories/Forms/AddPhoto/AddPhoto.jsx +85 -0
  339. package/src/stories/Forms/AddPhoto/AddPhoto.stories.jsx +37 -0
  340. package/src/stories/Forms/AddSong/AddSong.jsx +86 -0
  341. package/src/stories/Forms/AddSong/AddSong.stories.jsx +26 -0
  342. package/src/stories/Forms/AddVideo/AddVideo.jsx +78 -0
  343. package/src/stories/Forms/AddVideo/AddVideo.stories.jsx +20 -0
  344. package/src/stories/Forms/Create-Profile/CreateProfile.jsx +278 -0
  345. package/src/stories/Forms/Create-Profile/CreateProfile.stories.jsx +36 -0
  346. package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.jsx +63 -0
  347. package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.jsx +27 -0
  348. package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.jsx +58 -0
  349. package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.jsx +26 -0
  350. package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.jsx +21 -0
  351. package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.jsx +18 -0
  352. package/src/stories/Forms/CreateAlbum/CreateAlbum.jsx +82 -0
  353. package/src/stories/Forms/CreateAlbum/CreateAlbum.stories.jsx +37 -0
  354. package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.jsx +63 -0
  355. package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.jsx +44 -0
  356. package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.jsx +87 -0
  357. package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.jsx +38 -0
  358. package/src/stories/Forms/CreateProfile/CreateProfile.jsx +556 -0
  359. package/src/stories/Forms/CreateProfile/CreateProfile.stories.js +10 -0
  360. package/src/stories/Forms/CreateProfile-3/CreateProfile.jsx +488 -0
  361. package/src/stories/Forms/CreateProfile-3/CreateProfile.stories.js +10 -0
  362. package/src/stories/Forms/CreateUser/CreateUser.jsx +13 -0
  363. package/src/stories/Forms/CreateUser/CreateUser.stories.js +10 -0
  364. package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.jsx +78 -0
  365. package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.jsx +23 -0
  366. package/src/stories/Forms/Form/Form.jsx +34 -0
  367. package/src/stories/Forms/Form/Form.stories.js +10 -0
  368. package/src/stories/Forms/NewProfile/NewProfile.jsx +464 -0
  369. package/src/stories/Forms/NewProfile/NewProfile.stories.jsx +10 -0
  370. package/src/stories/Forms/NewProfile/presets.json +9 -0
  371. package/src/stories/Layout/Body/Body.jsx +24 -0
  372. package/src/stories/Layout/Body/Body.stories.js +26 -0
  373. package/src/stories/Layout/Center/Center.jsx +16 -0
  374. package/src/stories/Layout/Center/Center.stories.js +14 -0
  375. package/src/stories/Layout/Head/Head.jsx +15 -0
  376. package/src/stories/Layout/Head/Head.stories.js +10 -0
  377. package/src/stories/Layout/Left/Left.jsx +21 -0
  378. package/src/stories/Layout/Left/Left.stories.js +14 -0
  379. package/src/stories/Layout/Right/Right.jsx +17 -0
  380. package/src/stories/Layout/Right/Right.stories.js +14 -0
  381. package/src/stories/Library/CreateFolder/CreateFolder.jsx +78 -0
  382. package/src/stories/Library/CreateFolder/CreateFolder.stories.jsx +32 -0
  383. package/src/stories/Library/Folders/Folders.jsx +117 -0
  384. package/src/stories/Library/Folders/Folders.stories.jsx +34 -0
  385. package/src/stories/Library/Notes/Notes.jsx +117 -0
  386. package/src/stories/Library/Notes/Notes.stories.jsx +24 -0
  387. package/src/stories/Library/ViewNote/ViewNote.jsx +25 -0
  388. package/src/stories/Library/ViewNote/ViewNote.stories.jsx +16 -0
  389. package/src/stories/Misc/Thumbnail/Thumbnail.jsx +79 -0
  390. package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +111 -0
  391. package/src/stories/Music Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
  392. package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +134 -0
  393. package/src/stories/Music Album/ViewAlbums/ViewAlbums.stories.jsx +57 -0
  394. package/src/stories/Navbar/Navbar.jsx +350 -0
  395. package/src/stories/Navbar/Navbar.stories.js +25 -0
  396. package/src/stories/Pages/Blank/Blank.jsx +32 -0
  397. package/src/stories/Pages/Blank/Blank.stories.js +10 -0
  398. package/src/stories/Pages/Centered/Centered.jsx +31 -0
  399. package/src/stories/Pages/Centered/Centered.stories.js +14 -0
  400. package/src/stories/Pages/Chat/Chat.jsx +82 -0
  401. package/src/stories/Pages/Chat/Chat.stories.jsx +53 -0
  402. package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.jsx +102 -0
  403. package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.jsx +8 -0
  404. package/src/stories/Pages/Enrollment/FillForm/FillForm.jsx +96 -0
  405. package/src/stories/Pages/Enrollment/FillForm/FillForm.stories.jsx +8 -0
  406. package/src/stories/Pages/Enrollment/Forms/Forms.jsx +129 -0
  407. package/src/stories/Pages/Enrollment/Forms/Forms.stories.jsx +8 -0
  408. package/src/stories/Pages/Events/Event/Event.jsx +88 -0
  409. package/src/stories/Pages/Events/Event/Event.stories.jsx +8 -0
  410. package/src/stories/Pages/Events/Events/Events.jsx +110 -0
  411. package/src/stories/Pages/Events/Events/Events.stories.jsx +8 -0
  412. package/src/stories/Pages/Library/Folders/Library.jsx +118 -0
  413. package/src/stories/Pages/Library/Folders/Library.stories.jsx +8 -0
  414. package/src/stories/Pages/Library/Notes/Notes.jsx +109 -0
  415. package/src/stories/Pages/Library/Notes/Notes.stories.jsx +8 -0
  416. package/src/stories/Pages/Music/MusicAlbum/Music.jsx +159 -0
  417. package/src/stories/Pages/Music/MusicAlbum/Music.stories.jsx +8 -0
  418. package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +138 -0
  419. package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.jsx +8 -0
  420. package/src/stories/Pages/Photos/Album/Album.jsx +120 -0
  421. package/src/stories/Pages/Photos/Album/Album.stories.jsx +8 -0
  422. package/src/stories/Pages/Photos/Albums/Albums.jsx +144 -0
  423. package/src/stories/Pages/Photos/Albums/Albums.stories.jsx +8 -0
  424. package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.jsx +91 -0
  425. package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.jsx +8 -0
  426. package/src/stories/Pages/Video/VideoAlbum/Video.jsx +166 -0
  427. package/src/stories/Pages/Video/VideoAlbum/Video.stories.jsx +8 -0
  428. package/src/stories/Pages/ViewWorld/ViewWorld.jsx +193 -0
  429. package/src/stories/Pages/ViewWorld/ViewWorld.stories.js +270 -0
  430. package/src/stories/Pages/ViewWorld/constatnts.js +158 -0
  431. package/src/stories/Pages/ViewWorld/styles.json +18 -0
  432. package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.jsx +17 -0
  433. package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.jsx +20 -0
  434. package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +250 -0
  435. package/src/stories/Photo Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
  436. package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +146 -0
  437. package/src/stories/Photo Album/ViewAlbums/ViewAlbums.stories.jsx +59 -0
  438. package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.jsx +74 -0
  439. package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.jsx +22 -0
  440. package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +94 -0
  441. package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.jsx +21 -0
  442. package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +79 -0
  443. package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.jsx +21 -0
  444. package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.jsx +75 -0
  445. package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.jsx +24 -0
  446. package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.jsx +61 -0
  447. package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.jsx +22 -0
  448. package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.jsx +67 -0
  449. package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.jsx +25 -0
  450. package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +117 -0
  451. package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.jsx +9 -0
  452. package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.jsx +126 -0
  453. package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.jsx +23 -0
  454. package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +113 -0
  455. package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.jsx +29 -0
  456. package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.jsx +86 -0
  457. package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.jsx +14 -0
  458. package/src/stories/Reusable Components/Cards/Card.jsx +119 -0
  459. package/src/stories/Reusable Components/Cards/Card.stories.jsx +118 -0
  460. package/src/stories/Reusable Components/Cards/globalCardStyles.js +54 -0
  461. package/src/stories/Reusable Components/Controls/Controls.jsx +137 -0
  462. package/src/stories/Reusable Components/Controls/Controls.stories.jsx +24 -0
  463. package/src/stories/Reusable Components/Gallery/Gallery.jsx +110 -0
  464. package/src/stories/Reusable Components/Gallery/Gallery.stories.jsx +43 -0
  465. package/src/stories/Reusable Components/Lists/Cards/ListCard-1.jsx +0 -0
  466. package/src/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +0 -0
  467. package/src/stories/Reusable Components/Lists/List.jsx +0 -0
  468. package/src/stories/Reusable Components/Lists/List.stories.js +0 -0
  469. package/src/stories/Reusable Components/Mention/Mention.jsx +69 -0
  470. package/src/stories/Reusable Components/Mention/Mention.stories.jsx +55 -0
  471. package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +76 -0
  472. package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +121 -0
  473. package/src/stories/Reusable Components/ReusableForm/ReusableForm.stories.jsx +167 -0
  474. package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.jsx +76 -0
  475. package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.jsx +22 -0
  476. package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +103 -0
  477. package/src/stories/Reusable Components/ReusableList/ReusableList.stories.jsx +70 -0
  478. package/src/stories/Reusable Components/SearchCard/SearchCard.jsx +89 -0
  479. package/src/stories/Reusable Components/SearchCard/SearchCard.stories.js +10 -0
  480. package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.jsx +48 -0
  481. package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.jsx +78 -0
  482. package/src/stories/Reusable Components/Spinner/Spinner.jsx +82 -0
  483. package/src/stories/Reusable Components/Spinner/Spinner.stories.jsx +8 -0
  484. package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.jsx +59 -0
  485. package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.jsx +61 -0
  486. package/src/stories/Reusable Components/commonStyles.js +47 -0
  487. package/src/stories/Reusable Components/fakeData.js +95 -0
  488. package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.jsx +102 -0
  489. package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +10 -0
  490. package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +130 -0
  491. package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.jsx +59 -0
  492. package/src/stories/VideoAlbum/Comments/Comments.jsx +58 -0
  493. package/src/stories/VideoAlbum/Comments/Comments.stories.jsx +18 -0
  494. package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.jsx +214 -0
  495. package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.jsx +82 -0
  496. package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +101 -0
  497. package/src/stories/VideoAlbum/VideoSpace/VideoSpace.stories.jsx +23 -0
  498. package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +131 -0
  499. package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.jsx +57 -0
  500. package/src/stories/Widgets/LogoWidget/LogoWidget.jsx +21 -0
  501. package/src/stories/Widgets/LogoWidget/LogoWidget.stories.js +12 -0
  502. package/src/stories/Widgets/MusicPlayer/MusicPlayer.jsx +64 -0
  503. package/src/stories/Widgets/MusicPlayer/MusicPlayer.stories.jsx +23 -0
  504. package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +107 -0
  505. package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.jsx +33 -0
  506. package/src/stories/Widgets/SpacesList/SpacesList.jsx +16 -0
  507. package/src/stories/Widgets/SpacesList/SpacesList.stories.jsx +27 -0
  508. package/src/stories/Widgets/SpacesList/SpacesListItem.jsx +75 -0
  509. package/src/stories/Widgets/SpacesList/SpacesListItem.stories.jsx +10 -0
  510. package/src/stories/assets/camera.svg +1 -0
  511. package/src/stories/assets/code-brackets.svg +1 -0
  512. package/src/stories/assets/colors.svg +1 -0
  513. package/src/stories/assets/comments.svg +1 -0
  514. package/src/stories/assets/direction.svg +1 -0
  515. package/src/stories/assets/flow.svg +1 -0
  516. package/src/stories/assets/images/album1.jpg +0 -0
  517. package/src/stories/assets/images/album2.jpg +0 -0
  518. package/src/stories/assets/images/album3.jpg +0 -0
  519. package/src/stories/assets/images/album4.jpg +0 -0
  520. package/src/stories/assets/images/album5.jpg +0 -0
  521. package/src/stories/assets/images/album6.jpg +0 -0
  522. package/src/stories/assets/images/art.jpg +0 -0
  523. package/src/stories/assets/images/dance.jpg +0 -0
  524. package/src/stories/assets/images/football.jpg +0 -0
  525. package/src/stories/assets/images/music.jpg +0 -0
  526. package/src/stories/assets/images/music1.jpg +0 -0
  527. package/src/stories/assets/images/music2.jpg +0 -0
  528. package/src/stories/assets/images/music3.jpg +0 -0
  529. package/src/stories/assets/images/music4.jpg +0 -0
  530. package/src/stories/assets/images/music5.jpg +0 -0
  531. package/src/stories/assets/images/music6.jpg +0 -0
  532. package/src/stories/assets/images/reset.png +0 -0
  533. package/src/stories/assets/images/robotics.jpg +0 -0
  534. package/src/stories/assets/images/tennis.jpg +0 -0
  535. package/src/stories/assets/plugin.svg +1 -0
  536. package/src/stories/assets/repo.svg +1 -0
  537. package/src/stories/assets/reset.svg +1 -0
  538. package/src/stories/assets/stackalt.svg +1 -0
  539. package/src/stories/helpers/util.js +66 -0
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 330.242 330.242" style="enable-background:new 0 0 330.242 330.242;" xml:space="preserve">
6
+ <path d="M324.442,129.811l-41.321-33.677V42.275c0-6.065-4.935-11-11-11h-26c-6.065,0-11,4.935-11,11v14.737l-55.213-44.999
7
+ c-3.994-3.254-9.258-5.047-14.822-5.047c-5.542,0-10.781,1.782-14.753,5.019L5.8,129.81c-6.567,5.351-6.173,10.012-5.354,12.314
8
+ c0.817,2.297,3.448,6.151,11.884,6.151h19.791v154.947c0,11.058,8.972,20.053,20,20.053h62.5c10.935,0,19.5-8.809,19.5-20.053
9
+ v-63.541c0-5.446,5.005-10.405,10.5-10.405h42c5.238,0,9.5,4.668,9.5,10.405v63.541c0,10.87,9.388,20.053,20.5,20.053h61.5
10
+ c11.028,0,20-8.996,20-20.053V148.275h19.791c8.436,0,11.066-3.854,11.884-6.151C330.615,139.822,331.009,135.161,324.442,129.811z"
11
+ />
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ </svg>
@@ -0,0 +1,53 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 491.768 491.768" style="enable-background:new 0 0 491.768 491.768;" xml:space="preserve">
6
+ <g id="XMLID_439_">
7
+ <path id="XMLID_440_" d="M174.048,136.543l39.925-83.12l18.234-37.966l-2.938-6.131C226.54,3.628,220.778,0,214.453,0H98.137
8
+ c-5.651,0-10.899,2.906-13.918,7.689c-3.001,4.783-3.338,10.772-0.898,15.859l72.508,150.957L174.048,136.543z"/>
9
+ <path id="XMLID_441_" d="M407.548,7.689C404.53,2.906,399.281,0,393.63,0h-116.3c-6.323,0-12.088,3.628-14.815,9.326
10
+ l-89.814,187.012c-0.065,0.145-0.081,0.289-0.146,0.433c-0.143,0.322-0.209,0.675-0.337,1.013
11
+ c-0.577,1.559-0.913,3.211-0.994,4.959c-0.017,0.242-0.145,0.45-0.145,0.709v8.474c22.329-11.687,47.676-18.397,74.579-18.397
12
+ c26.922,0,52.252,6.711,74.597,18.414v-4.751l88.192-183.642C410.887,18.461,410.549,12.473,407.548,7.689z"/>
13
+ <path id="XMLID_442_" d="M245.658,218.186c-75.559,0-136.8,61.24-136.8,136.799c0,75.543,61.241,136.783,136.8,136.783
14
+ c75.543,0,136.785-61.24,136.785-136.783C382.444,279.426,321.201,218.186,245.658,218.186z M326.966,331.1l-36.52,35.62
15
+ c-1.14,1.122-1.671,2.729-1.397,4.302l8.622,50.293c0.303,1.813-0.452,3.659-1.944,4.75c-1.492,1.092-3.483,1.221-5.105,0.369
16
+ l-45.17-23.738c-1.412-0.742-3.115-0.742-4.529,0l-45.17,23.738c-1.622,0.852-3.613,0.723-5.105-0.369
17
+ c-1.492-1.091-2.246-2.938-1.941-4.75l8.621-50.293c0.271-1.572-0.259-3.18-1.397-4.302l-36.52-35.62
18
+ c-1.331-1.302-1.797-3.227-1.236-4.977c0.58-1.768,2.104-3.05,3.918-3.307l50.516-7.337c1.574-0.225,2.939-1.219,3.645-2.664
19
+ l22.587-45.749c0.819-1.654,2.505-2.715,4.35-2.715c1.846,0,3.529,1.061,4.349,2.715l22.587,45.749
20
+ c0.705,1.445,2.069,2.439,3.645,2.664l50.516,7.337c1.813,0.257,3.34,1.539,3.918,3.307
21
+ C328.764,327.873,328.296,329.798,326.966,331.1z"/>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ <g>
46
+ </g>
47
+ <g>
48
+ </g>
49
+ <g>
50
+ </g>
51
+ <g>
52
+ </g>
53
+ </svg>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 183.792 183.792" style="enable-background:new 0 0 183.792 183.792;" xml:space="preserve">
6
+ <path d="M54.734,9.053C39.12,18.067,27.95,32.624,23.284,50.039c-4.667,17.415-2.271,35.606,6.743,51.22
7
+ c12.023,20.823,34.441,33.759,58.508,33.759c7.599,0,15.139-1.308,22.287-3.818l30.364,52.592l21.65-12.5l-30.359-52.583
8
+ c10.255-8.774,17.638-20.411,21.207-33.73c4.666-17.415,2.27-35.605-6.744-51.22C134.918,12.936,112.499,0,88.433,0
9
+ C76.645,0,64.992,3.13,54.734,9.053z M125.29,46.259c5.676,9.831,7.184,21.285,4.246,32.25c-2.938,10.965-9.971,20.13-19.802,25.806
10
+ c-6.462,3.731-13.793,5.703-21.199,5.703c-15.163,0-29.286-8.146-36.857-21.259c-5.676-9.831-7.184-21.284-4.245-32.25
11
+ c2.938-10.965,9.971-20.13,19.802-25.807C73.696,26.972,81.027,25,88.433,25C103.597,25,117.719,33.146,125.29,46.259z"/>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ </svg>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 489.802 489.802" style="enable-background:new 0 0 489.802 489.802;" xml:space="preserve">
5
+ <g>
6
+ <path d="M20.701,281.901l32.1,0.2c4.8,24.7,14.3,48.7,28.7,70.5l-22.8,22.6c-8.2,8.1-8.2,21.2-0.2,29.4l24.6,24.9
7
+ c8.1,8.2,21.2,8.2,29.4,0.2l22.8-22.6c21.6,14.6,45.5,24.5,70.2,29.5l-0.2,32.1c-0.1,11.5,9.2,20.8,20.7,20.9l35,0.2
8
+ c11.5,0.1,20.8-9.2,20.9-20.7l0.2-32.1c24.7-4.8,48.7-14.3,70.5-28.7l22.6,22.8c8.1,8.2,21.2,8.2,29.4,0.2l24.9-24.6
9
+ c8.2-8.1,8.2-21.2,0.2-29.4l-22.6-22.8c14.6-21.6,24.5-45.5,29.5-70.2l32.1,0.2c11.5,0.1,20.8-9.2,20.9-20.7l0.2-35
10
+ c0.1-11.5-9.2-20.8-20.7-20.9l-32.1-0.2c-4.8-24.7-14.3-48.7-28.7-70.5l22.8-22.6c8.2-8.1,8.2-21.2,0.2-29.4l-24.6-24.9
11
+ c-8.1-8.2-21.2-8.2-29.4-0.2l-22.8,22.6c-21.6-14.6-45.5-24.5-70.2-29.5l0.2-32.1c0.1-11.5-9.2-20.8-20.7-20.9l-35-0.2
12
+ c-11.5-0.1-20.8,9.2-20.9,20.7l-0.3,32.1c-24.8,4.8-48.8,14.3-70.5,28.7l-22.6-22.8c-8.1-8.2-21.2-8.2-29.4-0.2l-24.8,24.6
13
+ c-8.2,8.1-8.2,21.2-0.2,29.4l22.6,22.8c-14.6,21.6-24.5,45.5-29.5,70.2l-32.1-0.2c-11.5-0.1-20.8,9.2-20.9,20.7l-0.2,35
14
+ C-0.099,272.401,9.201,281.801,20.701,281.901z M179.301,178.601c36.6-36.2,95.5-35.9,131.7,0.7s35.9,95.5-0.7,131.7
15
+ s-95.5,35.9-131.7-0.7S142.701,214.801,179.301,178.601z"/>
16
+ </g>
17
+ <g>
18
+ </g>
19
+ <g>
20
+ </g>
21
+ <g>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ <g>
46
+ </g>
47
+ </svg>
package/src/index.js ADDED
@@ -0,0 +1,95 @@
1
+ // Chat
2
+ import Chat from './stories/Chat/Chat';
3
+ // Enrollment
4
+ import CreateEnrollmentForm from './stories/Enrollment/Admin/CreateForm/CreateForm';
5
+ import DetailedEnrollmentForm from './stories/Enrollment/Admin/DetailedForm/DetailedForm';
6
+ import ViewEnrollmentForms from './stories/Enrollment/Admin/ViewForms/ViewForms';
7
+ import FillEnrollmentForm from './stories/Enrollment/Guest/FillForm/FillForm';
8
+ // Events
9
+ import CreateEvent from './stories/Events/CreateEvent/CreateEvent';
10
+ import Event from './stories/Events/Event/Event';
11
+ import EventsList from './stories/Events/EventsList/EventsList';
12
+ // Library
13
+ import CreateLibraryFolder from './stories/Library/CreateFolder/CreateFolder';
14
+ import LibraryFolders from './stories/Library/Folders/Folders';
15
+ import LibraryNotes from './stories/Library/Notes/Notes';
16
+ import ViewLibraryNote from './stories/Library/ViewNote/ViewNote';
17
+ // Music
18
+ import CreateMusic from './stories/Forms/AddSong/AddSong';
19
+ import CreateMusicAlbum from './stories/Forms/CreateMusicAlbum/CreateMusicAlbum';
20
+ import MusicAlbum from './stories/Music Album/ViewAlbum/ViewAlbum';
21
+ import MusicAlbums from './stories/Music Album/ViewAlbums/ViewAlbums';
22
+ // Photos
23
+ import CreatePhotoAlbum from './stories/Forms/CreateAlbum/CreateAlbum';
24
+ import CreatePhoto from './stories/Forms/AddPhoto/AddPhoto';
25
+ import PhotoAlbum from './stories/Photo Album/ViewAlbum/ViewAlbum';
26
+ import PhoroAlbums from './stories/Photo Album/ViewAlbums/ViewAlbums';
27
+ // Layout
28
+ import BaseMaterial from './stories/Containers/BaseMaterial';
29
+ import Body from './stories/Layout/Body/Body';
30
+ import Center from './stories/Layout/Center/Center';
31
+ import Head from './stories/Layout/Head/Head';
32
+ import Left from './stories/Layout/Left/Left';
33
+ import Right from './stories/Layout/Right/Right';
34
+ // Components
35
+ import Navbar from './stories/Navbar/Navbar';
36
+ import Gallery from './stories/Reusable Components/Gallery/Gallery';
37
+ import List from './stories/Reusable Components/ReusableList/ReusableList';
38
+ import Header from './stories/Reusable Components/ReusableHeader/ReusableHeader';
39
+ import SpaceContainer from './stories/Reusable Components/SpaceContainer/SpaceContainer';
40
+ import Spinner from './stories/Reusable Components/Spinner/Spinner';
41
+ import WidgetContainer from './stories/Reusable Components/WidgetContainer/WidgetContainer';
42
+ // Video
43
+ import CreateVideoAlbum from './stories/Forms/CreateVideoAlbum/CreateVideoAlbum';
44
+ import CreateVideo from './stories/Forms/AddVideo/AddVideo';
45
+ import VideoAlbums from './stories/VideoAlbum/AlbumsGallery/AlbumsGallery';
46
+ import VidepSpace from './stories/VideoAlbum/VideoSpace/VideoSpace';
47
+ import VideoAlbum from './stories/VideoAlbum/ViewAlbum/ViewAlbum';
48
+ /****************Exports****************** */
49
+ //Chat
50
+ export { Chat };
51
+ // Enrollment
52
+ export { CreateEnrollmentForm };
53
+ export { DetailedEnrollmentForm }
54
+ export { ViewEnrollmentForms }
55
+ export { FillEnrollmentForm }
56
+ // Events
57
+ export { CreateEvent }
58
+ export { Event }
59
+ export { EventsList }
60
+ // Library
61
+ export { CreateLibraryFolder }
62
+ export { LibraryFolders }
63
+ export { LibraryNotes }
64
+ export { ViewLibraryNote }
65
+ // Music
66
+ export { CreateMusic }
67
+ export { CreateMusicAlbum }
68
+ export { MusicAlbum }
69
+ export { MusicAlbums }
70
+ // Photos
71
+ export { CreatePhotoAlbum }
72
+ export { CreatePhoto }
73
+ export { PhotoAlbum }
74
+ export { PhoroAlbums }
75
+ // Layout
76
+ export { BaseMaterial }
77
+ export { Body }
78
+ export { Center }
79
+ export { Head }
80
+ export { Left }
81
+ export { Right }
82
+ // Components
83
+ export { Navbar }
84
+ export { Gallery }
85
+ export { List }
86
+ export { Header }
87
+ export { SpaceContainer }
88
+ export { WidgetContainer }
89
+ export { Spinner }
90
+ // Video
91
+ export { CreateVideoAlbum }
92
+ export { CreateVideo }
93
+ export { VideoAlbums }
94
+ export { VidepSpace }
95
+ export { VideoAlbum }
@@ -0,0 +1,47 @@
1
+ import React from "react";
2
+
3
+ import styled from "styled-components";
4
+ import PropTypes from "prop-types";
5
+
6
+ import BaseMaterial from "../Containers/BaseMaterial";
7
+
8
+ const API = props => {
9
+ return (
10
+ <BaseMaterial>
11
+ <Image src={props.image_src} alt={props.image_alt} />
12
+ <Text>{props.text}</Text>
13
+ </BaseMaterial>
14
+ );
15
+ };
16
+
17
+ const Container = styled(BaseMaterial)({
18
+ display: "flex",
19
+ position: "relative",
20
+ width: "100%",
21
+ "align-items": "center",
22
+ "flex-direction": "column",
23
+ "justify-content": "center"
24
+ });
25
+
26
+ const Text = styled.p`
27
+ text-align: center;
28
+ `;
29
+
30
+ const Image = styled("img")({
31
+ width: "100%",
32
+ "object-fit": "cover"
33
+ });
34
+
35
+ API.defaultProps = {
36
+ image_src: "https://play.teleporthq.io/static/svg/default-img.svg",
37
+ image_alt: "image",
38
+ text: "Text"
39
+ };
40
+
41
+ API.propTypes = {
42
+ image_src: PropTypes.string,
43
+ image_alt: PropTypes.string,
44
+ text: PropTypes.string
45
+ };
46
+
47
+ export default API;
@@ -0,0 +1,10 @@
1
+ import React from "react"
2
+
3
+ import API from "./API"
4
+
5
+ export default {
6
+ title: 'API Statuses/API',
7
+ component: API
8
+ }
9
+
10
+ export const Default = (args) => <API {...args} />
@@ -0,0 +1,213 @@
1
+ import {
2
+ AgoraVideoPlayer,
3
+ createCameraVideoTrack,
4
+ createClient,
5
+ createMicrophoneAudioTrack,
6
+ } from 'agora-rtc-react';
7
+ import React, { Fragment, useEffect, useState } from 'react';
8
+ import styled from 'styled-components';
9
+ import Controls from '../Controls/Controls';
10
+
11
+ let rtc = {
12
+ localAudioTrack: null,
13
+ localVideoTrack: null,
14
+ localAudioReady: null,
15
+ localVideoReady: null,
16
+ };
17
+
18
+ const config = {
19
+ mode: 'rtc',
20
+ codec: 'vp8',
21
+ };
22
+
23
+ var options = {
24
+ appid: '3f54ddbde65d4f0ab9a9f5a46baa4310',
25
+ channel: 'bcd',
26
+ token:
27
+ '0063f54ddbde65d4f0ab9a9f5a46baa4310IAALsgGjVTL2Av/GANIuUU61cNObFj9T7krqkn2UG1uXeHlbHbAAAAAAEAAw9+/yVoJUYQEAAQBWglRh',
28
+ };
29
+
30
+ const createCameraTrack = (videoDeviceId) =>
31
+ createCameraVideoTrack({
32
+ encoderConfig: '90p_1',
33
+ deviceId: videoDeviceId,
34
+ });
35
+
36
+ const createMicrophoneTrack = (audioDeviceId) =>
37
+ createMicrophoneAudioTrack({ deviceId: audioDeviceId });
38
+
39
+ const useClient = createClient(config);
40
+
41
+ const Call = ({ videoDeviceId, audioDeviceId, token, uid }) => {
42
+ var client = useClient();
43
+ const localAudio = createMicrophoneTrack(audioDeviceId)();
44
+ rtc.localAudioReady = localAudio.ready;
45
+ rtc.localAudioTrack = localAudio.track;
46
+ const localVideo = createCameraTrack(videoDeviceId)();
47
+ rtc.localVideoTrack = localVideo.track;
48
+ rtc.localVideoReady = localVideo.ready;
49
+ const [allCalls, setAllCalls] = useState([]);
50
+ const [stageUserId, setStageUserId] = useState();
51
+ const leaveChannel = async () => {
52
+ await client.leave();
53
+ client.removeAllListeners();
54
+ rtc.localAudioTrack.close();
55
+ rtc.localVideoTrack.close();
56
+ client.remoteUsers.forEach((user) => {
57
+ user.videoTrack.close();
58
+ user.audioTrack.close();
59
+ });
60
+ };
61
+ useEffect(() => {
62
+ let init = async () => {
63
+ client.on('user-published', async (user, mediaType) => {
64
+ await client.subscribe(user, mediaType);
65
+
66
+ if (mediaType === 'video') {
67
+ const remoteUser = {
68
+ uid: user.uid,
69
+ videoTrack: user.videoTrack,
70
+ audioTrack: user.audioTrack,
71
+ };
72
+ setAllCalls((allCalls) => [...allCalls, remoteUser]);
73
+ }
74
+ if (mediaType === 'audio') {
75
+ user.audioTrack.play();
76
+ }
77
+ });
78
+ client.on('user-unpublished', (user, type) => {
79
+ if (type === 'audio') {
80
+ user.audioTrack?.stop();
81
+ }
82
+ if (type === 'video') {
83
+ setAllCalls((users) => {
84
+ return users.filter((u) => u.uid !== user.uid);
85
+ });
86
+ }
87
+ });
88
+
89
+ await client.join(options.appid, options.channel, token || null, uid);
90
+ const localUser = {
91
+ uid: client.uid,
92
+ videoTrack: rtc.localVideoTrack,
93
+ audioTrack: rtc.localAudioTrack,
94
+ };
95
+
96
+ await client.publish([rtc.localAudioTrack, rtc.localVideoTrack]);
97
+ setStageUserId(localUser.uid);
98
+ setAllCalls((allCalls) => [...allCalls, localUser]);
99
+ };
100
+ if (
101
+ rtc.localVideoReady &&
102
+ rtc.localAudioReady &&
103
+ rtc.localVideoTrack &&
104
+ rtc.localAudioTrack
105
+ ) {
106
+ init();
107
+ }
108
+ }, [
109
+ client,
110
+ rtc.localAudioTrack,
111
+ rtc.localVideoTrack,
112
+ rtc.localAudioReady,
113
+ rtc.localVideoReady,
114
+ ]);
115
+ useEffect(() => {
116
+ return () => {
117
+ rtc.localAudioTrack.close();
118
+ rtc.localVideoTrack.close();
119
+ rtc.localAudioReady = undefined;
120
+ rtc.localVideoReady = undefined;
121
+ rtc.localVideoTrack = undefined;
122
+ rtc.localAudioTrack = undefined;
123
+ // setUsers([]);
124
+ setAllCalls([]);
125
+ client.leave();
126
+ client.removeAllListeners();
127
+ };
128
+ }, []);
129
+ const getStageUsers = () => {
130
+ const stage = allCalls.find((c) => c.uid === stageUserId);
131
+ return (
132
+ <Fragment>
133
+ {stage && (
134
+ <AgoraVideoPlayer
135
+ className='vid'
136
+ videoTrack={stage?.videoTrack}
137
+ style={{ height: '100%', width: '100%' }}
138
+ />
139
+ )}
140
+ </Fragment>
141
+ );
142
+ };
143
+
144
+ const getNonStageUsers = () => {
145
+ const nonStage = allCalls.filter((c) => c.uid !== stageUserId);
146
+ return (
147
+ <Fragment>
148
+ {nonStage.length > 0 &&
149
+ nonStage.map((user) => (
150
+ <AgoraVideoPlayer
151
+ key={user?.uid}
152
+ videoTrack={user?.videoTrack}
153
+ style={{ height: '100%', width: '30%' }}
154
+ onClick={(e) => {
155
+ setStageUserId(user.uid);
156
+ }}
157
+ />
158
+ ))}
159
+ </Fragment>
160
+ );
161
+ };
162
+ return (
163
+ <div>
164
+ <h1>Cleaner Video Call</h1>
165
+ <Controls
166
+ token={token}
167
+ muteVideo={(mute) => {
168
+ if (mute) {
169
+ rtc.localAudioTrack.setVolume(0);
170
+ } else {
171
+ rtc.localAudioTrack.setVolume(100);
172
+ }
173
+ }}
174
+ pauseVideo={async (pauseVideo) => {
175
+ if (pauseVideo) {
176
+ await rtc.localVideoTrack.setEnabled(false);
177
+ } else {
178
+ await rtc.localVideoTrack.setEnabled(true);
179
+ }
180
+ }}
181
+ />
182
+ <Videos>{getStageUsers()}</Videos>
183
+
184
+ <RemoteVideos>{getNonStageUsers()}</RemoteVideos>
185
+ </div>
186
+ );
187
+ };
188
+ const Videos = styled.div`
189
+ position: relative;
190
+ height: 44vh;
191
+ width: 40vw;
192
+ margin: auto;
193
+ align-self: flex-start;
194
+ display: grid;
195
+ grid-template-columns: repeat(auto-fit, minmax(440px, ifr));
196
+ justify-items: center;
197
+ align-items: center;
198
+ `;
199
+ const RemoteVideos = styled.div`
200
+ height: 22vh;
201
+ width: 40vw;
202
+ display: flex;
203
+ margin-top: 5px;
204
+ flex-wrap: wrap;
205
+ gap: 3%;
206
+ `;
207
+ const Video = styled.div`
208
+ width: 30%;
209
+ height: 100%;
210
+ background-color: blue;
211
+ `;
212
+
213
+ export default Call;
@@ -0,0 +1,130 @@
1
+ import React, { useState } from 'react';
2
+
3
+ import styled from 'styled-components';
4
+ import ChatItem from './Components/ChatItem/ChatItem';
5
+ import ChatRoom from './Components/ChatRoom/ChatRoom';
6
+
7
+ const Chat = () => {
8
+ const [inChannel, setInChannel] = useState(false);
9
+ const [channelName, setChannelName] = useState('');
10
+ const [user, setUser] = useState();
11
+ const channels = [
12
+ {
13
+ channelName: 'demoChannel1',
14
+ channelCaption: 'dummyCaption1',
15
+ },
16
+ {
17
+ channelName: 'demoChannel2',
18
+ channelCaption: 'dummyCaption2',
19
+ },
20
+ {
21
+ channelName: 'demoChannel3',
22
+ channelCaption: 'dummyCaption3',
23
+ },
24
+ {
25
+ channelName: 'demoChannel4',
26
+ channelCaption: 'dummyCaption4',
27
+ },
28
+ {
29
+ channelName: 'demoChannel5',
30
+ channelCaption: 'dummyCaption5',
31
+ },
32
+ ];
33
+ const users = [
34
+ {
35
+ name: 'abc',
36
+ token:
37
+ '0063f54ddbde65d4f0ab9a9f5a46baa4310IACpBv3nlJRgYO0Wap1UOzpD7mqGkwUh4ZbFLBz46EIlWcJBJDUAAAAAEAA5usltkmBcYQEA6AOSYFxh',
38
+ },
39
+ {
40
+ name: 'bot',
41
+ token:
42
+ '0063f54ddbde65d4f0ab9a9f5a46baa4310IAB6tJsysifxKIQNIjdenWnMimAH0991npnskqGxQkI0BBEEHwEAAAAAEAA5usltnWBcYQEA6AOdYFxh',
43
+ },
44
+ {
45
+ name: 'xyz',
46
+ token:
47
+ '0063f54ddbde65d4f0ab9a9f5a46baa4310IABaYThrzEVXCr7SJGPYdA0sHQsiYxxuF1sZbyiSn9Mlwme6jusAAAAAEAA5usltqWBcYQEA6AOpYFxh',
48
+ },
49
+ {
50
+ name: 'stranger',
51
+ token:
52
+ '0063f54ddbde65d4f0ab9a9f5a46baa4310IAAevEexzZDbMbBOqtt3kaTRNWa09XjvBVdBJI3OwN+phnKdgo0AAAAAEAA5usltsmBcYQEA6AOyYFxh',
53
+ },
54
+ {
55
+ name: 'goku',
56
+ token:
57
+ '0063f54ddbde65d4f0ab9a9f5a46baa4310IADEQEBAL5ORXJYYocmPONWrxpGAQUIxd6lE09pFvGsqnWSrWGIAAAAAEAA5usltumBcYQEA6AO6YFxh',
58
+ },
59
+ ];
60
+
61
+ return (
62
+ <Container>
63
+ {user && (
64
+ <LabelContainer>
65
+ <label>Hello {user?.name}</label>
66
+ </LabelContainer>
67
+ )}
68
+ {!inChannel && !user && (
69
+ <UserButtonContainer>
70
+ {users.map((user, i) => (
71
+ <button onClick={() => setUser(user)}>Login as {user.name}</button>
72
+ ))}
73
+ </UserButtonContainer>
74
+ )}
75
+
76
+ {!inChannel && user && (
77
+ <ChatContainer>
78
+ {channels.map((channel, i) => (
79
+ <ChatItem
80
+ onClick={() => {
81
+ setChannelName(channel.channelName);
82
+
83
+ setInChannel(true);
84
+ }}
85
+ channelName={channel.channelName}
86
+ channelCaption={channel.channelCaption}
87
+ />
88
+ ))}
89
+ </ChatContainer>
90
+ )}
91
+
92
+ {inChannel && (
93
+ <ChatRoom
94
+ setInChannel={setInChannel}
95
+ channelName={channelName}
96
+ user={user}
97
+ />
98
+ )}
99
+ </Container>
100
+ );
101
+ };
102
+ const Container = styled.div`
103
+ width: 100%;
104
+ display: flex;
105
+ flex-direction: column;
106
+ justify-content: center;
107
+ align-items: center;
108
+ `;
109
+ const ChatContainer = styled.div`
110
+ width: 100%;
111
+ height: 350px;
112
+ border: 1px solid black;
113
+ display: flex;
114
+ flex-direction: column;
115
+ overflow-y: auto;
116
+ margin: auto;
117
+ padding-bottom: 10px;
118
+ `;
119
+ const UserButtonContainer = styled.div`
120
+ display: flex;
121
+ justify-content: center;
122
+ gap: 5%;
123
+ `;
124
+
125
+ const LabelContainer = styled.div`
126
+ display: flex;
127
+ justify-content: center;
128
+ `;
129
+
130
+ export default Chat;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+
3
+ import Chat from './Chat';
4
+
5
+ export default {
6
+ title: 'Agora/Chat/Item',
7
+ component: Chat,
8
+ };
9
+
10
+ export const Default = (args) => <Chat {...args} />