├── .github └── workflows │ ├── nightly-build-dev2.yml │ ├── release-please.yml │ └── test.yaml ├── .gitignore ├── .husky └── pre-commit ├── .oxlintrc.json ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── crowdin.yml ├── custom_tfjs ├── custom_tfjs.js └── custom_tfjs_core.js ├── custom_tfjs_config.json ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── assets │ ├── Icons │ │ ├── AngleDown.jsx │ │ ├── ArrowRight.jsx │ │ ├── ArrowUp.jsx │ │ ├── BlockedIcon.jsx │ │ ├── BreakoutRoomIconSVG.jsx │ │ ├── Camera.jsx │ │ ├── CameraOff.jsx │ │ ├── ChatHistoryIconSVG.jsx │ │ ├── ChatIconSVG.jsx │ │ ├── CheckMarkIcon.jsx │ │ ├── CheckMarkIconSVG.jsx │ │ ├── CloseIconSVG.jsx │ │ ├── DownloadIconSVG.jsx │ │ ├── DropdownIconSVG.jsx │ │ ├── EndMeetingIconSVG.jsx │ │ ├── ExternalPlayerIconSVG.jsx │ │ ├── FileIconSVG.jsx │ │ ├── FooterMenuIconSVG.jsx │ │ ├── HandsIconSVG.jsx │ │ ├── HeaderMenuIcon.jsx │ │ ├── LinksIconSVG.jsx │ │ ├── Loading.jsx │ │ ├── LoadingIconSVG.jsx │ │ ├── Microphone.jsx │ │ ├── MicrophoneOff.jsx │ │ ├── MoonIcon.jsx │ │ ├── NotifyIconSVG.jsx │ │ ├── ParticipantsIconSVG.jsx │ │ ├── ParticipantsMenuIconSVG.jsx │ │ ├── PlayerIconSVG.jsx │ │ ├── PlusCircleIconSVG.jsx │ │ ├── PlusIcon.jsx │ │ ├── PollsIconSVG.jsx │ │ ├── PopupCloseSVGIcon.jsx │ │ ├── RTMPIconSVG.jsx │ │ ├── RepeatIconSVG.jsx │ │ ├── RoomLockIconSVG.jsx │ │ ├── ScrollToBottom.jsx │ │ ├── SearchIconSVG.jsx │ │ ├── SelectedIcon.jsx │ │ ├── ShareScreenIconSVG.jsx │ │ ├── SharedNotepadIconSVG.jsx │ │ ├── SpeechIconSVG.jsx │ │ ├── SunIcon.jsx │ │ ├── TrashIconSVG.jsx │ │ ├── TrashSVG.jsx │ │ ├── UploadIconSVG.jsx │ │ ├── Volume.jsx │ │ ├── VolumeHeader.jsx │ │ ├── VolumeMutedSVG.jsx │ │ └── WhiteBoardIconSVG.jsx │ ├── audio │ │ └── notification.mp3 │ ├── backgrounds │ │ ├── andrew-ridley-jR4Zf-riEjI-unsplash.jpg │ │ ├── annie-spratt-OWq8w3BYMFY-unsplash.jpg │ │ ├── dmytro-tolokonov-Jq3WI9IQgEs-unsplash.jpg │ │ ├── evelyn-bertrand-GrIf347OtnY-unsplash.jpg │ │ ├── jonny-caspari-KuudDjBHIlA-unsplash.jpg │ │ ├── kenny-eliason-Wp7t4cWN-68-unsplash.jpg │ │ ├── roman-bozhko-PypjzKTUqLo-unsplash.jpg │ │ ├── steve-richey-6xqAK6oAeHA-unsplash.jpg │ │ └── vinicius-amnx-amano-17NCG_wOkMY-unsplash.jpg │ ├── config_sample.js │ ├── fonts │ │ ├── InterVariable-Italic.woff2 │ │ ├── InterVariable.woff2 │ │ ├── plugnmeet.ttf │ │ └── plugnmeet.woff │ ├── imgs │ │ ├── app-banner.jpg │ │ ├── avatar.jpg │ │ ├── favicon.ico │ │ ├── header-before.png │ │ ├── header-before2.png │ │ └── main-logo.png │ ├── locales │ │ ├── ar-SA │ │ │ └── translation.json │ │ ├── bn-BD │ │ │ └── translation.json │ │ ├── cs-CZ │ │ │ └── translation.json │ │ ├── da-DK │ │ │ └── translation.json │ │ ├── de-DE │ │ │ └── translation.json │ │ ├── el-GR │ │ │ └── translation.json │ │ ├── en │ │ │ └── translation.json │ │ ├── es-ES │ │ │ └── translation.json │ │ ├── et-EE │ │ │ └── translation.json │ │ ├── fa-IR │ │ │ └── translation.json │ │ ├── fi-FI │ │ │ └── translation.json │ │ ├── fr-FR │ │ │ └── translation.json │ │ ├── he-IL │ │ │ └── translation.json │ │ ├── hr-HR │ │ │ └── translation.json │ │ ├── hu-HU │ │ │ └── translation.json │ │ ├── id-ID │ │ │ └── translation.json │ │ ├── it-IT │ │ │ └── translation.json │ │ ├── ja-JP │ │ │ └── translation.json │ │ ├── ko-KR │ │ │ └── translation.json │ │ ├── lv-LV │ │ │ └── translation.json │ │ ├── nl-NL │ │ │ └── translation.json │ │ ├── no-NO │ │ │ └── translation.json │ │ ├── pl-PL │ │ │ └── translation.json │ │ ├── pt-PT │ │ │ └── translation.json │ │ ├── ro-RO │ │ │ └── translation.json │ │ ├── ru-RU │ │ │ └── translation.json │ │ ├── sv-SE │ │ │ └── translation.json │ │ ├── tr-TR │ │ │ └── translation.json │ │ ├── uk-UA │ │ │ └── translation.json │ │ ├── vi-VN │ │ │ └── translation.json │ │ ├── zh-CN │ │ │ └── translation.json │ │ └── zh-TW │ │ │ └── translation.json │ ├── lti │ │ ├── css │ │ │ └── style.css │ │ ├── js │ │ │ └── v1.js │ │ └── v1.html │ ├── models │ │ └── segm_lite_v681.tflite │ └── tflite │ │ ├── tflite-simd.js │ │ ├── tflite-simd.wasm │ │ ├── tflite.js │ │ └── tflite.wasm ├── components │ ├── active-speakers │ │ ├── index.tsx │ │ └── speaker.tsx │ ├── app │ │ ├── audioNotification.tsx │ │ ├── dummyAudio.tsx │ │ ├── helper.ts │ │ └── index.tsx │ ├── breakout-room │ │ ├── breakoutRoomInvitation.tsx │ │ ├── form │ │ │ ├── index.tsx │ │ │ ├── roomBox.tsx │ │ │ ├── roomNumberSelector.tsx │ │ │ ├── types.tsx │ │ │ └── userBox.tsx │ │ ├── index.tsx │ │ └── manage-active-rooms │ │ │ ├── broadcastMessageForm.tsx │ │ │ ├── index.tsx │ │ │ ├── room │ │ │ ├── duration.tsx │ │ │ ├── endBtn.tsx │ │ │ ├── extendDuration.tsx │ │ │ ├── index.tsx │ │ │ ├── joinBtn.tsx │ │ │ └── users.tsx │ │ │ └── roomLists.tsx │ ├── chat │ │ ├── chatTabs.tsx │ │ ├── index.tsx │ │ ├── messages │ │ │ ├── index.tsx │ │ │ └── message │ │ │ │ ├── avatar.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── messageTypes.tsx │ │ ├── text-box │ │ │ ├── fileSend.tsx │ │ │ ├── index.tsx │ │ │ └── useAutosizeTextArea.tsx │ │ └── utils.ts │ ├── display-external-link │ │ ├── index.tsx │ │ └── modal │ │ │ ├── index.tsx │ │ │ ├── savedLinkItem.tsx │ │ │ └── savedLinks.tsx │ ├── external-media-player │ │ ├── index.tsx │ │ ├── modal │ │ │ ├── UploadFile.tsx │ │ │ ├── UploadedFileList.tsx │ │ │ ├── directLink.tsx │ │ │ ├── index.tsx │ │ │ └── upload.tsx │ │ └── reactPlayerComponent.tsx │ ├── extra-pages │ │ ├── Error.tsx │ │ ├── InsertE2EEKey.tsx │ │ ├── Loading.tsx │ │ └── style.css │ ├── footer │ │ ├── icons │ │ │ ├── chat.tsx │ │ │ ├── endMeeting.tsx │ │ │ ├── menus.tsx │ │ │ ├── menus │ │ │ │ ├── adminMenus.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── useDisplayExternalLink.ts │ │ │ │ │ ├── useExternalMediaPlayer.ts │ │ │ │ │ ├── useMuteAll.ts │ │ │ │ │ ├── usePolls.ts │ │ │ │ │ └── useSharedNotepad.ts │ │ │ │ ├── iconsInMenu.tsx │ │ │ │ └── menuItem.tsx │ │ │ ├── mic-menu │ │ │ │ ├── index.tsx │ │ │ │ └── items.tsx │ │ │ ├── microphone.tsx │ │ │ ├── participant.tsx │ │ │ ├── polls.tsx │ │ │ ├── raisehand.tsx │ │ │ ├── recording.tsx │ │ │ ├── recording │ │ │ │ ├── IRecording.ts │ │ │ │ ├── recordingModal.tsx │ │ │ │ ├── useCloudRecording.tsx │ │ │ │ └── useLocalRecording.tsx │ │ │ ├── screenshare.tsx │ │ │ ├── sharedNotePad.tsx │ │ │ ├── translation.tsx │ │ │ ├── webcam.tsx │ │ │ ├── webcam │ │ │ │ ├── menu │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── items.tsx │ │ │ │ ├── useVirtualBackground.ts │ │ │ │ └── useWebcamPublisher.ts │ │ │ └── whiteboard.tsx │ │ ├── index.tsx │ │ └── modals │ │ │ ├── lockSettingsModal.tsx │ │ │ ├── microphoneModal.tsx │ │ │ ├── rtmpModal.tsx │ │ │ └── webcam │ │ │ ├── backgroundItems.tsx │ │ │ ├── index.tsx │ │ │ ├── previewWebcam.tsx │ │ │ └── videoBox.tsx │ ├── header │ │ ├── darkThemeSwitcher.tsx │ │ ├── durationView.tsx │ │ ├── headerLogo.tsx │ │ ├── index.tsx │ │ ├── keyboardShortcuts.tsx │ │ ├── menus.tsx │ │ ├── room-settings │ │ │ ├── application.tsx │ │ │ ├── dataSavings.tsx │ │ │ ├── index.tsx │ │ │ ├── ingress.tsx │ │ │ └── notification.tsx │ │ ├── user-notifications │ │ │ ├── genericNotification.tsx │ │ │ ├── index.tsx │ │ │ ├── newBreakoutRoom.tsx │ │ │ └── newPoll.tsx │ │ └── volumeControl.tsx │ ├── landing │ │ ├── hooks │ │ │ └── useMediaDevices.ts │ │ ├── index.tsx │ │ ├── microphone.tsx │ │ ├── webcam.tsx │ │ └── webcamPreview.tsx │ ├── main-area │ │ ├── hooks │ │ │ ├── useCloseSidePanelsOnShow.ts │ │ │ ├── useDisplayExternalLink.tsx │ │ │ ├── useExternalMediaPlayer.tsx │ │ │ ├── useMainAreaCustomCSS.ts │ │ │ ├── useMainAreaState.ts │ │ │ ├── useScreenShareElements.tsx │ │ │ ├── useSharedNotepad.tsx │ │ │ ├── useSpeechToTextService.tsx │ │ │ ├── useVideoLayout.ts │ │ │ ├── useVideosComponent.tsx │ │ │ └── useWhiteboard.tsx │ │ ├── index.tsx │ │ ├── layoutWrapper.tsx │ │ ├── mainView.tsx │ │ └── sidePanel.tsx │ ├── media-elements │ │ ├── audios │ │ │ ├── audio.tsx │ │ │ └── index.tsx │ │ ├── screenshare │ │ │ ├── audioElm.tsx │ │ │ ├── index.tsx │ │ │ ├── style.css │ │ │ └── videoElm.tsx │ │ └── videos │ │ │ ├── helpers │ │ │ ├── useDeviceInfo.ts │ │ │ └── utils.tsx │ │ │ ├── index.tsx │ │ │ ├── layouts │ │ │ ├── defaultLayout.tsx │ │ │ ├── pinnedLayout.tsx │ │ │ └── verticalLayout.tsx │ │ │ ├── video │ │ │ ├── connectionStatus.tsx │ │ │ ├── index.tsx │ │ │ ├── micStatus.tsx │ │ │ ├── participant.tsx │ │ │ ├── pinWebcam.tsx │ │ │ ├── raisedHand.tsx │ │ │ ├── style.css │ │ │ └── videoElm.tsx │ │ │ ├── videoLayout.tsx │ │ │ └── videoParticipant.tsx │ ├── participants │ │ ├── index.tsx │ │ ├── participant │ │ │ ├── avatar.tsx │ │ │ ├── icons │ │ │ │ ├── iconWrapper.tsx │ │ │ │ ├── menu-items │ │ │ │ │ ├── lock.tsx │ │ │ │ │ ├── lowerHand.tsx │ │ │ │ │ ├── mic.tsx │ │ │ │ │ ├── privateChat.tsx │ │ │ │ │ ├── removeUser.tsx │ │ │ │ │ ├── switchPresenter.tsx │ │ │ │ │ └── webcam.tsx │ │ │ │ ├── menu.tsx │ │ │ │ ├── mic.tsx │ │ │ │ ├── presenterIcon.tsx │ │ │ │ ├── raiseHand.tsx │ │ │ │ ├── screenShare.tsx │ │ │ │ ├── visibility.tsx │ │ │ │ └── webcam.tsx │ │ │ ├── index.tsx │ │ │ ├── name.tsx │ │ │ └── waitingApproval.tsx │ │ └── removeParticipantAlertModal.tsx │ ├── polls │ │ ├── create │ │ │ ├── formView.tsx │ │ │ ├── index.tsx │ │ │ └── optionsView.tsx │ │ ├── hooks │ │ │ └── useEndPoll.ts │ │ ├── index.tsx │ │ ├── pollItem │ │ │ ├── details │ │ │ │ ├── endPollBtn.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── notRespondents.tsx │ │ │ │ ├── publishResultBtn.tsx │ │ │ │ └── respondents.tsx │ │ │ ├── index.tsx │ │ │ ├── pollActionsMenu.tsx │ │ │ └── voteForm.tsx │ │ ├── pollsList.tsx │ │ └── utils.tsx │ ├── shared-notepad │ │ ├── index.tsx │ │ └── useNotepadUrl.ts │ ├── speech-to-text-service │ │ ├── displays │ │ │ ├── history │ │ │ │ ├── index.tsx │ │ │ │ ├── interimTextDisplay.tsx │ │ │ │ └── subtitleHistoryPanel.tsx │ │ │ └── liveSubtitle.tsx │ │ ├── helpers │ │ │ ├── apiConnections.ts │ │ │ ├── azureSpeechService.ts │ │ │ ├── modalUtils.ts │ │ │ └── supportedLangs.ts │ │ ├── index.tsx │ │ ├── speech-settings-modal │ │ │ ├── index.tsx │ │ │ ├── micSelector.tsx │ │ │ ├── speechInputSettings.tsx │ │ │ ├── subtitleFontSizeSlider.tsx │ │ │ └── subtitleLangSelector.tsx │ │ └── transcription-settings-modal │ │ │ ├── defaultSubtitleLangSelector.tsx │ │ │ ├── index.tsx │ │ │ ├── speechLangsSelector.tsx │ │ │ ├── speechUsersSelector.tsx │ │ │ └── transLangsSelector.tsx │ ├── virtual-background │ │ ├── README.md │ │ ├── helpers │ │ │ ├── backgroundHelper.ts │ │ │ ├── postProcessingHelper.ts │ │ │ ├── renderingPipelineHelper.ts │ │ │ ├── segmentationHelper.ts │ │ │ ├── sourceHelper.ts │ │ │ ├── timerHelper.ts │ │ │ └── utils.ts │ │ ├── hooks │ │ │ ├── useRenderingPipeline.ts │ │ │ └── useTFLite.ts │ │ ├── outputViewer.tsx │ │ ├── pipelines │ │ │ ├── canvas2d │ │ │ │ └── canvas2dPipeline.ts │ │ │ ├── helpers │ │ │ │ └── webglHelper.ts │ │ │ └── webgl2 │ │ │ │ ├── backgroundBlurStage.ts │ │ │ │ ├── backgroundImageStage.ts │ │ │ │ ├── jointBilateralFilterStage.ts │ │ │ │ ├── loadSegmentationStage.ts │ │ │ │ ├── resizingStage.ts │ │ │ │ ├── softmaxStage.ts │ │ │ │ └── webgl2Pipeline.ts │ │ └── virtualBackground.tsx │ ├── waiting-room │ │ ├── bulkAction.tsx │ │ ├── index.tsx │ │ ├── participantsList.tsx │ │ ├── updateRoomMessage.tsx │ │ └── waitingParticipantItem.tsx │ └── whiteboard │ │ ├── README.md │ │ ├── footerUI.tsx │ │ ├── helpers │ │ ├── handleFiles.ts │ │ ├── handleRequests.ts │ │ ├── hooks │ │ │ ├── useOfficePageSyncer.ts │ │ │ ├── usePrevious.ts │ │ │ ├── useWhiteboardAppStateSync.ts │ │ │ ├── useWhiteboardDataSharer.ts │ │ │ └── useWhiteboardSetup.ts │ │ └── utils.ts │ │ ├── index.tsx │ │ ├── manage-office-files │ │ ├── fileUploadProgress.tsx │ │ ├── index.tsx │ │ └── uploadedFilesList.tsx │ │ └── style.css ├── helpers │ ├── api │ │ └── plugNmeetAPI.ts │ ├── fileUpload.ts │ ├── hooks │ │ ├── useClientCustomization.tsx │ │ ├── useKeyboardShortcuts.tsx │ │ ├── useLogo.tsx │ │ ├── useResumableFilesUpload.tsx │ │ ├── useRoomDurationCountdown.ts │ │ ├── useStorePreviousInt.tsx │ │ ├── useThemeSettings.tsx │ │ ├── useWatchVisibilityChange.tsx │ │ └── useWatchWindowSize.tsx │ ├── i18n.ts │ ├── languages.ts │ ├── libs │ │ ├── AudioActivityManager.ts │ │ ├── cross-origin-worker.ts │ │ ├── cryptoMessages.ts │ │ └── idb.ts │ ├── livekit │ │ ├── ConnectLivekit.ts │ │ ├── HandleMediaTracks.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── nats │ │ ├── ConnectNats.ts │ │ ├── HandleChat.ts │ │ ├── HandleDataMessage.ts │ │ ├── HandleParticipants.ts │ │ ├── HandleRoomData.ts │ │ ├── HandleSystemData.tsx │ │ ├── HandleWhiteboard.ts │ │ ├── MessageQueue.ts │ │ └── index.ts │ ├── ui │ │ ├── actionButton.tsx │ │ ├── checkbox.tsx │ │ ├── confirmationModal.tsx │ │ ├── dropdown.tsx │ │ ├── formattedInputField.tsx │ │ ├── modal.tsx │ │ ├── radioOptions.tsx │ │ ├── rangeSlider.tsx │ │ ├── settingsSwitch.tsx │ │ └── tabs.tsx │ └── utils.ts ├── index.html ├── index.tsx ├── login.html ├── store │ ├── index.ts │ ├── services │ │ ├── breakoutRoomApi.ts │ │ ├── pollsApi.ts │ │ └── utils.ts │ ├── slices │ │ ├── activeSpeakersSlice.ts │ │ ├── bottomIconsActivitySlice.ts │ │ ├── breakoutRoomSlice.ts │ │ ├── chatMessagesSlice.ts │ │ ├── externalMediaPlayer.ts │ │ ├── interfaces │ │ │ ├── activeSpeakers.ts │ │ │ ├── bottomIcons.ts │ │ │ ├── breakoutRoom.ts │ │ │ ├── participant.ts │ │ │ ├── roomSettings.ts │ │ │ ├── session.ts │ │ │ ├── speechServices.ts │ │ │ └── whiteboard.ts │ │ ├── participantSlice.ts │ │ ├── roomSettingsSlice.ts │ │ ├── sessionSlice.ts │ │ ├── speechServicesSlice.ts │ │ └── whiteboard.ts │ └── store.ts └── styles │ ├── common.css │ ├── dark-mode.css │ ├── index.css │ ├── keyframes-animation.css │ ├── media_screens │ ├── h-max-800.css │ ├── max_1023.css │ ├── max_1025.css │ ├── max_1279.css │ ├── max_1640.css │ ├── max_370.css │ ├── max_57.css │ ├── max_640.css │ ├── max_767.css │ ├── max_h_720.css │ ├── max_w_980_max_h_450.css │ ├── min_1024.css │ ├── min_1800.css │ ├── min_641.css │ └── min_641_max_1025.css │ ├── plugnmeet-font.css │ ├── recorder.css │ └── variables.css ├── tsconfig.json └── vite.config.ts /.github/workflows/nightly-build-dev2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/.github/workflows/nightly-build-dev2.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | pnpm exec lint-staged 5 | -------------------------------------------------------------------------------- /.oxlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/.oxlintrc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/crowdin.yml -------------------------------------------------------------------------------- /custom_tfjs/custom_tfjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/custom_tfjs/custom_tfjs.js -------------------------------------------------------------------------------- /custom_tfjs/custom_tfjs_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/custom_tfjs/custom_tfjs_core.js -------------------------------------------------------------------------------- /custom_tfjs_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/custom_tfjs_config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/renovate.json -------------------------------------------------------------------------------- /src/assets/Icons/AngleDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/AngleDown.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ArrowRight.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ArrowRight.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ArrowUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ArrowUp.jsx -------------------------------------------------------------------------------- /src/assets/Icons/BlockedIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/BlockedIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/BreakoutRoomIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/BreakoutRoomIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/Camera.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/Camera.jsx -------------------------------------------------------------------------------- /src/assets/Icons/CameraOff.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/CameraOff.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ChatHistoryIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ChatHistoryIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ChatIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ChatIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/CheckMarkIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/CheckMarkIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/CheckMarkIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/CheckMarkIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/CloseIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/CloseIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/DownloadIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/DownloadIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/DropdownIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/DropdownIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/EndMeetingIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/EndMeetingIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ExternalPlayerIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ExternalPlayerIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/FileIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/FileIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/FooterMenuIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/FooterMenuIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/HandsIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/HandsIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/HeaderMenuIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/HeaderMenuIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/LinksIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/LinksIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/Loading.jsx -------------------------------------------------------------------------------- /src/assets/Icons/LoadingIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/LoadingIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/Microphone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/Microphone.jsx -------------------------------------------------------------------------------- /src/assets/Icons/MicrophoneOff.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/MicrophoneOff.jsx -------------------------------------------------------------------------------- /src/assets/Icons/MoonIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/MoonIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/NotifyIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/NotifyIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ParticipantsIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ParticipantsIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ParticipantsMenuIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ParticipantsMenuIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/PlayerIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/PlayerIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/PlusCircleIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/PlusCircleIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/PlusIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/PlusIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/PollsIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/PollsIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/PopupCloseSVGIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/PopupCloseSVGIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/RTMPIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/RTMPIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/RepeatIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/RepeatIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/RoomLockIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/RoomLockIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ScrollToBottom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ScrollToBottom.jsx -------------------------------------------------------------------------------- /src/assets/Icons/SearchIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/SearchIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/SelectedIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/SelectedIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/ShareScreenIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/ShareScreenIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/SharedNotepadIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/SharedNotepadIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/SpeechIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/SpeechIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/SunIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/SunIcon.jsx -------------------------------------------------------------------------------- /src/assets/Icons/TrashIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/TrashIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/TrashSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/TrashSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/UploadIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/UploadIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/Volume.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/Volume.jsx -------------------------------------------------------------------------------- /src/assets/Icons/VolumeHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/VolumeHeader.jsx -------------------------------------------------------------------------------- /src/assets/Icons/VolumeMutedSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/VolumeMutedSVG.jsx -------------------------------------------------------------------------------- /src/assets/Icons/WhiteBoardIconSVG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/Icons/WhiteBoardIconSVG.jsx -------------------------------------------------------------------------------- /src/assets/audio/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/audio/notification.mp3 -------------------------------------------------------------------------------- /src/assets/backgrounds/andrew-ridley-jR4Zf-riEjI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/andrew-ridley-jR4Zf-riEjI-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/annie-spratt-OWq8w3BYMFY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/annie-spratt-OWq8w3BYMFY-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/dmytro-tolokonov-Jq3WI9IQgEs-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/dmytro-tolokonov-Jq3WI9IQgEs-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/evelyn-bertrand-GrIf347OtnY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/evelyn-bertrand-GrIf347OtnY-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/jonny-caspari-KuudDjBHIlA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/jonny-caspari-KuudDjBHIlA-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/kenny-eliason-Wp7t4cWN-68-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/kenny-eliason-Wp7t4cWN-68-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/roman-bozhko-PypjzKTUqLo-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/roman-bozhko-PypjzKTUqLo-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/steve-richey-6xqAK6oAeHA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/steve-richey-6xqAK6oAeHA-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/vinicius-amnx-amano-17NCG_wOkMY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/backgrounds/vinicius-amnx-amano-17NCG_wOkMY-unsplash.jpg -------------------------------------------------------------------------------- /src/assets/config_sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/config_sample.js -------------------------------------------------------------------------------- /src/assets/fonts/InterVariable-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/fonts/InterVariable-Italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/InterVariable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/fonts/InterVariable.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/plugnmeet.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/fonts/plugnmeet.ttf -------------------------------------------------------------------------------- /src/assets/fonts/plugnmeet.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/fonts/plugnmeet.woff -------------------------------------------------------------------------------- /src/assets/imgs/app-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/imgs/app-banner.jpg -------------------------------------------------------------------------------- /src/assets/imgs/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/imgs/avatar.jpg -------------------------------------------------------------------------------- /src/assets/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/imgs/favicon.ico -------------------------------------------------------------------------------- /src/assets/imgs/header-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/imgs/header-before.png -------------------------------------------------------------------------------- /src/assets/imgs/header-before2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/imgs/header-before2.png -------------------------------------------------------------------------------- /src/assets/imgs/main-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/imgs/main-logo.png -------------------------------------------------------------------------------- /src/assets/locales/ar-SA/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/ar-SA/translation.json -------------------------------------------------------------------------------- /src/assets/locales/bn-BD/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/bn-BD/translation.json -------------------------------------------------------------------------------- /src/assets/locales/cs-CZ/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/cs-CZ/translation.json -------------------------------------------------------------------------------- /src/assets/locales/da-DK/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/da-DK/translation.json -------------------------------------------------------------------------------- /src/assets/locales/de-DE/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/de-DE/translation.json -------------------------------------------------------------------------------- /src/assets/locales/el-GR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/el-GR/translation.json -------------------------------------------------------------------------------- /src/assets/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/en/translation.json -------------------------------------------------------------------------------- /src/assets/locales/es-ES/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/es-ES/translation.json -------------------------------------------------------------------------------- /src/assets/locales/et-EE/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/et-EE/translation.json -------------------------------------------------------------------------------- /src/assets/locales/fa-IR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/fa-IR/translation.json -------------------------------------------------------------------------------- /src/assets/locales/fi-FI/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/fi-FI/translation.json -------------------------------------------------------------------------------- /src/assets/locales/fr-FR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/fr-FR/translation.json -------------------------------------------------------------------------------- /src/assets/locales/he-IL/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/he-IL/translation.json -------------------------------------------------------------------------------- /src/assets/locales/hr-HR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/hr-HR/translation.json -------------------------------------------------------------------------------- /src/assets/locales/hu-HU/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/hu-HU/translation.json -------------------------------------------------------------------------------- /src/assets/locales/id-ID/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/id-ID/translation.json -------------------------------------------------------------------------------- /src/assets/locales/it-IT/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/it-IT/translation.json -------------------------------------------------------------------------------- /src/assets/locales/ja-JP/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/ja-JP/translation.json -------------------------------------------------------------------------------- /src/assets/locales/ko-KR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/ko-KR/translation.json -------------------------------------------------------------------------------- /src/assets/locales/lv-LV/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/lv-LV/translation.json -------------------------------------------------------------------------------- /src/assets/locales/nl-NL/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/nl-NL/translation.json -------------------------------------------------------------------------------- /src/assets/locales/no-NO/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/no-NO/translation.json -------------------------------------------------------------------------------- /src/assets/locales/pl-PL/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/pl-PL/translation.json -------------------------------------------------------------------------------- /src/assets/locales/pt-PT/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/pt-PT/translation.json -------------------------------------------------------------------------------- /src/assets/locales/ro-RO/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/ro-RO/translation.json -------------------------------------------------------------------------------- /src/assets/locales/ru-RU/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/ru-RU/translation.json -------------------------------------------------------------------------------- /src/assets/locales/sv-SE/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/sv-SE/translation.json -------------------------------------------------------------------------------- /src/assets/locales/tr-TR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/tr-TR/translation.json -------------------------------------------------------------------------------- /src/assets/locales/uk-UA/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/uk-UA/translation.json -------------------------------------------------------------------------------- /src/assets/locales/vi-VN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/vi-VN/translation.json -------------------------------------------------------------------------------- /src/assets/locales/zh-CN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/zh-CN/translation.json -------------------------------------------------------------------------------- /src/assets/locales/zh-TW/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/locales/zh-TW/translation.json -------------------------------------------------------------------------------- /src/assets/lti/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/lti/css/style.css -------------------------------------------------------------------------------- /src/assets/lti/js/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/lti/js/v1.js -------------------------------------------------------------------------------- /src/assets/lti/v1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/lti/v1.html -------------------------------------------------------------------------------- /src/assets/models/segm_lite_v681.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/models/segm_lite_v681.tflite -------------------------------------------------------------------------------- /src/assets/tflite/tflite-simd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/tflite/tflite-simd.js -------------------------------------------------------------------------------- /src/assets/tflite/tflite-simd.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/tflite/tflite-simd.wasm -------------------------------------------------------------------------------- /src/assets/tflite/tflite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/tflite/tflite.js -------------------------------------------------------------------------------- /src/assets/tflite/tflite.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/assets/tflite/tflite.wasm -------------------------------------------------------------------------------- /src/components/active-speakers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/active-speakers/index.tsx -------------------------------------------------------------------------------- /src/components/active-speakers/speaker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/active-speakers/speaker.tsx -------------------------------------------------------------------------------- /src/components/app/audioNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/app/audioNotification.tsx -------------------------------------------------------------------------------- /src/components/app/dummyAudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/app/dummyAudio.tsx -------------------------------------------------------------------------------- /src/components/app/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/app/helper.ts -------------------------------------------------------------------------------- /src/components/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/app/index.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/breakoutRoomInvitation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/breakoutRoomInvitation.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/form/index.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/form/roomBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/form/roomBox.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/form/roomNumberSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/form/roomNumberSelector.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/form/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/form/types.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/form/userBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/form/userBox.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/index.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/broadcastMessageForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/broadcastMessageForm.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/index.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/room/duration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/room/duration.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/room/endBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/room/endBtn.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/room/extendDuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/room/extendDuration.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/room/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/room/index.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/room/joinBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/room/joinBtn.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/room/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/room/users.tsx -------------------------------------------------------------------------------- /src/components/breakout-room/manage-active-rooms/roomLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/breakout-room/manage-active-rooms/roomLists.tsx -------------------------------------------------------------------------------- /src/components/chat/chatTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/chatTabs.tsx -------------------------------------------------------------------------------- /src/components/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/index.tsx -------------------------------------------------------------------------------- /src/components/chat/messages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/messages/index.tsx -------------------------------------------------------------------------------- /src/components/chat/messages/message/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/messages/message/avatar.tsx -------------------------------------------------------------------------------- /src/components/chat/messages/message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/messages/message/index.tsx -------------------------------------------------------------------------------- /src/components/chat/messages/message/messageTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/messages/message/messageTypes.tsx -------------------------------------------------------------------------------- /src/components/chat/text-box/fileSend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/text-box/fileSend.tsx -------------------------------------------------------------------------------- /src/components/chat/text-box/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/text-box/index.tsx -------------------------------------------------------------------------------- /src/components/chat/text-box/useAutosizeTextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/text-box/useAutosizeTextArea.tsx -------------------------------------------------------------------------------- /src/components/chat/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/chat/utils.ts -------------------------------------------------------------------------------- /src/components/display-external-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/display-external-link/index.tsx -------------------------------------------------------------------------------- /src/components/display-external-link/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/display-external-link/modal/index.tsx -------------------------------------------------------------------------------- /src/components/display-external-link/modal/savedLinkItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/display-external-link/modal/savedLinkItem.tsx -------------------------------------------------------------------------------- /src/components/display-external-link/modal/savedLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/display-external-link/modal/savedLinks.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/index.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/modal/UploadFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/modal/UploadFile.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/modal/UploadedFileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/modal/UploadedFileList.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/modal/directLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/modal/directLink.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/modal/index.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/modal/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/modal/upload.tsx -------------------------------------------------------------------------------- /src/components/external-media-player/reactPlayerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/external-media-player/reactPlayerComponent.tsx -------------------------------------------------------------------------------- /src/components/extra-pages/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/extra-pages/Error.tsx -------------------------------------------------------------------------------- /src/components/extra-pages/InsertE2EEKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/extra-pages/InsertE2EEKey.tsx -------------------------------------------------------------------------------- /src/components/extra-pages/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/extra-pages/Loading.tsx -------------------------------------------------------------------------------- /src/components/extra-pages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/extra-pages/style.css -------------------------------------------------------------------------------- /src/components/footer/icons/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/chat.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/endMeeting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/endMeeting.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/menus/adminMenus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/adminMenus.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/menus/hooks/useDisplayExternalLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/hooks/useDisplayExternalLink.ts -------------------------------------------------------------------------------- /src/components/footer/icons/menus/hooks/useExternalMediaPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/hooks/useExternalMediaPlayer.ts -------------------------------------------------------------------------------- /src/components/footer/icons/menus/hooks/useMuteAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/hooks/useMuteAll.ts -------------------------------------------------------------------------------- /src/components/footer/icons/menus/hooks/usePolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/hooks/usePolls.ts -------------------------------------------------------------------------------- /src/components/footer/icons/menus/hooks/useSharedNotepad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/hooks/useSharedNotepad.ts -------------------------------------------------------------------------------- /src/components/footer/icons/menus/iconsInMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/iconsInMenu.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/menus/menuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/menus/menuItem.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/mic-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/mic-menu/index.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/mic-menu/items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/mic-menu/items.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/microphone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/microphone.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/participant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/participant.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/polls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/polls.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/raisehand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/raisehand.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/recording.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/recording.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/recording/IRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/recording/IRecording.ts -------------------------------------------------------------------------------- /src/components/footer/icons/recording/recordingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/recording/recordingModal.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/recording/useCloudRecording.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/recording/useCloudRecording.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/recording/useLocalRecording.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/recording/useLocalRecording.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/screenshare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/screenshare.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/sharedNotePad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/sharedNotePad.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/translation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/translation.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/webcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/webcam.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/webcam/menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/webcam/menu/index.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/webcam/menu/items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/webcam/menu/items.tsx -------------------------------------------------------------------------------- /src/components/footer/icons/webcam/useVirtualBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/webcam/useVirtualBackground.ts -------------------------------------------------------------------------------- /src/components/footer/icons/webcam/useWebcamPublisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/webcam/useWebcamPublisher.ts -------------------------------------------------------------------------------- /src/components/footer/icons/whiteboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/icons/whiteboard.tsx -------------------------------------------------------------------------------- /src/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/index.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/lockSettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/lockSettingsModal.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/microphoneModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/microphoneModal.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/rtmpModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/rtmpModal.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/webcam/backgroundItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/webcam/backgroundItems.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/webcam/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/webcam/index.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/webcam/previewWebcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/webcam/previewWebcam.tsx -------------------------------------------------------------------------------- /src/components/footer/modals/webcam/videoBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/footer/modals/webcam/videoBox.tsx -------------------------------------------------------------------------------- /src/components/header/darkThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/darkThemeSwitcher.tsx -------------------------------------------------------------------------------- /src/components/header/durationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/durationView.tsx -------------------------------------------------------------------------------- /src/components/header/headerLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/headerLogo.tsx -------------------------------------------------------------------------------- /src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/index.tsx -------------------------------------------------------------------------------- /src/components/header/keyboardShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/keyboardShortcuts.tsx -------------------------------------------------------------------------------- /src/components/header/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/menus.tsx -------------------------------------------------------------------------------- /src/components/header/room-settings/application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/room-settings/application.tsx -------------------------------------------------------------------------------- /src/components/header/room-settings/dataSavings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/room-settings/dataSavings.tsx -------------------------------------------------------------------------------- /src/components/header/room-settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/room-settings/index.tsx -------------------------------------------------------------------------------- /src/components/header/room-settings/ingress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/room-settings/ingress.tsx -------------------------------------------------------------------------------- /src/components/header/room-settings/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/room-settings/notification.tsx -------------------------------------------------------------------------------- /src/components/header/user-notifications/genericNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/user-notifications/genericNotification.tsx -------------------------------------------------------------------------------- /src/components/header/user-notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/user-notifications/index.tsx -------------------------------------------------------------------------------- /src/components/header/user-notifications/newBreakoutRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/user-notifications/newBreakoutRoom.tsx -------------------------------------------------------------------------------- /src/components/header/user-notifications/newPoll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/user-notifications/newPoll.tsx -------------------------------------------------------------------------------- /src/components/header/volumeControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/header/volumeControl.tsx -------------------------------------------------------------------------------- /src/components/landing/hooks/useMediaDevices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/landing/hooks/useMediaDevices.ts -------------------------------------------------------------------------------- /src/components/landing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/landing/index.tsx -------------------------------------------------------------------------------- /src/components/landing/microphone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/landing/microphone.tsx -------------------------------------------------------------------------------- /src/components/landing/webcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/landing/webcam.tsx -------------------------------------------------------------------------------- /src/components/landing/webcamPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/landing/webcamPreview.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useCloseSidePanelsOnShow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useCloseSidePanelsOnShow.ts -------------------------------------------------------------------------------- /src/components/main-area/hooks/useDisplayExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useDisplayExternalLink.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useExternalMediaPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useExternalMediaPlayer.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useMainAreaCustomCSS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useMainAreaCustomCSS.ts -------------------------------------------------------------------------------- /src/components/main-area/hooks/useMainAreaState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useMainAreaState.ts -------------------------------------------------------------------------------- /src/components/main-area/hooks/useScreenShareElements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useScreenShareElements.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useSharedNotepad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useSharedNotepad.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useSpeechToTextService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useSpeechToTextService.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useVideoLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useVideoLayout.ts -------------------------------------------------------------------------------- /src/components/main-area/hooks/useVideosComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useVideosComponent.tsx -------------------------------------------------------------------------------- /src/components/main-area/hooks/useWhiteboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/hooks/useWhiteboard.tsx -------------------------------------------------------------------------------- /src/components/main-area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/index.tsx -------------------------------------------------------------------------------- /src/components/main-area/layoutWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/layoutWrapper.tsx -------------------------------------------------------------------------------- /src/components/main-area/mainView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/mainView.tsx -------------------------------------------------------------------------------- /src/components/main-area/sidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/main-area/sidePanel.tsx -------------------------------------------------------------------------------- /src/components/media-elements/audios/audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/audios/audio.tsx -------------------------------------------------------------------------------- /src/components/media-elements/audios/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/audios/index.tsx -------------------------------------------------------------------------------- /src/components/media-elements/screenshare/audioElm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/screenshare/audioElm.tsx -------------------------------------------------------------------------------- /src/components/media-elements/screenshare/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/screenshare/index.tsx -------------------------------------------------------------------------------- /src/components/media-elements/screenshare/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/screenshare/style.css -------------------------------------------------------------------------------- /src/components/media-elements/screenshare/videoElm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/screenshare/videoElm.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/helpers/useDeviceInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/helpers/useDeviceInfo.ts -------------------------------------------------------------------------------- /src/components/media-elements/videos/helpers/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/helpers/utils.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/index.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/layouts/defaultLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/layouts/defaultLayout.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/layouts/pinnedLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/layouts/pinnedLayout.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/layouts/verticalLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/layouts/verticalLayout.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/connectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/connectionStatus.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/index.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/micStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/micStatus.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/participant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/participant.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/pinWebcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/pinWebcam.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/raisedHand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/raisedHand.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/style.css -------------------------------------------------------------------------------- /src/components/media-elements/videos/video/videoElm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/video/videoElm.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/videoLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/videoLayout.tsx -------------------------------------------------------------------------------- /src/components/media-elements/videos/videoParticipant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/media-elements/videos/videoParticipant.tsx -------------------------------------------------------------------------------- /src/components/participants/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/index.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/avatar.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/iconWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/iconWrapper.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/lock.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/lowerHand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/lowerHand.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/mic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/mic.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/privateChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/privateChat.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/removeUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/removeUser.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/switchPresenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/switchPresenter.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu-items/webcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu-items/webcam.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/menu.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/mic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/mic.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/presenterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/presenterIcon.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/raiseHand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/raiseHand.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/screenShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/screenShare.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/visibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/visibility.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/icons/webcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/icons/webcam.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/index.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/name.tsx -------------------------------------------------------------------------------- /src/components/participants/participant/waitingApproval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/participant/waitingApproval.tsx -------------------------------------------------------------------------------- /src/components/participants/removeParticipantAlertModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/participants/removeParticipantAlertModal.tsx -------------------------------------------------------------------------------- /src/components/polls/create/formView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/create/formView.tsx -------------------------------------------------------------------------------- /src/components/polls/create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/create/index.tsx -------------------------------------------------------------------------------- /src/components/polls/create/optionsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/create/optionsView.tsx -------------------------------------------------------------------------------- /src/components/polls/hooks/useEndPoll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/hooks/useEndPoll.ts -------------------------------------------------------------------------------- /src/components/polls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/index.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/details/endPollBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/details/endPollBtn.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/details/index.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/details/notRespondents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/details/notRespondents.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/details/publishResultBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/details/publishResultBtn.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/details/respondents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/details/respondents.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/index.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/pollActionsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/pollActionsMenu.tsx -------------------------------------------------------------------------------- /src/components/polls/pollItem/voteForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollItem/voteForm.tsx -------------------------------------------------------------------------------- /src/components/polls/pollsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/pollsList.tsx -------------------------------------------------------------------------------- /src/components/polls/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/polls/utils.tsx -------------------------------------------------------------------------------- /src/components/shared-notepad/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/shared-notepad/index.tsx -------------------------------------------------------------------------------- /src/components/shared-notepad/useNotepadUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/shared-notepad/useNotepadUrl.ts -------------------------------------------------------------------------------- /src/components/speech-to-text-service/displays/history/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/displays/history/index.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/displays/history/interimTextDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/displays/history/interimTextDisplay.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/displays/history/subtitleHistoryPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/displays/history/subtitleHistoryPanel.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/displays/liveSubtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/displays/liveSubtitle.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/helpers/apiConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/helpers/apiConnections.ts -------------------------------------------------------------------------------- /src/components/speech-to-text-service/helpers/azureSpeechService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/helpers/azureSpeechService.ts -------------------------------------------------------------------------------- /src/components/speech-to-text-service/helpers/modalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/helpers/modalUtils.ts -------------------------------------------------------------------------------- /src/components/speech-to-text-service/helpers/supportedLangs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/helpers/supportedLangs.ts -------------------------------------------------------------------------------- /src/components/speech-to-text-service/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/index.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/speech-settings-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/speech-settings-modal/index.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/speech-settings-modal/micSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/speech-settings-modal/micSelector.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/speech-settings-modal/speechInputSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/speech-settings-modal/speechInputSettings.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/speech-settings-modal/subtitleFontSizeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/speech-settings-modal/subtitleFontSizeSlider.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/speech-settings-modal/subtitleLangSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/speech-settings-modal/subtitleLangSelector.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/transcription-settings-modal/defaultSubtitleLangSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/transcription-settings-modal/defaultSubtitleLangSelector.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/transcription-settings-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/transcription-settings-modal/index.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/transcription-settings-modal/speechLangsSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/transcription-settings-modal/speechLangsSelector.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/transcription-settings-modal/speechUsersSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/transcription-settings-modal/speechUsersSelector.tsx -------------------------------------------------------------------------------- /src/components/speech-to-text-service/transcription-settings-modal/transLangsSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/speech-to-text-service/transcription-settings-modal/transLangsSelector.tsx -------------------------------------------------------------------------------- /src/components/virtual-background/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/README.md -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/backgroundHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/backgroundHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/postProcessingHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/postProcessingHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/renderingPipelineHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/renderingPipelineHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/segmentationHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/segmentationHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/sourceHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/sourceHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/timerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/timerHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/helpers/utils.ts -------------------------------------------------------------------------------- /src/components/virtual-background/hooks/useRenderingPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/hooks/useRenderingPipeline.ts -------------------------------------------------------------------------------- /src/components/virtual-background/hooks/useTFLite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/hooks/useTFLite.ts -------------------------------------------------------------------------------- /src/components/virtual-background/outputViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/outputViewer.tsx -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/canvas2d/canvas2dPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/canvas2d/canvas2dPipeline.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/helpers/webglHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/helpers/webglHelper.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/backgroundBlurStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/backgroundBlurStage.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/backgroundImageStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/backgroundImageStage.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/jointBilateralFilterStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/jointBilateralFilterStage.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/loadSegmentationStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/loadSegmentationStage.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/resizingStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/resizingStage.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/softmaxStage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/softmaxStage.ts -------------------------------------------------------------------------------- /src/components/virtual-background/pipelines/webgl2/webgl2Pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/pipelines/webgl2/webgl2Pipeline.ts -------------------------------------------------------------------------------- /src/components/virtual-background/virtualBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/virtual-background/virtualBackground.tsx -------------------------------------------------------------------------------- /src/components/waiting-room/bulkAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/waiting-room/bulkAction.tsx -------------------------------------------------------------------------------- /src/components/waiting-room/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/waiting-room/index.tsx -------------------------------------------------------------------------------- /src/components/waiting-room/participantsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/waiting-room/participantsList.tsx -------------------------------------------------------------------------------- /src/components/waiting-room/updateRoomMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/waiting-room/updateRoomMessage.tsx -------------------------------------------------------------------------------- /src/components/waiting-room/waitingParticipantItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/waiting-room/waitingParticipantItem.tsx -------------------------------------------------------------------------------- /src/components/whiteboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/README.md -------------------------------------------------------------------------------- /src/components/whiteboard/footerUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/footerUI.tsx -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/handleFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/handleFiles.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/handleRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/handleRequests.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/hooks/useOfficePageSyncer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/hooks/useOfficePageSyncer.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/hooks/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/hooks/usePrevious.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/hooks/useWhiteboardAppStateSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/hooks/useWhiteboardAppStateSync.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/hooks/useWhiteboardDataSharer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/hooks/useWhiteboardDataSharer.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/hooks/useWhiteboardSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/hooks/useWhiteboardSetup.ts -------------------------------------------------------------------------------- /src/components/whiteboard/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/helpers/utils.ts -------------------------------------------------------------------------------- /src/components/whiteboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/index.tsx -------------------------------------------------------------------------------- /src/components/whiteboard/manage-office-files/fileUploadProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/manage-office-files/fileUploadProgress.tsx -------------------------------------------------------------------------------- /src/components/whiteboard/manage-office-files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/manage-office-files/index.tsx -------------------------------------------------------------------------------- /src/components/whiteboard/manage-office-files/uploadedFilesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/manage-office-files/uploadedFilesList.tsx -------------------------------------------------------------------------------- /src/components/whiteboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/components/whiteboard/style.css -------------------------------------------------------------------------------- /src/helpers/api/plugNmeetAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/api/plugNmeetAPI.ts -------------------------------------------------------------------------------- /src/helpers/fileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/fileUpload.ts -------------------------------------------------------------------------------- /src/helpers/hooks/useClientCustomization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useClientCustomization.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useKeyboardShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useKeyboardShortcuts.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useLogo.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useResumableFilesUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useResumableFilesUpload.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useRoomDurationCountdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useRoomDurationCountdown.ts -------------------------------------------------------------------------------- /src/helpers/hooks/useStorePreviousInt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useStorePreviousInt.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useThemeSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useThemeSettings.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useWatchVisibilityChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useWatchVisibilityChange.tsx -------------------------------------------------------------------------------- /src/helpers/hooks/useWatchWindowSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/hooks/useWatchWindowSize.tsx -------------------------------------------------------------------------------- /src/helpers/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/i18n.ts -------------------------------------------------------------------------------- /src/helpers/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/languages.ts -------------------------------------------------------------------------------- /src/helpers/libs/AudioActivityManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/libs/AudioActivityManager.ts -------------------------------------------------------------------------------- /src/helpers/libs/cross-origin-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/libs/cross-origin-worker.ts -------------------------------------------------------------------------------- /src/helpers/libs/cryptoMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/libs/cryptoMessages.ts -------------------------------------------------------------------------------- /src/helpers/libs/idb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/libs/idb.ts -------------------------------------------------------------------------------- /src/helpers/livekit/ConnectLivekit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/livekit/ConnectLivekit.ts -------------------------------------------------------------------------------- /src/helpers/livekit/HandleMediaTracks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/livekit/HandleMediaTracks.ts -------------------------------------------------------------------------------- /src/helpers/livekit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/livekit/types.ts -------------------------------------------------------------------------------- /src/helpers/livekit/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/livekit/utils.ts -------------------------------------------------------------------------------- /src/helpers/nats/ConnectNats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/ConnectNats.ts -------------------------------------------------------------------------------- /src/helpers/nats/HandleChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/HandleChat.ts -------------------------------------------------------------------------------- /src/helpers/nats/HandleDataMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/HandleDataMessage.ts -------------------------------------------------------------------------------- /src/helpers/nats/HandleParticipants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/HandleParticipants.ts -------------------------------------------------------------------------------- /src/helpers/nats/HandleRoomData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/HandleRoomData.ts -------------------------------------------------------------------------------- /src/helpers/nats/HandleSystemData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/HandleSystemData.tsx -------------------------------------------------------------------------------- /src/helpers/nats/HandleWhiteboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/HandleWhiteboard.ts -------------------------------------------------------------------------------- /src/helpers/nats/MessageQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/MessageQueue.ts -------------------------------------------------------------------------------- /src/helpers/nats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/nats/index.ts -------------------------------------------------------------------------------- /src/helpers/ui/actionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/actionButton.tsx -------------------------------------------------------------------------------- /src/helpers/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/helpers/ui/confirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/confirmationModal.tsx -------------------------------------------------------------------------------- /src/helpers/ui/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/dropdown.tsx -------------------------------------------------------------------------------- /src/helpers/ui/formattedInputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/formattedInputField.tsx -------------------------------------------------------------------------------- /src/helpers/ui/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/modal.tsx -------------------------------------------------------------------------------- /src/helpers/ui/radioOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/radioOptions.tsx -------------------------------------------------------------------------------- /src/helpers/ui/rangeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/rangeSlider.tsx -------------------------------------------------------------------------------- /src/helpers/ui/settingsSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/settingsSwitch.tsx -------------------------------------------------------------------------------- /src/helpers/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/ui/tabs.tsx -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/login.html -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/services/breakoutRoomApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/services/breakoutRoomApi.ts -------------------------------------------------------------------------------- /src/store/services/pollsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/services/pollsApi.ts -------------------------------------------------------------------------------- /src/store/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/services/utils.ts -------------------------------------------------------------------------------- /src/store/slices/activeSpeakersSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/activeSpeakersSlice.ts -------------------------------------------------------------------------------- /src/store/slices/bottomIconsActivitySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/bottomIconsActivitySlice.ts -------------------------------------------------------------------------------- /src/store/slices/breakoutRoomSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/breakoutRoomSlice.ts -------------------------------------------------------------------------------- /src/store/slices/chatMessagesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/chatMessagesSlice.ts -------------------------------------------------------------------------------- /src/store/slices/externalMediaPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/externalMediaPlayer.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/activeSpeakers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/activeSpeakers.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/bottomIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/bottomIcons.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/breakoutRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/breakoutRoom.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/participant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/participant.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/roomSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/roomSettings.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/session.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/speechServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/speechServices.ts -------------------------------------------------------------------------------- /src/store/slices/interfaces/whiteboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/interfaces/whiteboard.ts -------------------------------------------------------------------------------- /src/store/slices/participantSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/participantSlice.ts -------------------------------------------------------------------------------- /src/store/slices/roomSettingsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/roomSettingsSlice.ts -------------------------------------------------------------------------------- /src/store/slices/sessionSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/sessionSlice.ts -------------------------------------------------------------------------------- /src/store/slices/speechServicesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/speechServicesSlice.ts -------------------------------------------------------------------------------- /src/store/slices/whiteboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/slices/whiteboard.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/common.css -------------------------------------------------------------------------------- /src/styles/dark-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/dark-mode.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/keyframes-animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/keyframes-animation.css -------------------------------------------------------------------------------- /src/styles/media_screens/h-max-800.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/h-max-800.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_1023.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_1023.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_1025.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_1025.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_1279.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_1279.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_1640.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/media_screens/max_370.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_370.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_57.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_57.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_640.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_640.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_767.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_767.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_h_720.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_h_720.css -------------------------------------------------------------------------------- /src/styles/media_screens/max_w_980_max_h_450.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/max_w_980_max_h_450.css -------------------------------------------------------------------------------- /src/styles/media_screens/min_1024.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/min_1024.css -------------------------------------------------------------------------------- /src/styles/media_screens/min_1800.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/min_1800.css -------------------------------------------------------------------------------- /src/styles/media_screens/min_641.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/media_screens/min_641_max_1025.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/media_screens/min_641_max_1025.css -------------------------------------------------------------------------------- /src/styles/plugnmeet-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/plugnmeet-font.css -------------------------------------------------------------------------------- /src/styles/recorder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/recorder.css -------------------------------------------------------------------------------- /src/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/src/styles/variables.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mynaparrot/plugNmeet-client/HEAD/vite.config.ts --------------------------------------------------------------------------------