├── .dockerignore ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── dependabot.yml ├── renovate.json └── workflows │ ├── build-pull-request.yml │ ├── cla.yml │ ├── deploy-pull-request.yml │ ├── docker-pr.yml │ ├── lockfile.yml │ ├── netlify-dev.yml │ └── prod-deploy.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── COPYRIGHT.md ├── Dockerfile ├── LICENSE ├── README.md ├── ROADMAP.md ├── config.json ├── contrib └── nginx │ ├── README.md │ └── cinny.domain.tld.conf ├── docs ├── Profile_banners.md └── Verification.md ├── find.js ├── index.html ├── netlify.toml ├── package.json ├── public ├── background.jpg ├── background.png ├── cacher.js ├── favicon.ico ├── font │ ├── Twemoji.Mozilla.v.7.0.woff2 │ └── Twemoji.Mozilla.v0.7.0.ttf ├── incoming.mp3 ├── manifest.json ├── res │ ├── android │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-72x72.png │ │ └── android-chrome-96x96.png │ ├── apple │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ └── apple-touch-icon-76x76.png │ ├── ic │ │ ├── filled │ │ │ ├── category.svg │ │ │ ├── microphone.svg │ │ │ ├── microphone_off.svg │ │ │ ├── pin.svg │ │ │ └── star.svg │ │ └── outlined │ │ │ ├── add-pin.svg │ │ │ ├── add-user.svg │ │ │ ├── ball.svg │ │ │ ├── bell-off.svg │ │ │ ├── bell-ping.svg │ │ │ ├── bell-ring.svg │ │ │ ├── bell.svg │ │ │ ├── bin.svg │ │ │ ├── bulb.svg │ │ │ ├── category.svg │ │ │ ├── check.svg │ │ │ ├── chevron-bottom.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-top.svg │ │ │ ├── circle-plus.svg │ │ │ ├── cmd.svg │ │ │ ├── coin.svg │ │ │ ├── cross.svg │ │ │ ├── cup.svg │ │ │ ├── dog.svg │ │ │ ├── download.svg │ │ │ ├── emoji-add.svg │ │ │ ├── emoji.svg │ │ │ ├── explore.svg │ │ │ ├── external.svg │ │ │ ├── eye-blind.svg │ │ │ ├── eye.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── hash-globe.svg │ │ │ ├── hash-lock.svg │ │ │ ├── hash-plus.svg │ │ │ ├── hash-search.svg │ │ │ ├── hash-shield.svg │ │ │ ├── hash.svg │ │ │ ├── heart.svg │ │ │ ├── home.svg │ │ │ ├── horizontal-menu.svg │ │ │ ├── inbox.svg │ │ │ ├── info.svg │ │ │ ├── invite-arrow.svg │ │ │ ├── invite-cancel-arrow.svg │ │ │ ├── invite.svg │ │ │ ├── join-arrow.svg │ │ │ ├── leave-arrow.svg │ │ │ ├── lock.svg │ │ │ ├── markdown.svg │ │ │ ├── message-unread.svg │ │ │ ├── message.svg │ │ │ ├── pause.svg │ │ │ ├── peace.svg │ │ │ ├── pencil.svg │ │ │ ├── photo.svg │ │ │ ├── pin.svg │ │ │ ├── play.svg │ │ │ ├── plus.svg │ │ │ ├── power.svg │ │ │ ├── recent-clock.svg │ │ │ ├── reply-arrow.svg │ │ │ ├── search.svg │ │ │ ├── send.svg │ │ │ ├── settings.svg │ │ │ ├── shield-empty.svg │ │ │ ├── shield-user.svg │ │ │ ├── shield.svg │ │ │ ├── space-globe.svg │ │ │ ├── space-lock.svg │ │ │ ├── space-plus.svg │ │ │ ├── space.svg │ │ │ ├── star.svg │ │ │ ├── sticker.svg │ │ │ ├── sun.svg │ │ │ ├── tick-mark.svg │ │ │ ├── user.svg │ │ │ ├── vertical-menu.svg │ │ │ ├── vlc.svg │ │ │ ├── volume-full.svg │ │ │ └── volume-mute.svg │ ├── img │ │ └── background1.jpg │ └── svg │ │ ├── cinny-highlight.svg │ │ ├── cinny-unread.svg │ │ ├── cinny.svg │ │ └── image-broken.svg ├── ring.mp3 ├── sound │ ├── invite.ogg │ └── notification.ogg └── worker.js ├── src ├── app │ ├── atoms │ │ ├── action-list-button │ │ │ └── ActionListButton.tsx │ │ ├── avatar │ │ │ ├── Avatar.scss │ │ │ ├── Avatar.tsx │ │ │ └── render.js │ │ ├── badge │ │ │ ├── NotificationBadge.jsx │ │ │ └── NotificationBadge.scss │ │ ├── button │ │ │ ├── Button.jsx │ │ │ ├── Button.scss │ │ │ ├── Checkbox.jsx │ │ │ ├── Checkbox.scss │ │ │ ├── IconButton.jsx │ │ │ ├── IconButton.scss │ │ │ ├── MdButton.tsx │ │ │ ├── RadioButton.jsx │ │ │ ├── RadioButton.scss │ │ │ ├── _state.scss │ │ │ └── script.js │ │ ├── context-menu │ │ │ ├── ContextMenu.jsx │ │ │ ├── ContextMenu.scss │ │ │ └── ReusableContextMenu.jsx │ │ ├── labelled-icon-button │ │ │ └── LabelledIconButton.tsx │ │ ├── modal │ │ │ ├── RawModal.jsx │ │ │ └── RawModal.scss │ │ ├── motion │ │ │ └── Animated.tsx │ │ ├── scroll │ │ │ ├── ScrollView.jsx │ │ │ ├── ScrollView.scss │ │ │ └── _scrollbar.scss │ │ ├── search │ │ │ └── Search.jsx │ │ ├── segmented-controls │ │ │ ├── SegmentedControls.jsx │ │ │ └── SegmentedControls.scss │ │ ├── system-icons │ │ │ ├── RawIcon.jsx │ │ │ └── RawIcon.scss │ │ ├── text │ │ │ ├── Text.jsx │ │ │ └── Text.scss │ │ ├── time │ │ │ └── Time.jsx │ │ ├── transparent-appbar │ │ │ └── TransparentAppBar.tsx │ │ └── user-select │ │ │ └── UserSelect.jsx │ ├── components │ │ ├── AuthFlowsLoader.tsx │ │ ├── BackRouteHandler.tsx │ │ ├── CapabilitiesAndMediaConfigLoader.tsx │ │ ├── CapabilitiesLoader.tsx │ │ ├── ClientConfigLoader.tsx │ │ ├── ConfirmPasswordMatch.tsx │ │ ├── HideOnScroll.tsx │ │ ├── LinearProgressWithLabel.tsx │ │ ├── MediaConfigLoader.tsx │ │ ├── Pdf-viewer │ │ │ ├── PdfViewer.css.ts │ │ │ ├── PdfViewer.tsx │ │ │ └── index.ts │ │ ├── RenderMessageContent.tsx │ │ ├── RoomSummaryLoader.tsx │ │ ├── RoomUnreadProvider.tsx │ │ ├── SpaceChildDirectsProvider.tsx │ │ ├── SpaceChildRoomsProvider.tsx │ │ ├── SpecVersionsLoader.tsx │ │ ├── SupportedUIAFlowsLoader.tsx │ │ ├── UIAFlowOverlay.tsx │ │ ├── UseStateProvider.tsx │ │ ├── editor │ │ │ ├── Editor.css.ts │ │ │ ├── Editor.tsx │ │ │ ├── autocomplete │ │ │ │ ├── AutocompleteMenu.css.tsx │ │ │ │ ├── AutocompleteMenu.tsx │ │ │ │ ├── EmoticonAutocomplete.tsx │ │ │ │ ├── RoomMentionAutocomplete.tsx │ │ │ │ ├── UserMentionAutocomplete.tsx │ │ │ │ ├── autocompleteQuery.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── input.ts │ │ │ ├── keyboard.ts │ │ │ ├── output.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── emoji-board │ │ │ ├── EmojiBoard.css.tsx │ │ │ ├── EmojiBoard.tsx │ │ │ ├── index.ts │ │ │ ├── useEmojiGroupIcons.ts │ │ │ └── useEmojiGroupLabels.ts │ │ ├── event-readers │ │ │ ├── EventReaders.css.ts │ │ │ ├── EventReaders.tsx │ │ │ └── index.ts │ │ ├── fab │ │ │ ├── FAB.css.ts │ │ │ └── FAB.tsx │ │ ├── hidden-content │ │ │ ├── HiddenContent.css.ts │ │ │ └── HiddenContent.tsx │ │ ├── image-viewer │ │ │ ├── ImageViewer.css.ts │ │ │ ├── ImageViewer.tsx │ │ │ └── index.ts │ │ ├── leave-room-prompt │ │ │ ├── LeaveRoomPrompt.tsx │ │ │ └── index.ts │ │ ├── leave-space-prompt │ │ │ ├── LeaveSpacePrompt.tsx │ │ │ └── index.ts │ │ ├── media │ │ │ ├── Image.tsx │ │ │ ├── MediaControls.tsx │ │ │ ├── Video.tsx │ │ │ ├── index.ts │ │ │ └── media.css.ts │ │ ├── message │ │ │ ├── FileHeader.tsx │ │ │ ├── MsgTypeRenderers.tsx │ │ │ ├── Reaction.css.ts │ │ │ ├── Reaction.tsx │ │ │ ├── RenderBody.tsx │ │ │ ├── Reply.css.ts │ │ │ ├── Reply.tsx │ │ │ ├── Time.tsx │ │ │ ├── attachment │ │ │ │ ├── Attachment.css.ts │ │ │ │ ├── Attachment.tsx │ │ │ │ └── index.ts │ │ │ ├── content │ │ │ │ ├── AudioContent.tsx │ │ │ │ ├── EventContent.tsx │ │ │ │ ├── FallbackContent.tsx │ │ │ │ ├── FileContent.tsx │ │ │ │ ├── ImageContent.tsx │ │ │ │ ├── PollContent.tsx │ │ │ │ ├── ThumbnailContent.tsx │ │ │ │ ├── VideoContent.tsx │ │ │ │ ├── VoiceContent.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── style.css.ts │ │ │ │ └── util.ts │ │ │ ├── index.ts │ │ │ ├── layout │ │ │ │ ├── Base.tsx │ │ │ │ ├── Bubble.tsx │ │ │ │ ├── Compact.tsx │ │ │ │ ├── Modern.tsx │ │ │ │ ├── index.ts │ │ │ │ └── layout.css.ts │ │ │ └── placeholder │ │ │ │ ├── CompactPlaceholder.tsx │ │ │ │ ├── DefaultPlaceholder.tsx │ │ │ │ ├── LinePlaceholder.css.ts │ │ │ │ ├── LinePlaceholder.tsx │ │ │ │ └── index.ts │ │ ├── modal │ │ │ ├── Modal.css.ts │ │ │ └── Modal.tsx │ │ ├── nav │ │ │ ├── NavCategory.tsx │ │ │ ├── NavCategoryHeader.tsx │ │ │ ├── NavEmptyLayout.tsx │ │ │ ├── NavItem.tsx │ │ │ ├── NavItemContent.tsx │ │ │ ├── NavItemOptions.tsx │ │ │ ├── index.ts │ │ │ └── styles.css.ts │ │ ├── page │ │ │ ├── Page.tsx │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── password-input │ │ │ └── PasswordInput.tsx │ │ ├── progressbar │ │ │ └── index.tsx │ │ ├── prominient-toolbar │ │ │ └── ProminientToolbar.tsx │ │ ├── room-avatar │ │ │ ├── RoomAvatar.css.ts │ │ │ ├── RoomAvatar.tsx │ │ │ └── index.ts │ │ ├── room-card │ │ │ ├── RoomCard.tsx │ │ │ ├── index.ts │ │ │ └── style.css.ts │ │ ├── room-intro │ │ │ ├── RoomIntro.tsx │ │ │ └── index.ts │ │ ├── room-topic-viewer │ │ │ ├── RoomTopicViewer.tsx │ │ │ ├── index.ts │ │ │ └── style.css.ts │ │ ├── scroll-top-container │ │ │ ├── ScrollTopContainer.tsx │ │ │ ├── index.ts │ │ │ └── style.css.ts │ │ ├── sequence-card │ │ │ ├── SequenceCard.tsx │ │ │ ├── index.ts │ │ │ └── style.css.ts │ │ ├── sidebar │ │ │ ├── Sidebar.css.ts │ │ │ ├── Sidebar.tsx │ │ │ ├── SidebarContent.tsx │ │ │ ├── SidebarItem.tsx │ │ │ ├── SidebarStack.tsx │ │ │ ├── SidebarStackSeparator.tsx │ │ │ └── index.ts │ │ ├── splash-screen │ │ │ ├── SplashScreen.css.ts │ │ │ ├── SplashScreen.tsx │ │ │ └── index.ts │ │ ├── text-viewer │ │ │ ├── TextViewer.css.ts │ │ │ ├── TextViewer.tsx │ │ │ └── index.ts │ │ ├── typing-indicator │ │ │ ├── TypingIndicator.css.ts │ │ │ ├── TypingIndicator.tsx │ │ │ └── index.ts │ │ ├── uia-stages │ │ │ ├── DummyStage.tsx │ │ │ ├── EmailStage.tsx │ │ │ ├── ReCaptchaStage.tsx │ │ │ ├── RegistrationTokenStage.tsx │ │ │ ├── TermsStage.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── unread-badge │ │ │ ├── UnreadBadge.tsx │ │ │ └── index.ts │ │ ├── upload-board │ │ │ ├── UploadBoard.css.ts │ │ │ ├── UploadBoard.tsx │ │ │ └── index.ts │ │ ├── upload-card │ │ │ ├── UploadCard.css.ts │ │ │ ├── UploadCard.tsx │ │ │ ├── UploadCardRenderer.tsx │ │ │ └── index.ts │ │ ├── url-preview │ │ │ ├── UrlPreview.css.tsx │ │ │ ├── UrlPreview.tsx │ │ │ ├── UrlPreviewCard.css.tsx │ │ │ ├── UrlPreviewCard.tsx │ │ │ └── index.ts │ │ ├── user-avatar │ │ │ ├── UserAvatar.css.ts │ │ │ ├── UserAvatar.tsx │ │ │ └── index.ts │ │ ├── verification-badge │ │ │ ├── VerificationBadge.css.ts │ │ │ └── VerificationBadge.tsx │ │ ├── virtualizer │ │ │ ├── VirtualTile.tsx │ │ │ ├── index.ts │ │ │ └── style.css.ts │ │ └── widget │ │ │ ├── WidgetItem.css.ts │ │ │ └── WidgetItem.tsx │ ├── cs-api.ts │ ├── cs-errorcode.ts │ ├── features │ │ ├── join-before-navigate │ │ │ ├── JoinBeforeNavigate.tsx │ │ │ └── index.ts │ │ ├── lobby │ │ │ ├── DnD.css.ts │ │ │ ├── DnD.tsx │ │ │ ├── HierarchyItemMenu.tsx │ │ │ ├── Lobby.tsx │ │ │ ├── LobbyHeader.tsx │ │ │ ├── LobbyHero.css.tsx │ │ │ ├── LobbyHero.tsx │ │ │ ├── RoomItem.css.ts │ │ │ ├── RoomItem.tsx │ │ │ ├── SpaceItem.css.ts │ │ │ ├── SpaceItem.tsx │ │ │ ├── index.ts │ │ │ └── style.css.ts │ │ ├── message-search │ │ │ ├── MessageSearch.tsx │ │ │ ├── SearchFilters.tsx │ │ │ ├── SearchInput.tsx │ │ │ ├── SearchResultGroup.tsx │ │ │ ├── index.ts │ │ │ └── useMessageSearch.ts │ │ ├── room-nav │ │ │ ├── RoomNavCategoryButton.tsx │ │ │ ├── RoomNavItem.tsx │ │ │ ├── index.ts │ │ │ └── styles.css.ts │ │ ├── room │ │ │ ├── AsyncLoadMessage.tsx │ │ │ ├── CommandAutocomplete.tsx │ │ │ ├── MembersDrawer.css.ts │ │ │ ├── MembersDrawer.tsx │ │ │ ├── NewPollMenu.tsx │ │ │ ├── PinnedMessages.tsx │ │ │ ├── Room.tsx │ │ │ ├── RoomCall.css.ts │ │ │ ├── RoomCall.tsx │ │ │ ├── RoomInput.tsx │ │ │ ├── RoomInputPlaceholder.css.ts │ │ │ ├── RoomInputPlaceholder.tsx │ │ │ ├── RoomTimeline.css.ts │ │ │ ├── RoomTimeline.tsx │ │ │ ├── RoomTombstone.css.ts │ │ │ ├── RoomTombstone.tsx │ │ │ ├── RoomView.tsx │ │ │ ├── RoomViewFollowing.css.ts │ │ │ ├── RoomViewFollowing.tsx │ │ │ ├── RoomViewHeader.css.ts │ │ │ ├── RoomViewHeader.tsx │ │ │ ├── RoomViewTyping.css.ts │ │ │ ├── RoomViewTyping.tsx │ │ │ ├── index.ts │ │ │ ├── message │ │ │ │ ├── EncryptedContent.tsx │ │ │ │ ├── Message.tsx │ │ │ │ ├── MessageEditor.tsx │ │ │ │ ├── Reactions.tsx │ │ │ │ ├── ThreadPreview.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.css.ts │ │ │ ├── msgContent.ts │ │ │ └── reaction-viewer │ │ │ │ ├── ReactionViewer.css.ts │ │ │ │ ├── ReactionViewer.tsx │ │ │ │ └── index.ts │ │ ├── settings │ │ │ ├── AuthRequest.jsx │ │ │ ├── AuthRequest.scss │ │ │ ├── CrossSigning.jsx │ │ │ ├── CrossSigning.scss │ │ │ ├── DeviceManage.jsx │ │ │ ├── DeviceManage.scss │ │ │ ├── KeyBackup.jsx │ │ │ ├── KeyBackup.scss │ │ │ ├── SecretStorageAccess.jsx │ │ │ ├── SecretStorageAccess.scss │ │ │ ├── Settings.scss │ │ │ ├── Settings.tsx │ │ │ ├── Themes.scss │ │ │ └── Themes.tsx │ │ ├── thread │ │ │ ├── Thread.tsx │ │ │ ├── ThreadTimeline.css.ts │ │ │ ├── ThreadTimeline.tsx │ │ │ ├── ThreadView.tsx │ │ │ ├── ThreadViewFollowing.css.ts │ │ │ ├── ThreadViewFollowing.tsx │ │ │ ├── ThreadViewHeader.css.ts │ │ │ ├── ThreadViewHeader.tsx │ │ │ ├── ThreadViewTyping.css.ts │ │ │ └── ThreadViewTyping.tsx │ │ └── widget │ │ │ ├── IntegrationManager.tsx │ │ │ └── WidgetIFrame.tsx │ ├── hooks │ │ ├── cordova.ts │ │ ├── media │ │ │ ├── index.ts │ │ │ ├── useMediaLoading.ts │ │ │ ├── useMediaPlay.ts │ │ │ ├── useMediaPlayTimeCallback.ts │ │ │ ├── useMediaPlaybackRate.ts │ │ │ ├── useMediaSeek.ts │ │ │ └── useMediaVolume.ts │ │ ├── router │ │ │ ├── useDirectSelected.ts │ │ │ ├── useExploreSelected.ts │ │ │ ├── useHomeSelected.ts │ │ │ ├── useInbox.ts │ │ │ ├── useSelectedRoom.ts │ │ │ └── useSelectedSpace.ts │ │ ├── types.ts │ │ ├── useAccountData.js │ │ ├── useAccountDataCallback.ts │ │ ├── useAlive.ts │ │ ├── useAsyncCallback.ts │ │ ├── useAsyncSearch.ts │ │ ├── useAuthFlows.ts │ │ ├── useAuthServer.ts │ │ ├── useAutoDiscoveryInfo.ts │ │ ├── useBackButton.js │ │ ├── useCall.ts │ │ ├── useCapabilities.ts │ │ ├── useCategoryHandler.ts │ │ ├── useClientConfig.ts │ │ ├── useCommands.ts │ │ ├── useCrossSigningStatus.js │ │ ├── useDebounce.ts │ │ ├── useDeviceList.ts │ │ ├── useDocumentFocusChange.ts │ │ ├── useElementSizeObserver.ts │ │ ├── useFileDrop.ts │ │ ├── useFilePasteHandler.ts │ │ ├── useFilePicker.ts │ │ ├── useForceUpdate.js │ │ ├── useForceUpdate.ts │ │ ├── useHideableNav.ts │ │ ├── useImagePacks.ts │ │ ├── useIntegrationManager.ts │ │ ├── useIntersectionObserver.ts │ │ ├── useInterval.ts │ │ ├── useJoinedRoomId.ts │ │ ├── useKeyDown.ts │ │ ├── useLocalRoomSummary.ts │ │ ├── useMatrixClient.ts │ │ ├── useMatrixEventRenderer.ts │ │ ├── useMediaConfig.ts │ │ ├── useMemberEventParser.tsx │ │ ├── useModals.ts │ │ ├── useNavToActivePathMapper.ts │ │ ├── usePan.ts │ │ ├── useParsedLoginFlows.ts │ │ ├── usePasswordEmail.ts │ │ ├── usePathWithOrigin.ts │ │ ├── usePermission.js │ │ ├── usePowerLevelTags.ts │ │ ├── usePowerLevels.ts │ │ ├── usePresences.ts │ │ ├── usePreviousValue.ts │ │ ├── useRecentEmoji.ts │ │ ├── useRegisterEmail.ts │ │ ├── useRelations.ts │ │ ├── useResizeObserver.ts │ │ ├── useRoom.ts │ │ ├── useRoomEvent.ts │ │ ├── useRoomEventReaders.ts │ │ ├── useRoomLatestRenderedEvent.ts │ │ ├── useRoomMembers.ts │ │ ├── useRoomMeta.ts │ │ ├── useRoomNavigate.ts │ │ ├── useRoomPinnedEvents.ts │ │ ├── useRoomTags.ts │ │ ├── useRoomTypingMembers.ts │ │ ├── useScreenSize.ts │ │ ├── useSidebarItems.ts │ │ ├── useSpace.ts │ │ ├── useSpaceHierarchy.ts │ │ ├── useSpecVersions.ts │ │ ├── useStateEvent.ts │ │ ├── useStateEventCallback.ts │ │ ├── useStateEvents.ts │ │ ├── useStore.js │ │ ├── useSwipeLeft.ts │ │ ├── useSyncState.ts │ │ ├── useThread.ts │ │ ├── useThreadLatestRenderedEvent.ts │ │ ├── useThrottle.ts │ │ ├── useTouchMenu.ts │ │ ├── useTypingStatusUpdater.ts │ │ ├── useUIAFlows.ts │ │ ├── useVirtualPaginator.ts │ │ ├── useVoiceRecorder.ts │ │ └── useZoom.ts │ ├── molecules │ │ ├── confirm-dialog │ │ │ ├── ConfirmDialog.jsx │ │ │ └── ConfirmDialog.scss │ │ ├── dialog │ │ │ └── ReusableDialog.jsx │ │ ├── fallback-avatar │ │ │ ├── FallbackAvatar.css.ts │ │ │ └── FallbackAvatar.tsx │ │ ├── global-notification │ │ │ ├── GlobalNotification.jsx │ │ │ ├── IgnoreUserList.jsx │ │ │ ├── IgnoreUserList.scss │ │ │ ├── KeywordNotification.jsx │ │ │ ├── KeywordNotification.scss │ │ │ └── NotificationSelector.jsx │ │ ├── hide-reason-selector │ │ │ ├── HideReasonSelector.jsx │ │ │ └── HideReasonSelector.scss │ │ ├── image-pack │ │ │ ├── ImagePack.jsx │ │ │ ├── ImagePack.scss │ │ │ ├── ImagePackItem.jsx │ │ │ ├── ImagePackItem.scss │ │ │ ├── ImagePackProfile.jsx │ │ │ ├── ImagePackProfile.scss │ │ │ ├── ImagePackUpload.jsx │ │ │ ├── ImagePackUpload.scss │ │ │ └── ImagePackUsageSelector.jsx │ │ ├── image-upload │ │ │ ├── ImageUpload.jsx │ │ │ └── ImageUpload.scss │ │ ├── import-export-e2e-room-keys │ │ │ ├── ExportE2ERoomKeys.jsx │ │ │ ├── ExportE2ERoomKeys.scss │ │ │ ├── ImportE2ERoomKeys.jsx │ │ │ └── ImportE2ERoomKeys.scss │ │ ├── people-selector │ │ │ ├── PeopleSelector.jsx │ │ │ └── PeopleSelector.scss │ │ ├── power-level-selector │ │ │ ├── PowerLevelSelector.jsx │ │ │ └── PowerLevelSelector.scss │ │ ├── recording-indicator │ │ │ └── RecordingIndicator.tsx │ │ ├── room-aliases │ │ │ ├── RoomAliases.jsx │ │ │ └── RoomAliases.scss │ │ ├── room-emojis │ │ │ ├── RoomEmojis.jsx │ │ │ └── RoomEmojis.scss │ │ ├── room-encryption │ │ │ ├── RoomEncryption.jsx │ │ │ └── RoomEncryption.scss │ │ ├── room-history-visibility │ │ │ ├── RoomHistoryVisibility.jsx │ │ │ └── RoomHistoryVisibility.scss │ │ ├── room-intro │ │ │ ├── RoomIntro.jsx │ │ │ └── RoomIntro.scss │ │ ├── room-members │ │ │ ├── RoomMembers.jsx │ │ │ └── RoomMembers.scss │ │ ├── room-notification │ │ │ ├── RoomNotification.jsx │ │ │ └── RoomNotification.scss │ │ ├── room-permissions │ │ │ ├── RoomPermissions.jsx │ │ │ └── RoomPermissions.scss │ │ ├── room-profile │ │ │ ├── RoomProfile.scss │ │ │ └── RoomProfile.tsx │ │ ├── room-selector │ │ │ ├── RoomSelector.jsx │ │ │ └── RoomSelector.scss │ │ ├── room-tile │ │ │ ├── RoomTile.jsx │ │ │ └── RoomTile.scss │ │ ├── room-visibility │ │ │ ├── RoomVisibility.jsx │ │ │ └── RoomVisibility.scss │ │ ├── setting-tile │ │ │ ├── SettingTile.jsx │ │ │ └── SettingTile.scss │ │ └── space-add-existing │ │ │ ├── SpaceAddExisting.jsx │ │ │ └── SpaceAddExisting.scss │ ├── organisms │ │ ├── bookmarks │ │ │ └── Bookmarks.tsx │ │ ├── create-room │ │ │ ├── CreateRoom.jsx │ │ │ └── CreateRoom.scss │ │ ├── emoji-board │ │ │ └── custom-emoji.js │ │ ├── emoji-verification │ │ │ ├── EmojiVerification.jsx │ │ │ └── EmojiVerification.scss │ │ ├── error-screen │ │ │ └── ErrorScreen.tsx │ │ ├── geo-picker │ │ │ └── GeolocationPicker.tsx │ │ ├── invite-user │ │ │ ├── InviteUser.jsx │ │ │ └── InviteUser.scss │ │ ├── join-alias │ │ │ ├── JoinAlias.jsx │ │ │ └── JoinAlias.scss │ │ ├── profile-editor │ │ │ ├── Banner.jsx │ │ │ ├── Banner.scss │ │ │ ├── ProfileEditor.jsx │ │ │ └── ProfileEditor.scss │ │ ├── profile-viewer │ │ │ ├── Banner.jsx │ │ │ ├── Banner.scss │ │ │ ├── ProfileViewer.scss │ │ │ └── ProfileViewer.tsx │ │ ├── pw │ │ │ ├── Dialogs.jsx │ │ │ └── Windows.jsx │ │ ├── room │ │ │ ├── RoomSettings.scss │ │ │ └── RoomSettings.tsx │ │ ├── share-menu │ │ │ ├── ShareMenu.jsx │ │ │ └── ShareMenu.scss │ │ ├── space-settings │ │ │ ├── SpaceSettings.jsx │ │ │ └── SpaceSettings.scss │ │ └── welcome │ │ │ └── Welcome.jsx │ ├── pages │ │ ├── App.tsx │ │ ├── ConfigConfig.tsx │ │ ├── FeatureCheck.tsx │ │ ├── MobileFriendly.tsx │ │ ├── Router.tsx │ │ ├── afterLoginRedirectPath.ts │ │ ├── auth │ │ │ ├── AuthFooter.tsx │ │ │ ├── AuthLayout.tsx │ │ │ ├── FiledError.tsx │ │ │ ├── OrDivider.tsx │ │ │ ├── SSOLogin.tsx │ │ │ ├── ServerPicker.tsx │ │ │ ├── index.ts │ │ │ ├── login │ │ │ │ ├── Login.tsx │ │ │ │ ├── PasswordLoginForm.tsx │ │ │ │ ├── TokenLogin.tsx │ │ │ │ ├── index.ts │ │ │ │ └── loginUtil.ts │ │ │ ├── register │ │ │ │ ├── PasswordRegisterForm.tsx │ │ │ │ ├── Register.tsx │ │ │ │ ├── index.ts │ │ │ │ └── registerUtil.ts │ │ │ ├── reset-password │ │ │ │ ├── PasswordResetForm.tsx │ │ │ │ ├── ResetPassword.tsx │ │ │ │ ├── index.ts │ │ │ │ └── resetPasswordUtil.ts │ │ │ └── styles.css.ts │ │ ├── client │ │ │ ├── BottomNav.tsx │ │ │ ├── ClientBindAtoms.ts │ │ │ ├── ClientInitStorageAtom.tsx │ │ │ ├── ClientLayout.tsx │ │ │ ├── ClientNonUIFeatures.tsx │ │ │ ├── ClientRoot.css.ts │ │ │ ├── ClientRoot.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── SidebarNav.tsx │ │ │ ├── SpecVersions.tsx │ │ │ ├── SyncStateAlert.tsx │ │ │ ├── WelcomePage.tsx │ │ │ ├── direct │ │ │ │ ├── Direct.tsx │ │ │ │ ├── RoomProvider.tsx │ │ │ │ ├── index.ts │ │ │ │ └── useDirectRooms.ts │ │ │ ├── explore │ │ │ │ ├── Explore.tsx │ │ │ │ ├── Featured.tsx │ │ │ │ ├── Server.tsx │ │ │ │ ├── index.ts │ │ │ │ └── style.css.ts │ │ │ ├── home │ │ │ │ ├── Home.tsx │ │ │ │ ├── RoomProvider.tsx │ │ │ │ ├── Search.tsx │ │ │ │ ├── index.ts │ │ │ │ └── useHomeRooms.ts │ │ │ ├── inbox │ │ │ │ ├── Inbox.tsx │ │ │ │ ├── Invites.tsx │ │ │ │ ├── Notifications.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── sidebar │ │ │ │ ├── DirectTab.tsx │ │ │ │ ├── ExploreTab.tsx │ │ │ │ ├── HomeTab.tsx │ │ │ │ ├── InboxTab.tsx │ │ │ │ ├── SearchTab.tsx │ │ │ │ ├── SpaceTabs.tsx │ │ │ │ ├── UserTab.tsx │ │ │ │ └── index.ts │ │ │ └── space │ │ │ │ ├── RoomProvider.tsx │ │ │ │ ├── Search.tsx │ │ │ │ ├── Space.tsx │ │ │ │ ├── SpaceProvider.tsx │ │ │ │ └── index.ts │ │ ├── pathUtils.ts │ │ └── paths.ts │ ├── partials │ │ ├── _dir.scss │ │ ├── _flex.scss │ │ ├── _screen.scss │ │ └── _text.scss │ ├── plugins │ │ ├── custom-emoji.ts │ │ ├── emoji.ts │ │ ├── markdown.ts │ │ ├── millify.ts │ │ ├── pdfjs-dist.ts │ │ ├── react-custom-html-parser.tsx │ │ ├── react-prism │ │ │ ├── ReactPrism.css │ │ │ └── ReactPrism.tsx │ │ └── recent-emoji.ts │ ├── state │ │ ├── closedLobbyCategories.ts │ │ ├── closedNavCategories.ts │ │ ├── hooks │ │ │ ├── closedLobbyCategories.ts │ │ │ ├── closedNavCategories.ts │ │ │ ├── inviteList.ts │ │ │ ├── navToActivePath.ts │ │ │ ├── openedSidebarFolder.ts │ │ │ ├── roomList.ts │ │ │ ├── settings.ts │ │ │ ├── unread.ts │ │ │ ├── useBindAtoms.ts │ │ │ └── widgetPermissions.ts │ │ ├── list.ts │ │ ├── mDirectList.ts │ │ ├── navToActivePath.ts │ │ ├── openedSidebarFolder.ts │ │ ├── room-list │ │ │ ├── inviteList.ts │ │ │ ├── mutedRoomList.ts │ │ │ ├── roomList.ts │ │ │ └── utils.ts │ │ ├── room │ │ │ ├── roomInputDrafts.ts │ │ │ ├── roomToParents.ts │ │ │ └── roomToUnread.ts │ │ ├── sessions.ts │ │ ├── settings.ts │ │ ├── spaceRooms.ts │ │ ├── typingMembers.ts │ │ ├── upload.ts │ │ ├── utils │ │ │ └── atomWithLocalStorage.ts │ │ └── widgetPermissions.ts │ ├── styles │ │ ├── ContainerColor.css.ts │ │ ├── CustomHtml.css.ts │ │ └── Patterns.css.ts │ └── utils │ │ ├── ASCIILexicalTable.ts │ │ ├── AsyncSearch.ts │ │ ├── blurHash.ts │ │ ├── cache.ts │ │ ├── common.ts │ │ ├── disposable.ts │ │ ├── dom.ts │ │ ├── eruda.ts │ │ ├── featureCheck.ts │ │ ├── findAndReplace.ts │ │ ├── getVerificationState.ts │ │ ├── key-symbol.ts │ │ ├── keyboard.ts │ │ ├── matrix-uia.ts │ │ ├── matrix.ts │ │ ├── mimeTypes.ts │ │ ├── notifications.ts │ │ ├── regex.ts │ │ ├── room.ts │ │ ├── sanitize.ts │ │ ├── saveFile.ts │ │ ├── sort.ts │ │ ├── time.ts │ │ ├── translation.ts │ │ ├── user-agent.ts │ │ └── wallpaper.ts ├── client │ ├── action │ │ ├── auth.ts │ │ ├── navigation.js │ │ ├── notifications.ts │ │ ├── room.js │ │ └── settings.js │ ├── dispatcher.js │ ├── event │ │ └── hotkeys.js │ ├── initMatrix.js │ ├── mx.ts │ ├── state │ │ ├── auth.ts │ │ ├── cons.js │ │ ├── navigation.js │ │ ├── secretStorageKeys.js │ │ └── settings.js │ └── workers │ │ ├── IndexedDB.ts │ │ └── IndexedDBFactory.ts ├── colors.css.ts ├── config.css.ts ├── ext.d.ts ├── fact.tsx ├── index.scss ├── index.tsx ├── lang │ ├── en.json │ ├── index.jsx │ └── ru.json ├── push │ └── index.js ├── sw.ts ├── types │ ├── matrix │ │ ├── accountData.ts │ │ ├── common.ts │ │ └── room.ts │ └── utils.ts └── util │ ├── AsyncSearch.js │ ├── colorMXID.js │ ├── common.js │ ├── conferenceID.js │ ├── cryptE2ERoomKeys.js │ ├── matrixUtil.js │ └── sort.js ├── translate.js ├── tsconfig.json └── vite.config.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .git/ 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | experiment 2 | node_modules -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: officialdakari -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/build-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/build-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/deploy-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/docker-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/docker-pr.yml -------------------------------------------------------------------------------- /.github/workflows/lockfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/lockfile.yml -------------------------------------------------------------------------------- /.github/workflows/netlify-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/netlify-dev.yml -------------------------------------------------------------------------------- /.github/workflows/prod-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.github/workflows/prod-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | experiment 2 | dist 3 | node_modules 4 | devAssets 5 | 6 | .DS_Store 7 | .idea -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/config.json -------------------------------------------------------------------------------- /contrib/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/contrib/nginx/README.md -------------------------------------------------------------------------------- /contrib/nginx/cinny.domain.tld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/contrib/nginx/cinny.domain.tld.conf -------------------------------------------------------------------------------- /docs/Profile_banners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/docs/Profile_banners.md -------------------------------------------------------------------------------- /docs/Verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/docs/Verification.md -------------------------------------------------------------------------------- /find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/find.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/package.json -------------------------------------------------------------------------------- /public/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/background.jpg -------------------------------------------------------------------------------- /public/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/background.png -------------------------------------------------------------------------------- /public/cacher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/cacher.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/font/Twemoji.Mozilla.v.7.0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/font/Twemoji.Mozilla.v.7.0.woff2 -------------------------------------------------------------------------------- /public/font/Twemoji.Mozilla.v0.7.0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/font/Twemoji.Mozilla.v0.7.0.ttf -------------------------------------------------------------------------------- /public/incoming.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/incoming.mp3 -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/res/android/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/res/android/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/res/android/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/res/android/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-36x36.png -------------------------------------------------------------------------------- /public/res/android/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-48x48.png -------------------------------------------------------------------------------- /public/res/android/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-72x72.png -------------------------------------------------------------------------------- /public/res/android/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/android/android-chrome-96x96.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-167x167.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/res/apple/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/apple/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/res/ic/filled/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/filled/category.svg -------------------------------------------------------------------------------- /public/res/ic/filled/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/filled/microphone.svg -------------------------------------------------------------------------------- /public/res/ic/filled/microphone_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/filled/microphone_off.svg -------------------------------------------------------------------------------- /public/res/ic/filled/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/filled/pin.svg -------------------------------------------------------------------------------- /public/res/ic/filled/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/filled/star.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/add-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/add-pin.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/add-user.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/ball.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/bell-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/bell-off.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/bell-ping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/bell-ping.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/bell-ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/bell-ring.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/bell.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/bin.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/bulb.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/category.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/check.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/chevron-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/chevron-bottom.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/chevron-left.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/chevron-right.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/chevron-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/chevron-top.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/circle-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/circle-plus.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/cmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/cmd.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/coin.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/cross.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/cup.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/dog.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/download.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/emoji-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/emoji-add.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/emoji.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/explore.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/external.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/eye-blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/eye-blind.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/eye.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/file.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/flag.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/hash-globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/hash-globe.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/hash-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/hash-lock.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/hash-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/hash-plus.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/hash-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/hash-search.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/hash-shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/hash-shield.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/hash.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/heart.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/home.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/horizontal-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/horizontal-menu.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/inbox.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/info.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/invite-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/invite-arrow.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/invite-cancel-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/invite-cancel-arrow.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/invite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/invite.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/join-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/join-arrow.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/leave-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/leave-arrow.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/lock.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/markdown.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/message-unread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/message-unread.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/message.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/pause.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/peace.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/pencil.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/photo.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/pin.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/play.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/plus.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/power.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/recent-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/recent-clock.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/reply-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/reply-arrow.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/search.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/send.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/settings.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/shield-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/shield-empty.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/shield-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/shield-user.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/shield.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/space-globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/space-globe.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/space-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/space-lock.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/space-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/space-plus.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/space.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/star.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/sticker.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/sun.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/tick-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/tick-mark.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/user.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/vertical-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/vertical-menu.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/vlc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/vlc.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/volume-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/volume-full.svg -------------------------------------------------------------------------------- /public/res/ic/outlined/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/ic/outlined/volume-mute.svg -------------------------------------------------------------------------------- /public/res/img/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/img/background1.jpg -------------------------------------------------------------------------------- /public/res/svg/cinny-highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/svg/cinny-highlight.svg -------------------------------------------------------------------------------- /public/res/svg/cinny-unread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/svg/cinny-unread.svg -------------------------------------------------------------------------------- /public/res/svg/cinny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/svg/cinny.svg -------------------------------------------------------------------------------- /public/res/svg/image-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/res/svg/image-broken.svg -------------------------------------------------------------------------------- /public/ring.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/ring.mp3 -------------------------------------------------------------------------------- /public/sound/invite.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/sound/invite.ogg -------------------------------------------------------------------------------- /public/sound/notification.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/sound/notification.ogg -------------------------------------------------------------------------------- /public/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/public/worker.js -------------------------------------------------------------------------------- /src/app/atoms/action-list-button/ActionListButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/action-list-button/ActionListButton.tsx -------------------------------------------------------------------------------- /src/app/atoms/avatar/Avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/avatar/Avatar.scss -------------------------------------------------------------------------------- /src/app/atoms/avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/app/atoms/avatar/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/avatar/render.js -------------------------------------------------------------------------------- /src/app/atoms/badge/NotificationBadge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/badge/NotificationBadge.jsx -------------------------------------------------------------------------------- /src/app/atoms/badge/NotificationBadge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/badge/NotificationBadge.scss -------------------------------------------------------------------------------- /src/app/atoms/button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/Button.jsx -------------------------------------------------------------------------------- /src/app/atoms/button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/Button.scss -------------------------------------------------------------------------------- /src/app/atoms/button/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/Checkbox.jsx -------------------------------------------------------------------------------- /src/app/atoms/button/Checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/Checkbox.scss -------------------------------------------------------------------------------- /src/app/atoms/button/IconButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/IconButton.jsx -------------------------------------------------------------------------------- /src/app/atoms/button/IconButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/IconButton.scss -------------------------------------------------------------------------------- /src/app/atoms/button/MdButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/MdButton.tsx -------------------------------------------------------------------------------- /src/app/atoms/button/RadioButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/RadioButton.jsx -------------------------------------------------------------------------------- /src/app/atoms/button/RadioButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/RadioButton.scss -------------------------------------------------------------------------------- /src/app/atoms/button/_state.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/_state.scss -------------------------------------------------------------------------------- /src/app/atoms/button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/button/script.js -------------------------------------------------------------------------------- /src/app/atoms/context-menu/ContextMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/context-menu/ContextMenu.jsx -------------------------------------------------------------------------------- /src/app/atoms/context-menu/ContextMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/context-menu/ContextMenu.scss -------------------------------------------------------------------------------- /src/app/atoms/context-menu/ReusableContextMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/context-menu/ReusableContextMenu.jsx -------------------------------------------------------------------------------- /src/app/atoms/labelled-icon-button/LabelledIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/labelled-icon-button/LabelledIconButton.tsx -------------------------------------------------------------------------------- /src/app/atoms/modal/RawModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/modal/RawModal.jsx -------------------------------------------------------------------------------- /src/app/atoms/modal/RawModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/modal/RawModal.scss -------------------------------------------------------------------------------- /src/app/atoms/motion/Animated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/motion/Animated.tsx -------------------------------------------------------------------------------- /src/app/atoms/scroll/ScrollView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/scroll/ScrollView.jsx -------------------------------------------------------------------------------- /src/app/atoms/scroll/ScrollView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/scroll/ScrollView.scss -------------------------------------------------------------------------------- /src/app/atoms/scroll/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/scroll/_scrollbar.scss -------------------------------------------------------------------------------- /src/app/atoms/search/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/search/Search.jsx -------------------------------------------------------------------------------- /src/app/atoms/segmented-controls/SegmentedControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/segmented-controls/SegmentedControls.jsx -------------------------------------------------------------------------------- /src/app/atoms/segmented-controls/SegmentedControls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/segmented-controls/SegmentedControls.scss -------------------------------------------------------------------------------- /src/app/atoms/system-icons/RawIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/system-icons/RawIcon.jsx -------------------------------------------------------------------------------- /src/app/atoms/system-icons/RawIcon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/system-icons/RawIcon.scss -------------------------------------------------------------------------------- /src/app/atoms/text/Text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/text/Text.jsx -------------------------------------------------------------------------------- /src/app/atoms/text/Text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/text/Text.scss -------------------------------------------------------------------------------- /src/app/atoms/time/Time.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/time/Time.jsx -------------------------------------------------------------------------------- /src/app/atoms/transparent-appbar/TransparentAppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/transparent-appbar/TransparentAppBar.tsx -------------------------------------------------------------------------------- /src/app/atoms/user-select/UserSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/atoms/user-select/UserSelect.jsx -------------------------------------------------------------------------------- /src/app/components/AuthFlowsLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/AuthFlowsLoader.tsx -------------------------------------------------------------------------------- /src/app/components/BackRouteHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/BackRouteHandler.tsx -------------------------------------------------------------------------------- /src/app/components/CapabilitiesAndMediaConfigLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/CapabilitiesAndMediaConfigLoader.tsx -------------------------------------------------------------------------------- /src/app/components/CapabilitiesLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/CapabilitiesLoader.tsx -------------------------------------------------------------------------------- /src/app/components/ClientConfigLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/ClientConfigLoader.tsx -------------------------------------------------------------------------------- /src/app/components/ConfirmPasswordMatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/ConfirmPasswordMatch.tsx -------------------------------------------------------------------------------- /src/app/components/HideOnScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/HideOnScroll.tsx -------------------------------------------------------------------------------- /src/app/components/LinearProgressWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/LinearProgressWithLabel.tsx -------------------------------------------------------------------------------- /src/app/components/MediaConfigLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/MediaConfigLoader.tsx -------------------------------------------------------------------------------- /src/app/components/Pdf-viewer/PdfViewer.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/Pdf-viewer/PdfViewer.css.ts -------------------------------------------------------------------------------- /src/app/components/Pdf-viewer/PdfViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/Pdf-viewer/PdfViewer.tsx -------------------------------------------------------------------------------- /src/app/components/Pdf-viewer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PdfViewer'; 2 | -------------------------------------------------------------------------------- /src/app/components/RenderMessageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/RenderMessageContent.tsx -------------------------------------------------------------------------------- /src/app/components/RoomSummaryLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/RoomSummaryLoader.tsx -------------------------------------------------------------------------------- /src/app/components/RoomUnreadProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/RoomUnreadProvider.tsx -------------------------------------------------------------------------------- /src/app/components/SpaceChildDirectsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/SpaceChildDirectsProvider.tsx -------------------------------------------------------------------------------- /src/app/components/SpaceChildRoomsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/SpaceChildRoomsProvider.tsx -------------------------------------------------------------------------------- /src/app/components/SpecVersionsLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/SpecVersionsLoader.tsx -------------------------------------------------------------------------------- /src/app/components/SupportedUIAFlowsLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/SupportedUIAFlowsLoader.tsx -------------------------------------------------------------------------------- /src/app/components/UIAFlowOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/UIAFlowOverlay.tsx -------------------------------------------------------------------------------- /src/app/components/UseStateProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/UseStateProvider.tsx -------------------------------------------------------------------------------- /src/app/components/editor/Editor.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/Editor.css.ts -------------------------------------------------------------------------------- /src/app/components/editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/Editor.tsx -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/AutocompleteMenu.css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/AutocompleteMenu.css.tsx -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/AutocompleteMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/AutocompleteMenu.tsx -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/EmoticonAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/EmoticonAutocomplete.tsx -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/RoomMentionAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/RoomMentionAutocomplete.tsx -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/UserMentionAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/UserMentionAutocomplete.tsx -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/autocompleteQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/autocompleteQuery.ts -------------------------------------------------------------------------------- /src/app/components/editor/autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/autocomplete/index.ts -------------------------------------------------------------------------------- /src/app/components/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/index.ts -------------------------------------------------------------------------------- /src/app/components/editor/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/input.ts -------------------------------------------------------------------------------- /src/app/components/editor/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/keyboard.ts -------------------------------------------------------------------------------- /src/app/components/editor/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/output.ts -------------------------------------------------------------------------------- /src/app/components/editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/types.ts -------------------------------------------------------------------------------- /src/app/components/editor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/editor/utils.ts -------------------------------------------------------------------------------- /src/app/components/emoji-board/EmojiBoard.css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/emoji-board/EmojiBoard.css.tsx -------------------------------------------------------------------------------- /src/app/components/emoji-board/EmojiBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/emoji-board/EmojiBoard.tsx -------------------------------------------------------------------------------- /src/app/components/emoji-board/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EmojiBoard'; 2 | -------------------------------------------------------------------------------- /src/app/components/emoji-board/useEmojiGroupIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/emoji-board/useEmojiGroupIcons.ts -------------------------------------------------------------------------------- /src/app/components/emoji-board/useEmojiGroupLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/emoji-board/useEmojiGroupLabels.ts -------------------------------------------------------------------------------- /src/app/components/event-readers/EventReaders.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/event-readers/EventReaders.css.ts -------------------------------------------------------------------------------- /src/app/components/event-readers/EventReaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/event-readers/EventReaders.tsx -------------------------------------------------------------------------------- /src/app/components/event-readers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EventReaders'; 2 | -------------------------------------------------------------------------------- /src/app/components/fab/FAB.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/fab/FAB.css.ts -------------------------------------------------------------------------------- /src/app/components/fab/FAB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/fab/FAB.tsx -------------------------------------------------------------------------------- /src/app/components/hidden-content/HiddenContent.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/hidden-content/HiddenContent.css.ts -------------------------------------------------------------------------------- /src/app/components/hidden-content/HiddenContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/hidden-content/HiddenContent.tsx -------------------------------------------------------------------------------- /src/app/components/image-viewer/ImageViewer.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/image-viewer/ImageViewer.css.ts -------------------------------------------------------------------------------- /src/app/components/image-viewer/ImageViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/image-viewer/ImageViewer.tsx -------------------------------------------------------------------------------- /src/app/components/image-viewer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ImageViewer'; 2 | -------------------------------------------------------------------------------- /src/app/components/leave-room-prompt/LeaveRoomPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/leave-room-prompt/LeaveRoomPrompt.tsx -------------------------------------------------------------------------------- /src/app/components/leave-room-prompt/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LeaveRoomPrompt'; 2 | -------------------------------------------------------------------------------- /src/app/components/leave-space-prompt/LeaveSpacePrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/leave-space-prompt/LeaveSpacePrompt.tsx -------------------------------------------------------------------------------- /src/app/components/leave-space-prompt/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LeaveSpacePrompt'; 2 | -------------------------------------------------------------------------------- /src/app/components/media/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/media/Image.tsx -------------------------------------------------------------------------------- /src/app/components/media/MediaControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/media/MediaControls.tsx -------------------------------------------------------------------------------- /src/app/components/media/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/media/Video.tsx -------------------------------------------------------------------------------- /src/app/components/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/media/index.ts -------------------------------------------------------------------------------- /src/app/components/media/media.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/media/media.css.ts -------------------------------------------------------------------------------- /src/app/components/message/FileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/FileHeader.tsx -------------------------------------------------------------------------------- /src/app/components/message/MsgTypeRenderers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/MsgTypeRenderers.tsx -------------------------------------------------------------------------------- /src/app/components/message/Reaction.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/Reaction.css.ts -------------------------------------------------------------------------------- /src/app/components/message/Reaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/Reaction.tsx -------------------------------------------------------------------------------- /src/app/components/message/RenderBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/RenderBody.tsx -------------------------------------------------------------------------------- /src/app/components/message/Reply.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/Reply.css.ts -------------------------------------------------------------------------------- /src/app/components/message/Reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/Reply.tsx -------------------------------------------------------------------------------- /src/app/components/message/Time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/Time.tsx -------------------------------------------------------------------------------- /src/app/components/message/attachment/Attachment.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/attachment/Attachment.css.ts -------------------------------------------------------------------------------- /src/app/components/message/attachment/Attachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/attachment/Attachment.tsx -------------------------------------------------------------------------------- /src/app/components/message/attachment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Attachment'; 2 | -------------------------------------------------------------------------------- /src/app/components/message/content/AudioContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/AudioContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/EventContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/EventContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/FallbackContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/FallbackContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/FileContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/FileContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/ImageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/ImageContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/PollContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/PollContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/ThumbnailContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/ThumbnailContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/VideoContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/VideoContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/VoiceContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/VoiceContent.tsx -------------------------------------------------------------------------------- /src/app/components/message/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/index.ts -------------------------------------------------------------------------------- /src/app/components/message/content/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/style.css.ts -------------------------------------------------------------------------------- /src/app/components/message/content/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/content/util.ts -------------------------------------------------------------------------------- /src/app/components/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/index.ts -------------------------------------------------------------------------------- /src/app/components/message/layout/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/layout/Base.tsx -------------------------------------------------------------------------------- /src/app/components/message/layout/Bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/layout/Bubble.tsx -------------------------------------------------------------------------------- /src/app/components/message/layout/Compact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/layout/Compact.tsx -------------------------------------------------------------------------------- /src/app/components/message/layout/Modern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/layout/Modern.tsx -------------------------------------------------------------------------------- /src/app/components/message/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/layout/index.ts -------------------------------------------------------------------------------- /src/app/components/message/layout/layout.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/layout/layout.css.ts -------------------------------------------------------------------------------- /src/app/components/message/placeholder/CompactPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/placeholder/CompactPlaceholder.tsx -------------------------------------------------------------------------------- /src/app/components/message/placeholder/DefaultPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/placeholder/DefaultPlaceholder.tsx -------------------------------------------------------------------------------- /src/app/components/message/placeholder/LinePlaceholder.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/placeholder/LinePlaceholder.css.ts -------------------------------------------------------------------------------- /src/app/components/message/placeholder/LinePlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/placeholder/LinePlaceholder.tsx -------------------------------------------------------------------------------- /src/app/components/message/placeholder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/message/placeholder/index.ts -------------------------------------------------------------------------------- /src/app/components/modal/Modal.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/modal/Modal.css.ts -------------------------------------------------------------------------------- /src/app/components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/modal/Modal.tsx -------------------------------------------------------------------------------- /src/app/components/nav/NavCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/NavCategory.tsx -------------------------------------------------------------------------------- /src/app/components/nav/NavCategoryHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/NavCategoryHeader.tsx -------------------------------------------------------------------------------- /src/app/components/nav/NavEmptyLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/NavEmptyLayout.tsx -------------------------------------------------------------------------------- /src/app/components/nav/NavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/NavItem.tsx -------------------------------------------------------------------------------- /src/app/components/nav/NavItemContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/NavItemContent.tsx -------------------------------------------------------------------------------- /src/app/components/nav/NavItemOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/NavItemOptions.tsx -------------------------------------------------------------------------------- /src/app/components/nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/index.ts -------------------------------------------------------------------------------- /src/app/components/nav/styles.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/nav/styles.css.ts -------------------------------------------------------------------------------- /src/app/components/page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/page/Page.tsx -------------------------------------------------------------------------------- /src/app/components/page/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Page'; 2 | -------------------------------------------------------------------------------- /src/app/components/page/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/page/style.css.ts -------------------------------------------------------------------------------- /src/app/components/password-input/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/password-input/PasswordInput.tsx -------------------------------------------------------------------------------- /src/app/components/progressbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/progressbar/index.tsx -------------------------------------------------------------------------------- /src/app/components/prominient-toolbar/ProminientToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/prominient-toolbar/ProminientToolbar.tsx -------------------------------------------------------------------------------- /src/app/components/room-avatar/RoomAvatar.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-avatar/RoomAvatar.css.ts -------------------------------------------------------------------------------- /src/app/components/room-avatar/RoomAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-avatar/RoomAvatar.tsx -------------------------------------------------------------------------------- /src/app/components/room-avatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RoomAvatar'; 2 | -------------------------------------------------------------------------------- /src/app/components/room-card/RoomCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-card/RoomCard.tsx -------------------------------------------------------------------------------- /src/app/components/room-card/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RoomCard'; 2 | -------------------------------------------------------------------------------- /src/app/components/room-card/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-card/style.css.ts -------------------------------------------------------------------------------- /src/app/components/room-intro/RoomIntro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-intro/RoomIntro.tsx -------------------------------------------------------------------------------- /src/app/components/room-intro/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RoomIntro'; 2 | -------------------------------------------------------------------------------- /src/app/components/room-topic-viewer/RoomTopicViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-topic-viewer/RoomTopicViewer.tsx -------------------------------------------------------------------------------- /src/app/components/room-topic-viewer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RoomTopicViewer'; 2 | -------------------------------------------------------------------------------- /src/app/components/room-topic-viewer/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/room-topic-viewer/style.css.ts -------------------------------------------------------------------------------- /src/app/components/scroll-top-container/ScrollTopContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/scroll-top-container/ScrollTopContainer.tsx -------------------------------------------------------------------------------- /src/app/components/scroll-top-container/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ScrollTopContainer'; 2 | -------------------------------------------------------------------------------- /src/app/components/scroll-top-container/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/scroll-top-container/style.css.ts -------------------------------------------------------------------------------- /src/app/components/sequence-card/SequenceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sequence-card/SequenceCard.tsx -------------------------------------------------------------------------------- /src/app/components/sequence-card/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SequenceCard'; 2 | -------------------------------------------------------------------------------- /src/app/components/sequence-card/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sequence-card/style.css.ts -------------------------------------------------------------------------------- /src/app/components/sidebar/Sidebar.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/Sidebar.css.ts -------------------------------------------------------------------------------- /src/app/components/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/components/sidebar/SidebarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/SidebarContent.tsx -------------------------------------------------------------------------------- /src/app/components/sidebar/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/SidebarItem.tsx -------------------------------------------------------------------------------- /src/app/components/sidebar/SidebarStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/SidebarStack.tsx -------------------------------------------------------------------------------- /src/app/components/sidebar/SidebarStackSeparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/SidebarStackSeparator.tsx -------------------------------------------------------------------------------- /src/app/components/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/sidebar/index.ts -------------------------------------------------------------------------------- /src/app/components/splash-screen/SplashScreen.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/splash-screen/SplashScreen.css.ts -------------------------------------------------------------------------------- /src/app/components/splash-screen/SplashScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/splash-screen/SplashScreen.tsx -------------------------------------------------------------------------------- /src/app/components/splash-screen/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SplashScreen'; 2 | -------------------------------------------------------------------------------- /src/app/components/text-viewer/TextViewer.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/text-viewer/TextViewer.css.ts -------------------------------------------------------------------------------- /src/app/components/text-viewer/TextViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/text-viewer/TextViewer.tsx -------------------------------------------------------------------------------- /src/app/components/text-viewer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TextViewer'; 2 | -------------------------------------------------------------------------------- /src/app/components/typing-indicator/TypingIndicator.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/typing-indicator/TypingIndicator.css.ts -------------------------------------------------------------------------------- /src/app/components/typing-indicator/TypingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/typing-indicator/TypingIndicator.tsx -------------------------------------------------------------------------------- /src/app/components/typing-indicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TypingIndicator'; 2 | -------------------------------------------------------------------------------- /src/app/components/uia-stages/DummyStage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/DummyStage.tsx -------------------------------------------------------------------------------- /src/app/components/uia-stages/EmailStage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/EmailStage.tsx -------------------------------------------------------------------------------- /src/app/components/uia-stages/ReCaptchaStage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/ReCaptchaStage.tsx -------------------------------------------------------------------------------- /src/app/components/uia-stages/RegistrationTokenStage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/RegistrationTokenStage.tsx -------------------------------------------------------------------------------- /src/app/components/uia-stages/TermsStage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/TermsStage.tsx -------------------------------------------------------------------------------- /src/app/components/uia-stages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/index.ts -------------------------------------------------------------------------------- /src/app/components/uia-stages/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/uia-stages/types.ts -------------------------------------------------------------------------------- /src/app/components/unread-badge/UnreadBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/unread-badge/UnreadBadge.tsx -------------------------------------------------------------------------------- /src/app/components/unread-badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UnreadBadge'; 2 | -------------------------------------------------------------------------------- /src/app/components/upload-board/UploadBoard.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/upload-board/UploadBoard.css.ts -------------------------------------------------------------------------------- /src/app/components/upload-board/UploadBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/upload-board/UploadBoard.tsx -------------------------------------------------------------------------------- /src/app/components/upload-board/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UploadBoard'; 2 | -------------------------------------------------------------------------------- /src/app/components/upload-card/UploadCard.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/upload-card/UploadCard.css.ts -------------------------------------------------------------------------------- /src/app/components/upload-card/UploadCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/upload-card/UploadCard.tsx -------------------------------------------------------------------------------- /src/app/components/upload-card/UploadCardRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/upload-card/UploadCardRenderer.tsx -------------------------------------------------------------------------------- /src/app/components/upload-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/upload-card/index.ts -------------------------------------------------------------------------------- /src/app/components/url-preview/UrlPreview.css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/url-preview/UrlPreview.css.tsx -------------------------------------------------------------------------------- /src/app/components/url-preview/UrlPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/url-preview/UrlPreview.tsx -------------------------------------------------------------------------------- /src/app/components/url-preview/UrlPreviewCard.css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/url-preview/UrlPreviewCard.css.tsx -------------------------------------------------------------------------------- /src/app/components/url-preview/UrlPreviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/url-preview/UrlPreviewCard.tsx -------------------------------------------------------------------------------- /src/app/components/url-preview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/url-preview/index.ts -------------------------------------------------------------------------------- /src/app/components/user-avatar/UserAvatar.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/user-avatar/UserAvatar.css.ts -------------------------------------------------------------------------------- /src/app/components/user-avatar/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/user-avatar/UserAvatar.tsx -------------------------------------------------------------------------------- /src/app/components/user-avatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UserAvatar'; 2 | -------------------------------------------------------------------------------- /src/app/components/verification-badge/VerificationBadge.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/verification-badge/VerificationBadge.css.ts -------------------------------------------------------------------------------- /src/app/components/verification-badge/VerificationBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/verification-badge/VerificationBadge.tsx -------------------------------------------------------------------------------- /src/app/components/virtualizer/VirtualTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/virtualizer/VirtualTile.tsx -------------------------------------------------------------------------------- /src/app/components/virtualizer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VirtualTile'; 2 | -------------------------------------------------------------------------------- /src/app/components/virtualizer/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/virtualizer/style.css.ts -------------------------------------------------------------------------------- /src/app/components/widget/WidgetItem.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/widget/WidgetItem.css.ts -------------------------------------------------------------------------------- /src/app/components/widget/WidgetItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/components/widget/WidgetItem.tsx -------------------------------------------------------------------------------- /src/app/cs-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/cs-api.ts -------------------------------------------------------------------------------- /src/app/cs-errorcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/cs-errorcode.ts -------------------------------------------------------------------------------- /src/app/features/join-before-navigate/JoinBeforeNavigate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/join-before-navigate/JoinBeforeNavigate.tsx -------------------------------------------------------------------------------- /src/app/features/join-before-navigate/index.ts: -------------------------------------------------------------------------------- 1 | export * from './JoinBeforeNavigate'; 2 | -------------------------------------------------------------------------------- /src/app/features/lobby/DnD.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/DnD.css.ts -------------------------------------------------------------------------------- /src/app/features/lobby/DnD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/DnD.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/HierarchyItemMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/HierarchyItemMenu.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/Lobby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/Lobby.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/LobbyHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/LobbyHeader.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/LobbyHero.css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/LobbyHero.css.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/LobbyHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/LobbyHero.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/RoomItem.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/RoomItem.css.ts -------------------------------------------------------------------------------- /src/app/features/lobby/RoomItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/RoomItem.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/SpaceItem.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/SpaceItem.css.ts -------------------------------------------------------------------------------- /src/app/features/lobby/SpaceItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/SpaceItem.tsx -------------------------------------------------------------------------------- /src/app/features/lobby/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Lobby'; 2 | -------------------------------------------------------------------------------- /src/app/features/lobby/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/lobby/style.css.ts -------------------------------------------------------------------------------- /src/app/features/message-search/MessageSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/message-search/MessageSearch.tsx -------------------------------------------------------------------------------- /src/app/features/message-search/SearchFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/message-search/SearchFilters.tsx -------------------------------------------------------------------------------- /src/app/features/message-search/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/message-search/SearchInput.tsx -------------------------------------------------------------------------------- /src/app/features/message-search/SearchResultGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/message-search/SearchResultGroup.tsx -------------------------------------------------------------------------------- /src/app/features/message-search/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MessageSearch'; 2 | -------------------------------------------------------------------------------- /src/app/features/message-search/useMessageSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/message-search/useMessageSearch.ts -------------------------------------------------------------------------------- /src/app/features/room-nav/RoomNavCategoryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room-nav/RoomNavCategoryButton.tsx -------------------------------------------------------------------------------- /src/app/features/room-nav/RoomNavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room-nav/RoomNavItem.tsx -------------------------------------------------------------------------------- /src/app/features/room-nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room-nav/index.ts -------------------------------------------------------------------------------- /src/app/features/room-nav/styles.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room-nav/styles.css.ts -------------------------------------------------------------------------------- /src/app/features/room/AsyncLoadMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/AsyncLoadMessage.tsx -------------------------------------------------------------------------------- /src/app/features/room/CommandAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/CommandAutocomplete.tsx -------------------------------------------------------------------------------- /src/app/features/room/MembersDrawer.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/MembersDrawer.css.ts -------------------------------------------------------------------------------- /src/app/features/room/MembersDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/MembersDrawer.tsx -------------------------------------------------------------------------------- /src/app/features/room/NewPollMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/NewPollMenu.tsx -------------------------------------------------------------------------------- /src/app/features/room/PinnedMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/PinnedMessages.tsx -------------------------------------------------------------------------------- /src/app/features/room/Room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/Room.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomCall.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomCall.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomCall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomCall.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomInput.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomInputPlaceholder.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomInputPlaceholder.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomInputPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomInputPlaceholder.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomTimeline.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomTimeline.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomTimeline.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomTombstone.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomTombstone.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomTombstone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomTombstone.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomView.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomViewFollowing.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomViewFollowing.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomViewFollowing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomViewFollowing.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomViewHeader.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomViewHeader.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomViewHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomViewHeader.tsx -------------------------------------------------------------------------------- /src/app/features/room/RoomViewTyping.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomViewTyping.css.ts -------------------------------------------------------------------------------- /src/app/features/room/RoomViewTyping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/RoomViewTyping.tsx -------------------------------------------------------------------------------- /src/app/features/room/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Room'; 2 | -------------------------------------------------------------------------------- /src/app/features/room/message/EncryptedContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/EncryptedContent.tsx -------------------------------------------------------------------------------- /src/app/features/room/message/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/Message.tsx -------------------------------------------------------------------------------- /src/app/features/room/message/MessageEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/MessageEditor.tsx -------------------------------------------------------------------------------- /src/app/features/room/message/Reactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/Reactions.tsx -------------------------------------------------------------------------------- /src/app/features/room/message/ThreadPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/ThreadPreview.tsx -------------------------------------------------------------------------------- /src/app/features/room/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/index.ts -------------------------------------------------------------------------------- /src/app/features/room/message/styles.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/message/styles.css.ts -------------------------------------------------------------------------------- /src/app/features/room/msgContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/msgContent.ts -------------------------------------------------------------------------------- /src/app/features/room/reaction-viewer/ReactionViewer.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/reaction-viewer/ReactionViewer.css.ts -------------------------------------------------------------------------------- /src/app/features/room/reaction-viewer/ReactionViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/room/reaction-viewer/ReactionViewer.tsx -------------------------------------------------------------------------------- /src/app/features/room/reaction-viewer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ReactionViewer'; 2 | -------------------------------------------------------------------------------- /src/app/features/settings/AuthRequest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/AuthRequest.jsx -------------------------------------------------------------------------------- /src/app/features/settings/AuthRequest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/AuthRequest.scss -------------------------------------------------------------------------------- /src/app/features/settings/CrossSigning.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/CrossSigning.jsx -------------------------------------------------------------------------------- /src/app/features/settings/CrossSigning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/CrossSigning.scss -------------------------------------------------------------------------------- /src/app/features/settings/DeviceManage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/DeviceManage.jsx -------------------------------------------------------------------------------- /src/app/features/settings/DeviceManage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/DeviceManage.scss -------------------------------------------------------------------------------- /src/app/features/settings/KeyBackup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/KeyBackup.jsx -------------------------------------------------------------------------------- /src/app/features/settings/KeyBackup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/KeyBackup.scss -------------------------------------------------------------------------------- /src/app/features/settings/SecretStorageAccess.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/SecretStorageAccess.jsx -------------------------------------------------------------------------------- /src/app/features/settings/SecretStorageAccess.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/SecretStorageAccess.scss -------------------------------------------------------------------------------- /src/app/features/settings/Settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/Settings.scss -------------------------------------------------------------------------------- /src/app/features/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/Settings.tsx -------------------------------------------------------------------------------- /src/app/features/settings/Themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/Themes.scss -------------------------------------------------------------------------------- /src/app/features/settings/Themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/settings/Themes.tsx -------------------------------------------------------------------------------- /src/app/features/thread/Thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/Thread.tsx -------------------------------------------------------------------------------- /src/app/features/thread/ThreadTimeline.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadTimeline.css.ts -------------------------------------------------------------------------------- /src/app/features/thread/ThreadTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadTimeline.tsx -------------------------------------------------------------------------------- /src/app/features/thread/ThreadView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadView.tsx -------------------------------------------------------------------------------- /src/app/features/thread/ThreadViewFollowing.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadViewFollowing.css.ts -------------------------------------------------------------------------------- /src/app/features/thread/ThreadViewFollowing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadViewFollowing.tsx -------------------------------------------------------------------------------- /src/app/features/thread/ThreadViewHeader.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadViewHeader.css.ts -------------------------------------------------------------------------------- /src/app/features/thread/ThreadViewHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadViewHeader.tsx -------------------------------------------------------------------------------- /src/app/features/thread/ThreadViewTyping.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadViewTyping.css.ts -------------------------------------------------------------------------------- /src/app/features/thread/ThreadViewTyping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/thread/ThreadViewTyping.tsx -------------------------------------------------------------------------------- /src/app/features/widget/IntegrationManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/widget/IntegrationManager.tsx -------------------------------------------------------------------------------- /src/app/features/widget/WidgetIFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/features/widget/WidgetIFrame.tsx -------------------------------------------------------------------------------- /src/app/hooks/cordova.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/cordova.ts -------------------------------------------------------------------------------- /src/app/hooks/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/index.ts -------------------------------------------------------------------------------- /src/app/hooks/media/useMediaLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/useMediaLoading.ts -------------------------------------------------------------------------------- /src/app/hooks/media/useMediaPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/useMediaPlay.ts -------------------------------------------------------------------------------- /src/app/hooks/media/useMediaPlayTimeCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/useMediaPlayTimeCallback.ts -------------------------------------------------------------------------------- /src/app/hooks/media/useMediaPlaybackRate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/useMediaPlaybackRate.ts -------------------------------------------------------------------------------- /src/app/hooks/media/useMediaSeek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/useMediaSeek.ts -------------------------------------------------------------------------------- /src/app/hooks/media/useMediaVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/media/useMediaVolume.ts -------------------------------------------------------------------------------- /src/app/hooks/router/useDirectSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/router/useDirectSelected.ts -------------------------------------------------------------------------------- /src/app/hooks/router/useExploreSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/router/useExploreSelected.ts -------------------------------------------------------------------------------- /src/app/hooks/router/useHomeSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/router/useHomeSelected.ts -------------------------------------------------------------------------------- /src/app/hooks/router/useInbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/router/useInbox.ts -------------------------------------------------------------------------------- /src/app/hooks/router/useSelectedRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/router/useSelectedRoom.ts -------------------------------------------------------------------------------- /src/app/hooks/router/useSelectedSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/router/useSelectedSpace.ts -------------------------------------------------------------------------------- /src/app/hooks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/types.ts -------------------------------------------------------------------------------- /src/app/hooks/useAccountData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAccountData.js -------------------------------------------------------------------------------- /src/app/hooks/useAccountDataCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAccountDataCallback.ts -------------------------------------------------------------------------------- /src/app/hooks/useAlive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAlive.ts -------------------------------------------------------------------------------- /src/app/hooks/useAsyncCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAsyncCallback.ts -------------------------------------------------------------------------------- /src/app/hooks/useAsyncSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAsyncSearch.ts -------------------------------------------------------------------------------- /src/app/hooks/useAuthFlows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAuthFlows.ts -------------------------------------------------------------------------------- /src/app/hooks/useAuthServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAuthServer.ts -------------------------------------------------------------------------------- /src/app/hooks/useAutoDiscoveryInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useAutoDiscoveryInfo.ts -------------------------------------------------------------------------------- /src/app/hooks/useBackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useBackButton.js -------------------------------------------------------------------------------- /src/app/hooks/useCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useCall.ts -------------------------------------------------------------------------------- /src/app/hooks/useCapabilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useCapabilities.ts -------------------------------------------------------------------------------- /src/app/hooks/useCategoryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useCategoryHandler.ts -------------------------------------------------------------------------------- /src/app/hooks/useClientConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useClientConfig.ts -------------------------------------------------------------------------------- /src/app/hooks/useCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useCommands.ts -------------------------------------------------------------------------------- /src/app/hooks/useCrossSigningStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useCrossSigningStatus.js -------------------------------------------------------------------------------- /src/app/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/app/hooks/useDeviceList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useDeviceList.ts -------------------------------------------------------------------------------- /src/app/hooks/useDocumentFocusChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useDocumentFocusChange.ts -------------------------------------------------------------------------------- /src/app/hooks/useElementSizeObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useElementSizeObserver.ts -------------------------------------------------------------------------------- /src/app/hooks/useFileDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useFileDrop.ts -------------------------------------------------------------------------------- /src/app/hooks/useFilePasteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useFilePasteHandler.ts -------------------------------------------------------------------------------- /src/app/hooks/useFilePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useFilePicker.ts -------------------------------------------------------------------------------- /src/app/hooks/useForceUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useForceUpdate.js -------------------------------------------------------------------------------- /src/app/hooks/useForceUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useForceUpdate.ts -------------------------------------------------------------------------------- /src/app/hooks/useHideableNav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useHideableNav.ts -------------------------------------------------------------------------------- /src/app/hooks/useImagePacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useImagePacks.ts -------------------------------------------------------------------------------- /src/app/hooks/useIntegrationManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useIntegrationManager.ts -------------------------------------------------------------------------------- /src/app/hooks/useIntersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useIntersectionObserver.ts -------------------------------------------------------------------------------- /src/app/hooks/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useInterval.ts -------------------------------------------------------------------------------- /src/app/hooks/useJoinedRoomId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useJoinedRoomId.ts -------------------------------------------------------------------------------- /src/app/hooks/useKeyDown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useKeyDown.ts -------------------------------------------------------------------------------- /src/app/hooks/useLocalRoomSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useLocalRoomSummary.ts -------------------------------------------------------------------------------- /src/app/hooks/useMatrixClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useMatrixClient.ts -------------------------------------------------------------------------------- /src/app/hooks/useMatrixEventRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useMatrixEventRenderer.ts -------------------------------------------------------------------------------- /src/app/hooks/useMediaConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useMediaConfig.ts -------------------------------------------------------------------------------- /src/app/hooks/useMemberEventParser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useMemberEventParser.tsx -------------------------------------------------------------------------------- /src/app/hooks/useModals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useModals.ts -------------------------------------------------------------------------------- /src/app/hooks/useNavToActivePathMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useNavToActivePathMapper.ts -------------------------------------------------------------------------------- /src/app/hooks/usePan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePan.ts -------------------------------------------------------------------------------- /src/app/hooks/useParsedLoginFlows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useParsedLoginFlows.ts -------------------------------------------------------------------------------- /src/app/hooks/usePasswordEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePasswordEmail.ts -------------------------------------------------------------------------------- /src/app/hooks/usePathWithOrigin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePathWithOrigin.ts -------------------------------------------------------------------------------- /src/app/hooks/usePermission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePermission.js -------------------------------------------------------------------------------- /src/app/hooks/usePowerLevelTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePowerLevelTags.ts -------------------------------------------------------------------------------- /src/app/hooks/usePowerLevels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePowerLevels.ts -------------------------------------------------------------------------------- /src/app/hooks/usePresences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePresences.ts -------------------------------------------------------------------------------- /src/app/hooks/usePreviousValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/usePreviousValue.ts -------------------------------------------------------------------------------- /src/app/hooks/useRecentEmoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRecentEmoji.ts -------------------------------------------------------------------------------- /src/app/hooks/useRegisterEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRegisterEmail.ts -------------------------------------------------------------------------------- /src/app/hooks/useRelations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRelations.ts -------------------------------------------------------------------------------- /src/app/hooks/useResizeObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useResizeObserver.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoom.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomEvent.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomEventReaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomEventReaders.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomLatestRenderedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomLatestRenderedEvent.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomMembers.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomMeta.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomNavigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomNavigate.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomPinnedEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomPinnedEvents.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomTags.ts -------------------------------------------------------------------------------- /src/app/hooks/useRoomTypingMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useRoomTypingMembers.ts -------------------------------------------------------------------------------- /src/app/hooks/useScreenSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useScreenSize.ts -------------------------------------------------------------------------------- /src/app/hooks/useSidebarItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useSidebarItems.ts -------------------------------------------------------------------------------- /src/app/hooks/useSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useSpace.ts -------------------------------------------------------------------------------- /src/app/hooks/useSpaceHierarchy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useSpaceHierarchy.ts -------------------------------------------------------------------------------- /src/app/hooks/useSpecVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useSpecVersions.ts -------------------------------------------------------------------------------- /src/app/hooks/useStateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useStateEvent.ts -------------------------------------------------------------------------------- /src/app/hooks/useStateEventCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useStateEventCallback.ts -------------------------------------------------------------------------------- /src/app/hooks/useStateEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useStateEvents.ts -------------------------------------------------------------------------------- /src/app/hooks/useStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useStore.js -------------------------------------------------------------------------------- /src/app/hooks/useSwipeLeft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useSwipeLeft.ts -------------------------------------------------------------------------------- /src/app/hooks/useSyncState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useSyncState.ts -------------------------------------------------------------------------------- /src/app/hooks/useThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useThread.ts -------------------------------------------------------------------------------- /src/app/hooks/useThreadLatestRenderedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useThreadLatestRenderedEvent.ts -------------------------------------------------------------------------------- /src/app/hooks/useThrottle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useThrottle.ts -------------------------------------------------------------------------------- /src/app/hooks/useTouchMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useTouchMenu.ts -------------------------------------------------------------------------------- /src/app/hooks/useTypingStatusUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useTypingStatusUpdater.ts -------------------------------------------------------------------------------- /src/app/hooks/useUIAFlows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useUIAFlows.ts -------------------------------------------------------------------------------- /src/app/hooks/useVirtualPaginator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useVirtualPaginator.ts -------------------------------------------------------------------------------- /src/app/hooks/useVoiceRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useVoiceRecorder.ts -------------------------------------------------------------------------------- /src/app/hooks/useZoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/hooks/useZoom.ts -------------------------------------------------------------------------------- /src/app/molecules/confirm-dialog/ConfirmDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/confirm-dialog/ConfirmDialog.jsx -------------------------------------------------------------------------------- /src/app/molecules/confirm-dialog/ConfirmDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/confirm-dialog/ConfirmDialog.scss -------------------------------------------------------------------------------- /src/app/molecules/dialog/ReusableDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/dialog/ReusableDialog.jsx -------------------------------------------------------------------------------- /src/app/molecules/fallback-avatar/FallbackAvatar.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/fallback-avatar/FallbackAvatar.css.ts -------------------------------------------------------------------------------- /src/app/molecules/fallback-avatar/FallbackAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/fallback-avatar/FallbackAvatar.tsx -------------------------------------------------------------------------------- /src/app/molecules/global-notification/GlobalNotification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/global-notification/GlobalNotification.jsx -------------------------------------------------------------------------------- /src/app/molecules/global-notification/IgnoreUserList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/global-notification/IgnoreUserList.jsx -------------------------------------------------------------------------------- /src/app/molecules/global-notification/IgnoreUserList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/global-notification/IgnoreUserList.scss -------------------------------------------------------------------------------- /src/app/molecules/global-notification/KeywordNotification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/global-notification/KeywordNotification.jsx -------------------------------------------------------------------------------- /src/app/molecules/global-notification/KeywordNotification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/global-notification/KeywordNotification.scss -------------------------------------------------------------------------------- /src/app/molecules/global-notification/NotificationSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/global-notification/NotificationSelector.jsx -------------------------------------------------------------------------------- /src/app/molecules/hide-reason-selector/HideReasonSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/hide-reason-selector/HideReasonSelector.jsx -------------------------------------------------------------------------------- /src/app/molecules/hide-reason-selector/HideReasonSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/hide-reason-selector/HideReasonSelector.scss -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePack.jsx -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePack.scss -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackItem.jsx -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackItem.scss -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackProfile.jsx -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackProfile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackProfile.scss -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackUpload.jsx -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackUpload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackUpload.scss -------------------------------------------------------------------------------- /src/app/molecules/image-pack/ImagePackUsageSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-pack/ImagePackUsageSelector.jsx -------------------------------------------------------------------------------- /src/app/molecules/image-upload/ImageUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-upload/ImageUpload.jsx -------------------------------------------------------------------------------- /src/app/molecules/image-upload/ImageUpload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/image-upload/ImageUpload.scss -------------------------------------------------------------------------------- /src/app/molecules/people-selector/PeopleSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/people-selector/PeopleSelector.jsx -------------------------------------------------------------------------------- /src/app/molecules/people-selector/PeopleSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/people-selector/PeopleSelector.scss -------------------------------------------------------------------------------- /src/app/molecules/power-level-selector/PowerLevelSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/power-level-selector/PowerLevelSelector.jsx -------------------------------------------------------------------------------- /src/app/molecules/power-level-selector/PowerLevelSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/power-level-selector/PowerLevelSelector.scss -------------------------------------------------------------------------------- /src/app/molecules/recording-indicator/RecordingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/recording-indicator/RecordingIndicator.tsx -------------------------------------------------------------------------------- /src/app/molecules/room-aliases/RoomAliases.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-aliases/RoomAliases.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-aliases/RoomAliases.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-aliases/RoomAliases.scss -------------------------------------------------------------------------------- /src/app/molecules/room-emojis/RoomEmojis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-emojis/RoomEmojis.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-emojis/RoomEmojis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-emojis/RoomEmojis.scss -------------------------------------------------------------------------------- /src/app/molecules/room-encryption/RoomEncryption.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-encryption/RoomEncryption.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-encryption/RoomEncryption.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-encryption/RoomEncryption.scss -------------------------------------------------------------------------------- /src/app/molecules/room-intro/RoomIntro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-intro/RoomIntro.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-intro/RoomIntro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-intro/RoomIntro.scss -------------------------------------------------------------------------------- /src/app/molecules/room-members/RoomMembers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-members/RoomMembers.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-members/RoomMembers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-members/RoomMembers.scss -------------------------------------------------------------------------------- /src/app/molecules/room-notification/RoomNotification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-notification/RoomNotification.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-notification/RoomNotification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-notification/RoomNotification.scss -------------------------------------------------------------------------------- /src/app/molecules/room-permissions/RoomPermissions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-permissions/RoomPermissions.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-permissions/RoomPermissions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-permissions/RoomPermissions.scss -------------------------------------------------------------------------------- /src/app/molecules/room-profile/RoomProfile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-profile/RoomProfile.scss -------------------------------------------------------------------------------- /src/app/molecules/room-profile/RoomProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-profile/RoomProfile.tsx -------------------------------------------------------------------------------- /src/app/molecules/room-selector/RoomSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-selector/RoomSelector.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-selector/RoomSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-selector/RoomSelector.scss -------------------------------------------------------------------------------- /src/app/molecules/room-tile/RoomTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-tile/RoomTile.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-tile/RoomTile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-tile/RoomTile.scss -------------------------------------------------------------------------------- /src/app/molecules/room-visibility/RoomVisibility.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-visibility/RoomVisibility.jsx -------------------------------------------------------------------------------- /src/app/molecules/room-visibility/RoomVisibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/room-visibility/RoomVisibility.scss -------------------------------------------------------------------------------- /src/app/molecules/setting-tile/SettingTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/setting-tile/SettingTile.jsx -------------------------------------------------------------------------------- /src/app/molecules/setting-tile/SettingTile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/setting-tile/SettingTile.scss -------------------------------------------------------------------------------- /src/app/molecules/space-add-existing/SpaceAddExisting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/space-add-existing/SpaceAddExisting.jsx -------------------------------------------------------------------------------- /src/app/molecules/space-add-existing/SpaceAddExisting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/molecules/space-add-existing/SpaceAddExisting.scss -------------------------------------------------------------------------------- /src/app/organisms/bookmarks/Bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/bookmarks/Bookmarks.tsx -------------------------------------------------------------------------------- /src/app/organisms/create-room/CreateRoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/create-room/CreateRoom.jsx -------------------------------------------------------------------------------- /src/app/organisms/create-room/CreateRoom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/create-room/CreateRoom.scss -------------------------------------------------------------------------------- /src/app/organisms/emoji-board/custom-emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/emoji-board/custom-emoji.js -------------------------------------------------------------------------------- /src/app/organisms/emoji-verification/EmojiVerification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/emoji-verification/EmojiVerification.jsx -------------------------------------------------------------------------------- /src/app/organisms/emoji-verification/EmojiVerification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/emoji-verification/EmojiVerification.scss -------------------------------------------------------------------------------- /src/app/organisms/error-screen/ErrorScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/error-screen/ErrorScreen.tsx -------------------------------------------------------------------------------- /src/app/organisms/geo-picker/GeolocationPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/geo-picker/GeolocationPicker.tsx -------------------------------------------------------------------------------- /src/app/organisms/invite-user/InviteUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/invite-user/InviteUser.jsx -------------------------------------------------------------------------------- /src/app/organisms/invite-user/InviteUser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/invite-user/InviteUser.scss -------------------------------------------------------------------------------- /src/app/organisms/join-alias/JoinAlias.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/join-alias/JoinAlias.jsx -------------------------------------------------------------------------------- /src/app/organisms/join-alias/JoinAlias.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/join-alias/JoinAlias.scss -------------------------------------------------------------------------------- /src/app/organisms/profile-editor/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-editor/Banner.jsx -------------------------------------------------------------------------------- /src/app/organisms/profile-editor/Banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-editor/Banner.scss -------------------------------------------------------------------------------- /src/app/organisms/profile-editor/ProfileEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-editor/ProfileEditor.jsx -------------------------------------------------------------------------------- /src/app/organisms/profile-editor/ProfileEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-editor/ProfileEditor.scss -------------------------------------------------------------------------------- /src/app/organisms/profile-viewer/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-viewer/Banner.jsx -------------------------------------------------------------------------------- /src/app/organisms/profile-viewer/Banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-viewer/Banner.scss -------------------------------------------------------------------------------- /src/app/organisms/profile-viewer/ProfileViewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-viewer/ProfileViewer.scss -------------------------------------------------------------------------------- /src/app/organisms/profile-viewer/ProfileViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/profile-viewer/ProfileViewer.tsx -------------------------------------------------------------------------------- /src/app/organisms/pw/Dialogs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/pw/Dialogs.jsx -------------------------------------------------------------------------------- /src/app/organisms/pw/Windows.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/pw/Windows.jsx -------------------------------------------------------------------------------- /src/app/organisms/room/RoomSettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/room/RoomSettings.scss -------------------------------------------------------------------------------- /src/app/organisms/room/RoomSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/room/RoomSettings.tsx -------------------------------------------------------------------------------- /src/app/organisms/share-menu/ShareMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/share-menu/ShareMenu.jsx -------------------------------------------------------------------------------- /src/app/organisms/share-menu/ShareMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/share-menu/ShareMenu.scss -------------------------------------------------------------------------------- /src/app/organisms/space-settings/SpaceSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/space-settings/SpaceSettings.jsx -------------------------------------------------------------------------------- /src/app/organisms/space-settings/SpaceSettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/space-settings/SpaceSettings.scss -------------------------------------------------------------------------------- /src/app/organisms/welcome/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/organisms/welcome/Welcome.jsx -------------------------------------------------------------------------------- /src/app/pages/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/App.tsx -------------------------------------------------------------------------------- /src/app/pages/ConfigConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/ConfigConfig.tsx -------------------------------------------------------------------------------- /src/app/pages/FeatureCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/FeatureCheck.tsx -------------------------------------------------------------------------------- /src/app/pages/MobileFriendly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/MobileFriendly.tsx -------------------------------------------------------------------------------- /src/app/pages/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/Router.tsx -------------------------------------------------------------------------------- /src/app/pages/afterLoginRedirectPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/afterLoginRedirectPath.ts -------------------------------------------------------------------------------- /src/app/pages/auth/AuthFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/AuthFooter.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/AuthLayout.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/FiledError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/FiledError.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/OrDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/OrDivider.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/SSOLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/SSOLogin.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/ServerPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/ServerPicker.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/index.ts -------------------------------------------------------------------------------- /src/app/pages/auth/login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/login/Login.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/login/PasswordLoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/login/PasswordLoginForm.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/login/TokenLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/login/TokenLogin.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/login/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Login'; 2 | -------------------------------------------------------------------------------- /src/app/pages/auth/login/loginUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/login/loginUtil.ts -------------------------------------------------------------------------------- /src/app/pages/auth/register/PasswordRegisterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/register/PasswordRegisterForm.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/register/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/register/Register.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/register/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Register'; 2 | -------------------------------------------------------------------------------- /src/app/pages/auth/register/registerUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/register/registerUtil.ts -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/PasswordResetForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/reset-password/PasswordResetForm.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/reset-password/ResetPassword.tsx -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ResetPassword'; 2 | -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/resetPasswordUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/reset-password/resetPasswordUtil.ts -------------------------------------------------------------------------------- /src/app/pages/auth/styles.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/auth/styles.css.ts -------------------------------------------------------------------------------- /src/app/pages/client/BottomNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/BottomNav.tsx -------------------------------------------------------------------------------- /src/app/pages/client/ClientBindAtoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/ClientBindAtoms.ts -------------------------------------------------------------------------------- /src/app/pages/client/ClientInitStorageAtom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/ClientInitStorageAtom.tsx -------------------------------------------------------------------------------- /src/app/pages/client/ClientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/ClientLayout.tsx -------------------------------------------------------------------------------- /src/app/pages/client/ClientNonUIFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/ClientNonUIFeatures.tsx -------------------------------------------------------------------------------- /src/app/pages/client/ClientRoot.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/ClientRoot.css.ts -------------------------------------------------------------------------------- /src/app/pages/client/ClientRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/ClientRoot.tsx -------------------------------------------------------------------------------- /src/app/pages/client/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/SearchBar.tsx -------------------------------------------------------------------------------- /src/app/pages/client/SidebarNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/SidebarNav.tsx -------------------------------------------------------------------------------- /src/app/pages/client/SpecVersions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/SpecVersions.tsx -------------------------------------------------------------------------------- /src/app/pages/client/SyncStateAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/SyncStateAlert.tsx -------------------------------------------------------------------------------- /src/app/pages/client/WelcomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/WelcomePage.tsx -------------------------------------------------------------------------------- /src/app/pages/client/direct/Direct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/direct/Direct.tsx -------------------------------------------------------------------------------- /src/app/pages/client/direct/RoomProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/direct/RoomProvider.tsx -------------------------------------------------------------------------------- /src/app/pages/client/direct/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/direct/index.ts -------------------------------------------------------------------------------- /src/app/pages/client/direct/useDirectRooms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/direct/useDirectRooms.ts -------------------------------------------------------------------------------- /src/app/pages/client/explore/Explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/explore/Explore.tsx -------------------------------------------------------------------------------- /src/app/pages/client/explore/Featured.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/explore/Featured.tsx -------------------------------------------------------------------------------- /src/app/pages/client/explore/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/explore/Server.tsx -------------------------------------------------------------------------------- /src/app/pages/client/explore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/explore/index.ts -------------------------------------------------------------------------------- /src/app/pages/client/explore/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/explore/style.css.ts -------------------------------------------------------------------------------- /src/app/pages/client/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/home/Home.tsx -------------------------------------------------------------------------------- /src/app/pages/client/home/RoomProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/home/RoomProvider.tsx -------------------------------------------------------------------------------- /src/app/pages/client/home/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/home/Search.tsx -------------------------------------------------------------------------------- /src/app/pages/client/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/home/index.ts -------------------------------------------------------------------------------- /src/app/pages/client/home/useHomeRooms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/home/useHomeRooms.ts -------------------------------------------------------------------------------- /src/app/pages/client/inbox/Inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/inbox/Inbox.tsx -------------------------------------------------------------------------------- /src/app/pages/client/inbox/Invites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/inbox/Invites.tsx -------------------------------------------------------------------------------- /src/app/pages/client/inbox/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/inbox/Notifications.tsx -------------------------------------------------------------------------------- /src/app/pages/client/inbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/inbox/index.ts -------------------------------------------------------------------------------- /src/app/pages/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/index.ts -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/DirectTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/DirectTab.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/ExploreTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/ExploreTab.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/HomeTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/HomeTab.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/InboxTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/InboxTab.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/SearchTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/SearchTab.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/SpaceTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/SpaceTabs.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/UserTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/UserTab.tsx -------------------------------------------------------------------------------- /src/app/pages/client/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/sidebar/index.ts -------------------------------------------------------------------------------- /src/app/pages/client/space/RoomProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/space/RoomProvider.tsx -------------------------------------------------------------------------------- /src/app/pages/client/space/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/space/Search.tsx -------------------------------------------------------------------------------- /src/app/pages/client/space/Space.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/space/Space.tsx -------------------------------------------------------------------------------- /src/app/pages/client/space/SpaceProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/space/SpaceProvider.tsx -------------------------------------------------------------------------------- /src/app/pages/client/space/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/client/space/index.ts -------------------------------------------------------------------------------- /src/app/pages/pathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/pathUtils.ts -------------------------------------------------------------------------------- /src/app/pages/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/pages/paths.ts -------------------------------------------------------------------------------- /src/app/partials/_dir.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/partials/_dir.scss -------------------------------------------------------------------------------- /src/app/partials/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/partials/_flex.scss -------------------------------------------------------------------------------- /src/app/partials/_screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/partials/_screen.scss -------------------------------------------------------------------------------- /src/app/partials/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/partials/_text.scss -------------------------------------------------------------------------------- /src/app/plugins/custom-emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/custom-emoji.ts -------------------------------------------------------------------------------- /src/app/plugins/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/emoji.ts -------------------------------------------------------------------------------- /src/app/plugins/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/markdown.ts -------------------------------------------------------------------------------- /src/app/plugins/millify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/millify.ts -------------------------------------------------------------------------------- /src/app/plugins/pdfjs-dist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/pdfjs-dist.ts -------------------------------------------------------------------------------- /src/app/plugins/react-custom-html-parser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/react-custom-html-parser.tsx -------------------------------------------------------------------------------- /src/app/plugins/react-prism/ReactPrism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/react-prism/ReactPrism.css -------------------------------------------------------------------------------- /src/app/plugins/react-prism/ReactPrism.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/react-prism/ReactPrism.tsx -------------------------------------------------------------------------------- /src/app/plugins/recent-emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/plugins/recent-emoji.ts -------------------------------------------------------------------------------- /src/app/state/closedLobbyCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/closedLobbyCategories.ts -------------------------------------------------------------------------------- /src/app/state/closedNavCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/closedNavCategories.ts -------------------------------------------------------------------------------- /src/app/state/hooks/closedLobbyCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/closedLobbyCategories.ts -------------------------------------------------------------------------------- /src/app/state/hooks/closedNavCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/closedNavCategories.ts -------------------------------------------------------------------------------- /src/app/state/hooks/inviteList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/inviteList.ts -------------------------------------------------------------------------------- /src/app/state/hooks/navToActivePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/navToActivePath.ts -------------------------------------------------------------------------------- /src/app/state/hooks/openedSidebarFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/openedSidebarFolder.ts -------------------------------------------------------------------------------- /src/app/state/hooks/roomList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/roomList.ts -------------------------------------------------------------------------------- /src/app/state/hooks/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/settings.ts -------------------------------------------------------------------------------- /src/app/state/hooks/unread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/unread.ts -------------------------------------------------------------------------------- /src/app/state/hooks/useBindAtoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/useBindAtoms.ts -------------------------------------------------------------------------------- /src/app/state/hooks/widgetPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/hooks/widgetPermissions.ts -------------------------------------------------------------------------------- /src/app/state/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/list.ts -------------------------------------------------------------------------------- /src/app/state/mDirectList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/mDirectList.ts -------------------------------------------------------------------------------- /src/app/state/navToActivePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/navToActivePath.ts -------------------------------------------------------------------------------- /src/app/state/openedSidebarFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/openedSidebarFolder.ts -------------------------------------------------------------------------------- /src/app/state/room-list/inviteList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room-list/inviteList.ts -------------------------------------------------------------------------------- /src/app/state/room-list/mutedRoomList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room-list/mutedRoomList.ts -------------------------------------------------------------------------------- /src/app/state/room-list/roomList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room-list/roomList.ts -------------------------------------------------------------------------------- /src/app/state/room-list/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room-list/utils.ts -------------------------------------------------------------------------------- /src/app/state/room/roomInputDrafts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room/roomInputDrafts.ts -------------------------------------------------------------------------------- /src/app/state/room/roomToParents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room/roomToParents.ts -------------------------------------------------------------------------------- /src/app/state/room/roomToUnread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/room/roomToUnread.ts -------------------------------------------------------------------------------- /src/app/state/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/sessions.ts -------------------------------------------------------------------------------- /src/app/state/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/settings.ts -------------------------------------------------------------------------------- /src/app/state/spaceRooms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/spaceRooms.ts -------------------------------------------------------------------------------- /src/app/state/typingMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/typingMembers.ts -------------------------------------------------------------------------------- /src/app/state/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/upload.ts -------------------------------------------------------------------------------- /src/app/state/utils/atomWithLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/utils/atomWithLocalStorage.ts -------------------------------------------------------------------------------- /src/app/state/widgetPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/state/widgetPermissions.ts -------------------------------------------------------------------------------- /src/app/styles/ContainerColor.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/styles/ContainerColor.css.ts -------------------------------------------------------------------------------- /src/app/styles/CustomHtml.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/styles/CustomHtml.css.ts -------------------------------------------------------------------------------- /src/app/styles/Patterns.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/styles/Patterns.css.ts -------------------------------------------------------------------------------- /src/app/utils/ASCIILexicalTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/ASCIILexicalTable.ts -------------------------------------------------------------------------------- /src/app/utils/AsyncSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/AsyncSearch.ts -------------------------------------------------------------------------------- /src/app/utils/blurHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/blurHash.ts -------------------------------------------------------------------------------- /src/app/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/cache.ts -------------------------------------------------------------------------------- /src/app/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/common.ts -------------------------------------------------------------------------------- /src/app/utils/disposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/disposable.ts -------------------------------------------------------------------------------- /src/app/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/dom.ts -------------------------------------------------------------------------------- /src/app/utils/eruda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/eruda.ts -------------------------------------------------------------------------------- /src/app/utils/featureCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/featureCheck.ts -------------------------------------------------------------------------------- /src/app/utils/findAndReplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/findAndReplace.ts -------------------------------------------------------------------------------- /src/app/utils/getVerificationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/getVerificationState.ts -------------------------------------------------------------------------------- /src/app/utils/key-symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/key-symbol.ts -------------------------------------------------------------------------------- /src/app/utils/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/keyboard.ts -------------------------------------------------------------------------------- /src/app/utils/matrix-uia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/matrix-uia.ts -------------------------------------------------------------------------------- /src/app/utils/matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/matrix.ts -------------------------------------------------------------------------------- /src/app/utils/mimeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/mimeTypes.ts -------------------------------------------------------------------------------- /src/app/utils/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/notifications.ts -------------------------------------------------------------------------------- /src/app/utils/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/regex.ts -------------------------------------------------------------------------------- /src/app/utils/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/room.ts -------------------------------------------------------------------------------- /src/app/utils/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/sanitize.ts -------------------------------------------------------------------------------- /src/app/utils/saveFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/saveFile.ts -------------------------------------------------------------------------------- /src/app/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/sort.ts -------------------------------------------------------------------------------- /src/app/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/time.ts -------------------------------------------------------------------------------- /src/app/utils/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/translation.ts -------------------------------------------------------------------------------- /src/app/utils/user-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/user-agent.ts -------------------------------------------------------------------------------- /src/app/utils/wallpaper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/app/utils/wallpaper.ts -------------------------------------------------------------------------------- /src/client/action/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/action/auth.ts -------------------------------------------------------------------------------- /src/client/action/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/action/navigation.js -------------------------------------------------------------------------------- /src/client/action/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/action/notifications.ts -------------------------------------------------------------------------------- /src/client/action/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/action/room.js -------------------------------------------------------------------------------- /src/client/action/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/action/settings.js -------------------------------------------------------------------------------- /src/client/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/dispatcher.js -------------------------------------------------------------------------------- /src/client/event/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/event/hotkeys.js -------------------------------------------------------------------------------- /src/client/initMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/initMatrix.js -------------------------------------------------------------------------------- /src/client/mx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/mx.ts -------------------------------------------------------------------------------- /src/client/state/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/state/auth.ts -------------------------------------------------------------------------------- /src/client/state/cons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/state/cons.js -------------------------------------------------------------------------------- /src/client/state/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/state/navigation.js -------------------------------------------------------------------------------- /src/client/state/secretStorageKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/state/secretStorageKeys.js -------------------------------------------------------------------------------- /src/client/state/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/state/settings.js -------------------------------------------------------------------------------- /src/client/workers/IndexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/workers/IndexedDB.ts -------------------------------------------------------------------------------- /src/client/workers/IndexedDBFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/client/workers/IndexedDBFactory.ts -------------------------------------------------------------------------------- /src/colors.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/colors.css.ts -------------------------------------------------------------------------------- /src/config.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/config.css.ts -------------------------------------------------------------------------------- /src/ext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/ext.d.ts -------------------------------------------------------------------------------- /src/fact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/fact.tsx -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/lang/index.jsx -------------------------------------------------------------------------------- /src/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/lang/ru.json -------------------------------------------------------------------------------- /src/push/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/push/index.js -------------------------------------------------------------------------------- /src/sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/sw.ts -------------------------------------------------------------------------------- /src/types/matrix/accountData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/types/matrix/accountData.ts -------------------------------------------------------------------------------- /src/types/matrix/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/types/matrix/common.ts -------------------------------------------------------------------------------- /src/types/matrix/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/types/matrix/room.ts -------------------------------------------------------------------------------- /src/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/types/utils.ts -------------------------------------------------------------------------------- /src/util/AsyncSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/AsyncSearch.js -------------------------------------------------------------------------------- /src/util/colorMXID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/colorMXID.js -------------------------------------------------------------------------------- /src/util/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/common.js -------------------------------------------------------------------------------- /src/util/conferenceID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/conferenceID.js -------------------------------------------------------------------------------- /src/util/cryptE2ERoomKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/cryptE2ERoomKeys.js -------------------------------------------------------------------------------- /src/util/matrixUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/matrixUtil.js -------------------------------------------------------------------------------- /src/util/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/src/util/sort.js -------------------------------------------------------------------------------- /translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/translate.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officialdakari/Extera/HEAD/vite.config.js --------------------------------------------------------------------------------