├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── Screenshots └── overview_cometchat_screens.png ├── package.json ├── public ├── favicon.ico ├── favicon.png ├── faviconR.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── AppConstants.ts ├── IsMobileViewContext.ts ├── assets │ ├── Image-518@1x.png │ ├── Schedule.svg │ ├── add-members.svg │ ├── audio-bubble.svg │ ├── avatar.png │ ├── badge.png │ ├── ban-members.svg │ ├── call-log-history.svg │ ├── call-log-participants.svg │ ├── call-log-recordings.svg │ ├── call-logs.svg │ ├── captainamerica_avatar.png │ ├── card-bubble.svg │ ├── cometchat_logo.png │ ├── composer.png │ ├── contacts.svg │ ├── conversation.png │ ├── create-group.svg │ ├── cyclops_avatar.png │ ├── details.svg │ ├── file-bubble.svg │ ├── form-bubble.svg │ ├── group-member.svg │ ├── image-bubble.svg │ ├── info.svg │ ├── ironman_avatar.png │ ├── list.png │ ├── listwrapper.png │ ├── loading_icon.gif │ ├── localize.png │ ├── password-group.svg │ ├── power-off.png │ ├── receipt.png │ ├── right-arrow.png │ ├── sample.mp3 │ ├── sidebar.png │ ├── sound-small.png │ ├── spiderman_avatar.png │ ├── status.png │ ├── switch-mode.png │ ├── text-bubble.svg │ ├── theme.png │ ├── transfer-ownership-icon.svg │ ├── video-bubble.svg │ └── wolverine_avatar.png ├── components │ ├── AddMembersWrapper │ │ └── index.tsx │ ├── App │ │ ├── effects.ts │ │ ├── index.tsx │ │ └── style.ts │ ├── BannedMembersWrapper │ │ └── index.tsx │ ├── Button │ │ ├── effects.ts │ │ └── index.tsx │ ├── CallButtonsWrapper │ │ ├── index.tsx │ │ └── style.ts │ ├── CallLogDetailsWrapper │ │ └── index.tsx │ ├── CallLogHistoryWrapper │ │ └── index.tsx │ ├── CallLogParticipantsWrapper │ │ └── index.tsx │ ├── CallLogRecordingsWrapper │ │ └── index.tsx │ ├── CallLogsWithDetailsWrapper │ │ └── index.tsx │ ├── CallLogsWrapper │ │ └── index.tsx │ ├── CallsCardList │ │ └── index.tsx │ ├── Card │ │ ├── index.tsx │ │ └── style.ts │ ├── CardList │ │ ├── Shared │ │ │ ├── Bubbles │ │ │ │ ├── AudioBubble │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── sample.mp3 │ │ │ │ ├── Avatar │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.ts │ │ │ │ ├── Badge │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.ts │ │ │ │ ├── CardBubble │ │ │ │ │ └── index.tsx │ │ │ │ ├── FileBubble │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── sample.pdf │ │ │ │ ├── FormBubble │ │ │ │ │ └── index.tsx │ │ │ │ ├── ImageBubble │ │ │ │ │ ├── astro.png │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── sample.jpeg │ │ │ │ │ └── style.ts │ │ │ │ ├── ListItem │ │ │ │ │ └── index.tsx │ │ │ │ ├── Localize │ │ │ │ │ └── index.tsx │ │ │ │ ├── Receipt │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.ts │ │ │ │ ├── SchedulerBubble │ │ │ │ │ └── index.tsx │ │ │ │ ├── SoundManager │ │ │ │ │ └── index.tsx │ │ │ │ ├── StatusIndicator │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.ts │ │ │ │ ├── TextBubble │ │ │ │ │ └── index.tsx │ │ │ │ ├── Theme │ │ │ │ │ └── index.tsx │ │ │ │ ├── VideoBubble │ │ │ │ │ ├── aurora.mp4 │ │ │ │ │ └── index.tsx │ │ │ │ └── assets │ │ │ │ │ ├── File Bubble.pdf │ │ │ │ │ ├── button-opc.png │ │ │ │ │ ├── close2x.png │ │ │ │ │ ├── sample.jpeg │ │ │ │ │ └── sampleVideo.mp4 │ │ │ ├── index.tsx │ │ │ └── style.ts │ │ └── index.tsx │ ├── ChatsCardList │ │ └── index.tsx │ ├── ComposerWrapper │ │ └── index.tsx │ ├── ContactsWrapper │ │ └── index.tsx │ ├── ConversationsWithMessagesWrapper │ │ └── index.tsx │ ├── CreateGroupWrapper │ │ ├── index.tsx │ │ └── style.ts │ ├── GroupDetails │ │ └── index.tsx │ ├── GroupMembersWrapper │ │ └── index.tsx │ ├── GroupsCardList │ │ └── index.tsx │ ├── Home │ │ ├── index.tsx │ │ └── style.ts │ ├── JoinGroupWrapper │ │ ├── index.tsx │ │ └── style.ts │ ├── Login │ │ ├── index.tsx │ │ └── style.ts │ ├── LoginSignup │ │ ├── index.tsx │ │ └── style.ts │ ├── MessageHeaderWrapper │ │ └── index.tsx │ ├── MessageInformationWrapper │ │ └── index.tsx │ ├── MessageListWrapper │ │ └── index.tsx │ ├── MessagesCardList │ │ └── index.tsx │ ├── MessagesWrapper │ │ └── index.tsx │ ├── ResourcesCardList │ │ └── index.tsx │ ├── SharedCardList │ │ └── index.tsx │ ├── Signup │ │ ├── index.tsx │ │ └── style.ts │ ├── TextInput │ │ ├── index.tsx │ │ └── style.ts │ ├── TransferOwnershipWrapper │ │ └── index.tsx │ ├── UserDetails │ │ └── index.tsx │ ├── UsersCardList │ │ └── index.tsx │ └── ViewsCardList │ │ └── index.tsx ├── custom-hooks.ts ├── index.css ├── index.tsx ├── metaInfo.ts ├── react-app-env.d.ts └── sampleApp │ └── sampledata.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Screenshots/overview_cometchat_screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/Screenshots/overview_cometchat_screens.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/faviconR.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/faviconR.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/AppConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/AppConstants.ts -------------------------------------------------------------------------------- /src/IsMobileViewContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/IsMobileViewContext.ts -------------------------------------------------------------------------------- /src/assets/Image-518@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/Image-518@1x.png -------------------------------------------------------------------------------- /src/assets/Schedule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/Schedule.svg -------------------------------------------------------------------------------- /src/assets/add-members.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/add-members.svg -------------------------------------------------------------------------------- /src/assets/audio-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/audio-bubble.svg -------------------------------------------------------------------------------- /src/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/avatar.png -------------------------------------------------------------------------------- /src/assets/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/badge.png -------------------------------------------------------------------------------- /src/assets/ban-members.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/ban-members.svg -------------------------------------------------------------------------------- /src/assets/call-log-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/call-log-history.svg -------------------------------------------------------------------------------- /src/assets/call-log-participants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/call-log-participants.svg -------------------------------------------------------------------------------- /src/assets/call-log-recordings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/call-log-recordings.svg -------------------------------------------------------------------------------- /src/assets/call-logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/call-logs.svg -------------------------------------------------------------------------------- /src/assets/captainamerica_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/captainamerica_avatar.png -------------------------------------------------------------------------------- /src/assets/card-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/card-bubble.svg -------------------------------------------------------------------------------- /src/assets/cometchat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/cometchat_logo.png -------------------------------------------------------------------------------- /src/assets/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/composer.png -------------------------------------------------------------------------------- /src/assets/contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/contacts.svg -------------------------------------------------------------------------------- /src/assets/conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/conversation.png -------------------------------------------------------------------------------- /src/assets/create-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/create-group.svg -------------------------------------------------------------------------------- /src/assets/cyclops_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/cyclops_avatar.png -------------------------------------------------------------------------------- /src/assets/details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/details.svg -------------------------------------------------------------------------------- /src/assets/file-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/file-bubble.svg -------------------------------------------------------------------------------- /src/assets/form-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/form-bubble.svg -------------------------------------------------------------------------------- /src/assets/group-member.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/group-member.svg -------------------------------------------------------------------------------- /src/assets/image-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/image-bubble.svg -------------------------------------------------------------------------------- /src/assets/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/info.svg -------------------------------------------------------------------------------- /src/assets/ironman_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/ironman_avatar.png -------------------------------------------------------------------------------- /src/assets/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/list.png -------------------------------------------------------------------------------- /src/assets/listwrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/listwrapper.png -------------------------------------------------------------------------------- /src/assets/loading_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/loading_icon.gif -------------------------------------------------------------------------------- /src/assets/localize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/localize.png -------------------------------------------------------------------------------- /src/assets/password-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/password-group.svg -------------------------------------------------------------------------------- /src/assets/power-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/power-off.png -------------------------------------------------------------------------------- /src/assets/receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/receipt.png -------------------------------------------------------------------------------- /src/assets/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/right-arrow.png -------------------------------------------------------------------------------- /src/assets/sample.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/sample.mp3 -------------------------------------------------------------------------------- /src/assets/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/sidebar.png -------------------------------------------------------------------------------- /src/assets/sound-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/sound-small.png -------------------------------------------------------------------------------- /src/assets/spiderman_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/spiderman_avatar.png -------------------------------------------------------------------------------- /src/assets/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/status.png -------------------------------------------------------------------------------- /src/assets/switch-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/switch-mode.png -------------------------------------------------------------------------------- /src/assets/text-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/text-bubble.svg -------------------------------------------------------------------------------- /src/assets/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/theme.png -------------------------------------------------------------------------------- /src/assets/transfer-ownership-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/transfer-ownership-icon.svg -------------------------------------------------------------------------------- /src/assets/video-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/video-bubble.svg -------------------------------------------------------------------------------- /src/assets/wolverine_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/assets/wolverine_avatar.png -------------------------------------------------------------------------------- /src/components/AddMembersWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/AddMembersWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/App/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/App/effects.ts -------------------------------------------------------------------------------- /src/components/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/App/index.tsx -------------------------------------------------------------------------------- /src/components/App/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/App/style.ts -------------------------------------------------------------------------------- /src/components/BannedMembersWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/BannedMembersWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/Button/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Button/effects.ts -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/CallButtonsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallButtonsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallButtonsWrapper/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallButtonsWrapper/style.ts -------------------------------------------------------------------------------- /src/components/CallLogDetailsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallLogDetailsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallLogHistoryWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallLogHistoryWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallLogParticipantsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallLogParticipantsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallLogRecordingsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallLogRecordingsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallLogsWithDetailsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallLogsWithDetailsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallLogsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallLogsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CallsCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CallsCardList/index.tsx -------------------------------------------------------------------------------- /src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Card/index.tsx -------------------------------------------------------------------------------- /src/components/Card/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Card/style.ts -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/AudioBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/AudioBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/AudioBubble/sample.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/AudioBubble/sample.mp3 -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Avatar/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Avatar/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Avatar/style.ts -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Badge/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Badge/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Badge/style.ts -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/CardBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/CardBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/FileBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/FileBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/FileBubble/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/FileBubble/sample.pdf -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/FormBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/FormBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/ImageBubble/astro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/ImageBubble/astro.png -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/ImageBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/ImageBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/ImageBubble/sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/ImageBubble/sample.jpeg -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/ImageBubble/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/ImageBubble/style.ts -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/ListItem/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Localize/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Localize/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Receipt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Receipt/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Receipt/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Receipt/style.ts -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/SchedulerBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/SchedulerBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/SoundManager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/SoundManager/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/StatusIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/StatusIndicator/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/StatusIndicator/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/StatusIndicator/style.ts -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/TextBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/TextBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/Theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/Theme/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/VideoBubble/aurora.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/VideoBubble/aurora.mp4 -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/VideoBubble/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/VideoBubble/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/assets/File Bubble.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/assets/File Bubble.pdf -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/assets/button-opc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/assets/button-opc.png -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/assets/close2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/assets/close2x.png -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/assets/sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/assets/sample.jpeg -------------------------------------------------------------------------------- /src/components/CardList/Shared/Bubbles/assets/sampleVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/Bubbles/assets/sampleVideo.mp4 -------------------------------------------------------------------------------- /src/components/CardList/Shared/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/index.tsx -------------------------------------------------------------------------------- /src/components/CardList/Shared/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/Shared/style.ts -------------------------------------------------------------------------------- /src/components/CardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CardList/index.tsx -------------------------------------------------------------------------------- /src/components/ChatsCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/ChatsCardList/index.tsx -------------------------------------------------------------------------------- /src/components/ComposerWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/ComposerWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/ContactsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/ContactsWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/ConversationsWithMessagesWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/ConversationsWithMessagesWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CreateGroupWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CreateGroupWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/CreateGroupWrapper/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/CreateGroupWrapper/style.ts -------------------------------------------------------------------------------- /src/components/GroupDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/GroupDetails/index.tsx -------------------------------------------------------------------------------- /src/components/GroupMembersWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/GroupMembersWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/GroupsCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/GroupsCardList/index.tsx -------------------------------------------------------------------------------- /src/components/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Home/index.tsx -------------------------------------------------------------------------------- /src/components/Home/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Home/style.ts -------------------------------------------------------------------------------- /src/components/JoinGroupWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/JoinGroupWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/JoinGroupWrapper/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/JoinGroupWrapper/style.ts -------------------------------------------------------------------------------- /src/components/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Login/index.tsx -------------------------------------------------------------------------------- /src/components/Login/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Login/style.ts -------------------------------------------------------------------------------- /src/components/LoginSignup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/LoginSignup/index.tsx -------------------------------------------------------------------------------- /src/components/LoginSignup/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/LoginSignup/style.ts -------------------------------------------------------------------------------- /src/components/MessageHeaderWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/MessageHeaderWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/MessageInformationWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/MessageInformationWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/MessageListWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/MessageListWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/MessagesCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/MessagesCardList/index.tsx -------------------------------------------------------------------------------- /src/components/MessagesWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/MessagesWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/ResourcesCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/ResourcesCardList/index.tsx -------------------------------------------------------------------------------- /src/components/SharedCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/SharedCardList/index.tsx -------------------------------------------------------------------------------- /src/components/Signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Signup/index.tsx -------------------------------------------------------------------------------- /src/components/Signup/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/Signup/style.ts -------------------------------------------------------------------------------- /src/components/TextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/TextInput/index.tsx -------------------------------------------------------------------------------- /src/components/TextInput/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/TextInput/style.ts -------------------------------------------------------------------------------- /src/components/TransferOwnershipWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/TransferOwnershipWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/UserDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/UserDetails/index.tsx -------------------------------------------------------------------------------- /src/components/UsersCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/UsersCardList/index.tsx -------------------------------------------------------------------------------- /src/components/ViewsCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/components/ViewsCardList/index.tsx -------------------------------------------------------------------------------- /src/custom-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/custom-hooks.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/metaInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/metaInfo.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/sampleApp/sampledata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/src/sampleApp/sampledata.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/react-chat-app/HEAD/tsconfig.json --------------------------------------------------------------------------------