├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── .gitignore │ ├── act.sh │ ├── create-release.yml │ ├── on-release.yml │ ├── on-version-changed.yml │ ├── publish-release.yml │ └── pull-request.yml ├── .gitignore ├── .nvmrc ├── .wp-env.json ├── .wporg ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png └── screenshot-5.png ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bin ├── create-release-artifacts.sh └── prepare-release.sh ├── chatrix.php ├── composer.json ├── composer.lock ├── frontend ├── .env.development ├── app.ts ├── block │ ├── block.json │ ├── edit.tsx │ ├── editor.scss │ ├── index.ts │ ├── inspector │ │ ├── HomeserverPanel.tsx │ │ ├── InspectorControls.tsx │ │ ├── RoomPanel.tsx │ │ ├── StylePanel.tsx │ │ └── TextControlWithUnit.tsx │ └── view.ts ├── build-scripts │ ├── build-themes.js │ ├── color.js │ ├── svg-builder.js │ └── svg-colorizer.js ├── components │ ├── block │ │ ├── attributes.ts │ │ ├── block.tsx │ │ ├── index.tsx │ │ └── unit.ts │ ├── chat │ │ ├── chat.tsx │ │ ├── index.tsx │ │ ├── style.scss │ │ └── url.ts │ └── popup │ │ ├── index.tsx │ │ ├── popup.tsx │ │ └── style.scss ├── deps.d.ts ├── iframe.html ├── iframe │ ├── assets.ts │ ├── assets │ │ ├── icon-maskable.png │ │ ├── icon-maskable.svg │ │ ├── icon.png │ │ ├── icon.svg │ │ └── manifest.json │ ├── config │ │ ├── ConfigFactory.ts │ │ └── IConfig.ts │ ├── deps.d.ts │ ├── main.ts │ ├── platform │ │ ├── History.ts │ │ ├── Navigation.ts │ │ ├── Platform.ts │ │ ├── ServiceWorkerHandler.js │ │ ├── URLRouter.ts │ │ └── sw.js │ ├── styles │ │ └── theme │ │ │ ├── element-logo.svg │ │ │ ├── icons │ │ │ ├── cam-muted.svg │ │ │ ├── cam-unmuted.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-small.svg │ │ │ ├── chevron-thin-left.svg │ │ │ ├── clear.svg │ │ │ ├── disable-grid.svg │ │ │ ├── dismiss.svg │ │ │ ├── e2ee-disabled.svg │ │ │ ├── e2ee-normal.svg │ │ │ ├── enable-grid.svg │ │ │ ├── encryption-status.svg │ │ │ ├── hangup.svg │ │ │ ├── info.svg │ │ │ ├── mic-muted.svg │ │ │ ├── mic-unmuted.svg │ │ │ ├── paperclip.svg │ │ │ ├── plus.svg │ │ │ ├── room-members.svg │ │ │ ├── search.svg │ │ │ ├── send.svg │ │ │ ├── settings.svg │ │ │ ├── vertical-ellipsis.svg │ │ │ ├── video-call.svg │ │ │ └── voice-call.svg │ │ │ ├── manifest.json │ │ │ └── theme.css │ ├── viewmodels │ │ ├── RoomViewModel.ts │ │ ├── RootViewModel.ts │ │ ├── SessionViewModel.ts │ │ ├── SettingsViewModel.ts │ │ └── UnknownRoomVideoModel.ts │ └── views │ │ ├── RoomView.ts │ │ ├── RootView.ts │ │ └── SessionView.ts ├── index.html ├── logout.ts ├── vite-app.ts ├── vite-logout.ts └── vite.ts ├── package.json ├── phpcs.xml ├── src ├── Admin │ ├── Settings │ │ ├── settings.js │ │ └── settings.php │ └── admin.php ├── Block │ └── block.php ├── Popup │ ├── popup.js │ └── popup.php ├── Sessions │ └── logout.php └── plugin.php ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/.gitignore: -------------------------------------------------------------------------------- 1 | .secrets 2 | payload.json 3 | -------------------------------------------------------------------------------- /.github/workflows/act.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.github/workflows/act.sh -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.github/workflows/on-release.yml -------------------------------------------------------------------------------- /.github/workflows/on-version-changed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.github/workflows/on-version-changed.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v17.9.1 2 | -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.wp-env.json -------------------------------------------------------------------------------- /.wporg/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.wporg/screenshot-1.png -------------------------------------------------------------------------------- /.wporg/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.wporg/screenshot-2.png -------------------------------------------------------------------------------- /.wporg/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.wporg/screenshot-3.png -------------------------------------------------------------------------------- /.wporg/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.wporg/screenshot-4.png -------------------------------------------------------------------------------- /.wporg/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/.wporg/screenshot-5.png -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-release-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/bin/create-release-artifacts.sh -------------------------------------------------------------------------------- /bin/prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/bin/prepare-release.sh -------------------------------------------------------------------------------- /chatrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/chatrix.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/composer.lock -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- 1 | VITE_HOMESERVER="matrix.org" 2 | #VITE_ROOM_ID="!abc-123:example.com" 3 | -------------------------------------------------------------------------------- /frontend/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/app.ts -------------------------------------------------------------------------------- /frontend/block/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/block.json -------------------------------------------------------------------------------- /frontend/block/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/edit.tsx -------------------------------------------------------------------------------- /frontend/block/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/editor.scss -------------------------------------------------------------------------------- /frontend/block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/index.ts -------------------------------------------------------------------------------- /frontend/block/inspector/HomeserverPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/inspector/HomeserverPanel.tsx -------------------------------------------------------------------------------- /frontend/block/inspector/InspectorControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/inspector/InspectorControls.tsx -------------------------------------------------------------------------------- /frontend/block/inspector/RoomPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/inspector/RoomPanel.tsx -------------------------------------------------------------------------------- /frontend/block/inspector/StylePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/inspector/StylePanel.tsx -------------------------------------------------------------------------------- /frontend/block/inspector/TextControlWithUnit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/inspector/TextControlWithUnit.tsx -------------------------------------------------------------------------------- /frontend/block/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/block/view.ts -------------------------------------------------------------------------------- /frontend/build-scripts/build-themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/build-scripts/build-themes.js -------------------------------------------------------------------------------- /frontend/build-scripts/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/build-scripts/color.js -------------------------------------------------------------------------------- /frontend/build-scripts/svg-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/build-scripts/svg-builder.js -------------------------------------------------------------------------------- /frontend/build-scripts/svg-colorizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/build-scripts/svg-colorizer.js -------------------------------------------------------------------------------- /frontend/components/block/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/block/attributes.ts -------------------------------------------------------------------------------- /frontend/components/block/block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/block/block.tsx -------------------------------------------------------------------------------- /frontend/components/block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/block/index.tsx -------------------------------------------------------------------------------- /frontend/components/block/unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/block/unit.ts -------------------------------------------------------------------------------- /frontend/components/chat/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/chat/chat.tsx -------------------------------------------------------------------------------- /frontend/components/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/chat/index.tsx -------------------------------------------------------------------------------- /frontend/components/chat/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/chat/style.scss -------------------------------------------------------------------------------- /frontend/components/chat/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/chat/url.ts -------------------------------------------------------------------------------- /frontend/components/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/popup/index.tsx -------------------------------------------------------------------------------- /frontend/components/popup/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/popup/popup.tsx -------------------------------------------------------------------------------- /frontend/components/popup/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/components/popup/style.scss -------------------------------------------------------------------------------- /frontend/deps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/deps.d.ts -------------------------------------------------------------------------------- /frontend/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe.html -------------------------------------------------------------------------------- /frontend/iframe/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/assets.ts -------------------------------------------------------------------------------- /frontend/iframe/assets/icon-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/assets/icon-maskable.png -------------------------------------------------------------------------------- /frontend/iframe/assets/icon-maskable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/assets/icon-maskable.svg -------------------------------------------------------------------------------- /frontend/iframe/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/assets/icon.png -------------------------------------------------------------------------------- /frontend/iframe/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/assets/icon.svg -------------------------------------------------------------------------------- /frontend/iframe/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/assets/manifest.json -------------------------------------------------------------------------------- /frontend/iframe/config/ConfigFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/config/ConfigFactory.ts -------------------------------------------------------------------------------- /frontend/iframe/config/IConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/config/IConfig.ts -------------------------------------------------------------------------------- /frontend/iframe/deps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/deps.d.ts -------------------------------------------------------------------------------- /frontend/iframe/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/main.ts -------------------------------------------------------------------------------- /frontend/iframe/platform/History.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/platform/History.ts -------------------------------------------------------------------------------- /frontend/iframe/platform/Navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/platform/Navigation.ts -------------------------------------------------------------------------------- /frontend/iframe/platform/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/platform/Platform.ts -------------------------------------------------------------------------------- /frontend/iframe/platform/ServiceWorkerHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/platform/ServiceWorkerHandler.js -------------------------------------------------------------------------------- /frontend/iframe/platform/URLRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/platform/URLRouter.ts -------------------------------------------------------------------------------- /frontend/iframe/platform/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/platform/sw.js -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/element-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/element-logo.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/cam-muted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/cam-muted.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/cam-unmuted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/cam-unmuted.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/chevron-down.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/chevron-left.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/chevron-right.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/chevron-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/chevron-small.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/chevron-thin-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/chevron-thin-left.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/clear.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/disable-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/disable-grid.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/dismiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/dismiss.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/e2ee-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/e2ee-disabled.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/e2ee-normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/e2ee-normal.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/enable-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/enable-grid.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/encryption-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/encryption-status.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/hangup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/hangup.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/info.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/mic-muted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/mic-muted.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/mic-unmuted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/mic-unmuted.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/paperclip.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/plus.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/room-members.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/room-members.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/search.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/send.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/settings.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/vertical-ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/vertical-ellipsis.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/video-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/video-call.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/icons/voice-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/icons/voice-call.svg -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/manifest.json -------------------------------------------------------------------------------- /frontend/iframe/styles/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/styles/theme/theme.css -------------------------------------------------------------------------------- /frontend/iframe/viewmodels/RoomViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/viewmodels/RoomViewModel.ts -------------------------------------------------------------------------------- /frontend/iframe/viewmodels/RootViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/viewmodels/RootViewModel.ts -------------------------------------------------------------------------------- /frontend/iframe/viewmodels/SessionViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/viewmodels/SessionViewModel.ts -------------------------------------------------------------------------------- /frontend/iframe/viewmodels/SettingsViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/viewmodels/SettingsViewModel.ts -------------------------------------------------------------------------------- /frontend/iframe/viewmodels/UnknownRoomVideoModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/viewmodels/UnknownRoomVideoModel.ts -------------------------------------------------------------------------------- /frontend/iframe/views/RoomView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/views/RoomView.ts -------------------------------------------------------------------------------- /frontend/iframe/views/RootView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/views/RootView.ts -------------------------------------------------------------------------------- /frontend/iframe/views/SessionView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/iframe/views/SessionView.ts -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/logout.ts -------------------------------------------------------------------------------- /frontend/vite-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/vite-app.ts -------------------------------------------------------------------------------- /frontend/vite-logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/vite-logout.ts -------------------------------------------------------------------------------- /frontend/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/frontend/vite.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/phpcs.xml -------------------------------------------------------------------------------- /src/Admin/Settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Admin/Settings/settings.js -------------------------------------------------------------------------------- /src/Admin/Settings/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Admin/Settings/settings.php -------------------------------------------------------------------------------- /src/Admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Admin/admin.php -------------------------------------------------------------------------------- /src/Block/block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Block/block.php -------------------------------------------------------------------------------- /src/Popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Popup/popup.js -------------------------------------------------------------------------------- /src/Popup/popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Popup/popup.php -------------------------------------------------------------------------------- /src/Sessions/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/Sessions/logout.php -------------------------------------------------------------------------------- /src/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/src/plugin.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/chatrix/HEAD/yarn.lock --------------------------------------------------------------------------------