Compare commits

..

12 commits

Author SHA1 Message Date
ff046ef49a
add captain definition file 2023-04-04 19:35:41 -05:00
f0fa49c291
Convert to typescript and fix fullTime 2023-03-31 19:00:52 -05:00
373cceadfd
cryptE2ERoomKeys -> ts 2023-03-31 18:56:05 -05:00
344e225ff4
Fix width on the room selector 2023-03-31 18:26:17 -05:00
7e1b747a37
Use local date format. 2023-03-31 18:22:34 -05:00
bd2b79c84d
Run through an auto-formatter 2023-03-31 17:26:43 -05:00
Michael Zhang
c673ee5928 settings-sticky-tabs (#1)
- Add sticky positioning for tabs on the Settings panel
- Also add sticky position for SpaceSettings
2023-03-31 17:16:52 -05:00
Bo
dcad1840c4
fix: Fixed small typo an cross signing reset modal (#1112) 2023-03-30 20:12:33 +05:30
Krishan
f6694031a1
Release v2.2.6 (#1178)
* Update package.json

* Update package-lock.json

* Update cons.js
2023-03-29 22:02:01 +11:00
Krishan
cfddaaae13
Fix docker build failing (#1177) 2023-03-29 21:57:05 +11:00
Krishan
8524472d38
Release v2.2.5 (#1176)
* Update package.json

* Update package-lock.json

* Update cons.js
2023-03-29 14:30:52 +11:00
renovate[bot]
863612d1a1
fix(deps): update dependency matrix-js-sdk to v24 (#1175)
* fix(deps): update dependency matrix-js-sdk to v24

* Update build-pull-request.yml

* Update netlify-dev.yml

* Update prod-deploy.yml

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
2023-03-29 14:17:00 +11:00
293 changed files with 10258 additions and 7000 deletions

View file

@ -9,24 +9,21 @@ module.exports = {
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended",
'airbnb', "airbnb",
'prettier', "prettier",
], ],
parser: "@typescript-eslint/parser", parser: "@typescript-eslint/parser",
parserOptions: { parserOptions: {
ecmaFeatures: { ecmaFeatures: {
jsx: true, jsx: true,
}, },
ecmaVersion: 'latest', ecmaVersion: "latest",
sourceType: 'module', sourceType: "module",
}, },
plugins: [ plugins: ["react", "@typescript-eslint"],
'react',
'@typescript-eslint'
],
rules: { rules: {
'linebreak-style': 0, "linebreak-style": 0,
'no-underscore-dangle': 0, "no-underscore-dangle": 0,
"import/prefer-default-export": "off", "import/prefer-default-export": "off",
"import/extensions": "off", "import/extensions": "off",
@ -38,10 +35,7 @@ module.exports = {
}, },
], ],
'react/no-unstable-nested-components': [ "react/no-unstable-nested-components": ["error", { allowAsProps: true }],
'error',
{ allowAsProps: true },
],
"react/jsx-filename-extension": [ "react/jsx-filename-extension": [
"error", "error",
{ {

View file

@ -1,8 +1,8 @@
<!-- Please read https://github.com/ajbura/cinny/blob/dev/CONTRIBUTING.md before submitting your pull request --> <!-- Please read https://github.com/ajbura/cinny/blob/dev/CONTRIBUTING.md before submitting your pull request -->
### Description ### Description
<!-- Please include a summary of the change. Please also include relevant motivation and context. List any dependencies that are required for this change. -->
<!-- Please include a summary of the change. Please also include relevant motivation and context. List any dependencies that are required for this change. -->
Fixes # Fixes #

View file

@ -1,9 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:base", ":dependencyDashboardApproval"],
"config:base",
":dependencyDashboardApproval"
],
"labels": ["Dependencies"], "labels": ["Dependencies"],
"packageRules": [ "packageRules": [
{ {

View file

@ -2,7 +2,7 @@ name: Build pull request
on: on:
pull_request: pull_request:
types: ['opened', 'synchronize'] types: ["opened", "synchronize"]
jobs: jobs:
build-pull-request: build-pull-request:
@ -21,6 +21,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
- name: Build app - name: Build app
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npm run build run: npm run build
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3.1.1 uses: actions/upload-artifact@v3.1.1

View file

@ -1,4 +1,4 @@
name: 'CLA Assistant' name: "CLA Assistant"
on: on:
issue_comment: issue_comment:
types: [created] types: [created]
@ -9,7 +9,7 @@ jobs:
CLAssistant: CLAssistant:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: 'CLA Assistant' - name: "CLA Assistant"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
# Beta Release # Beta Release
uses: cla-assistant/github-action@v2.2.1 uses: cla-assistant/github-action@v2.2.1
@ -18,10 +18,10 @@ jobs:
# the below token should have repo scope and must be manually added by you in the repository's secret # the below token should have repo scope and must be manually added by you in the repository's secret
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_PAT }} PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_PAT }}
with: with:
path-to-signatures: 'signatures.json' path-to-signatures: "signatures.json"
path-to-document: 'https://github.com/cinnyapp/cla/blob/main/cla.md' # e.g. a CLA or a DCO document path-to-document: "https://github.com/cinnyapp/cla/blob/main/cla.md" # e.g. a CLA or a DCO document
# branch should not be protected # branch should not be protected
branch: 'main' branch: "main"
allowlist: ajbura,bot* allowlist: ajbura,bot*
#below are the optional inputs - If the optional inputs are not given, then default values will be taken #below are the optional inputs - If the optional inputs are not given, then default values will be taken

View file

@ -1,10 +1,10 @@
name: 'Docker check' name: "Docker check"
on: on:
pull_request: pull_request:
paths: paths:
- 'Dockerfile' - "Dockerfile"
- '.github/workflows/docker-pr.yml' - ".github/workflows/docker-pr.yml"
jobs: jobs:
docker-build: docker-build:

View file

@ -3,7 +3,7 @@ name: NPM Lockfile Changes
on: on:
pull_request: pull_request:
paths: paths:
- 'package-lock.json' - "package-lock.json"
jobs: jobs:
lockfile_changes: lockfile_changes:

View file

@ -20,6 +20,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
- name: Build app - name: Build app
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npm run build run: npm run build
- name: Deploy to Netlify - name: Deploy to Netlify
uses: nwtgck/actions-netlify@5da65c9f74c7961c5501a3ba329b8d0912f39c03 uses: nwtgck/actions-netlify@5da65c9f74c7961c5501a3ba329b8d0912f39c03
@ -30,7 +32,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
production-deploy: true production-deploy: true
github-deployment-environment: nightly github-deployment-environment: nightly
github-deployment-description: 'Nightly deployment on each commit to dev branch' github-deployment-description: "Nightly deployment on each commit to dev branch"
env: env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_DEV }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_DEV }}

View file

@ -19,6 +19,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
- name: Build app - name: Build app
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npm run build run: npm run build
- name: Deploy to Netlify - name: Deploy to Netlify
uses: nwtgck/actions-netlify@5da65c9f74c7961c5501a3ba329b8d0912f39c03 uses: nwtgck/actions-netlify@5da65c9f74c7961c5501a3ba329b8d0912f39c03
@ -29,7 +31,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
production-deploy: true production-deploy: true
github-deployment-environment: stable github-deployment-environment: stable
github-deployment-description: 'Stable deployment on each release' github-deployment-description: "Stable deployment on each release"
env: env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_APP }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_APP }}

View file

@ -1,4 +1,8 @@
{ {
"printWidth": 100, "tabWidth": 2,
"singleQuote": true "semi": true,
"useTabs": false,
"singleQuote": false,
"trailingComma": "es5",
"printWidth": 80
} }

View file

@ -5,6 +5,7 @@ First off, thanks for taking the time to contribute! ❤️
All types of contributions are encouraged and valued. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 All types of contributions are encouraged and valued. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
> And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: > And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
>
> - Star the project > - Star the project
> - Tweet about it (tag @cinnyapp) > - Tweet about it (tag @cinnyapp)
> - Refer this project in your project's readme > - Refer this project in your project's readme
@ -18,6 +19,7 @@ Bug reports and feature suggestions must use descriptive and concise titles and
## Pull requests ## Pull requests
> ### Legal Notice > ### Legal Notice
>
> When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license. > When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license.
**NOTE: If you want to add new features, please discuss with maintainers before coding or opening a pull request.** This is to ensure that we are on same track and following our roadmap. **NOTE: If you want to add new features, please discuss with maintainers before coding or opening a pull request.** This is to ensure that we are on same track and following our roadmap.
@ -27,7 +29,7 @@ Bug reports and feature suggestions must use descriptive and concise titles and
Example: Example:
| Not ideal | Better | | Not ideal | Better |
|---|----| | ----------------------------------- | --------------------------------------------- |
| Fixed markAllAsRead in RoomTimeline | Fix read marker when paginating room timeline | | Fixed markAllAsRead in RoomTimeline | Fix read marker when paginating room timeline |
It is not always possible to phrase every change in such a manner, but it is desired. It is not always possible to phrase every change in such a manner, but it is desired.
@ -39,6 +41,7 @@ Also, we use [ESLint](https://eslint.org/) for clean and stylistically consisten
**For any query or design discussion, join our [Matrix room](https://matrix.to/#/#cinny:matrix.org).** **For any query or design discussion, join our [Matrix room](https://matrix.to/#/#cinny:matrix.org).**
## Helpful links ## Helpful links
- [BEM methodology](http://getbem.com/introduction/) - [BEM methodology](http://getbem.com/introduction/)
- [Atomic design](https://bradfrost.com/blog/post/atomic-web-design/) - [Atomic design](https://bradfrost.com/blog/post/atomic-web-design/)
- [Matrix JavaScript SDK documentation](https://matrix-org.github.io/matrix-js-sdk/index.html) - [Matrix JavaScript SDK documentation](https://matrix-org.github.io/matrix-js-sdk/index.html)

View file

@ -6,6 +6,7 @@ WORKDIR /src
COPY .npmrc package.json package-lock.json /src/ COPY .npmrc package.json package-lock.json /src/
RUN npm ci RUN npm ci
COPY . /src/ COPY . /src/
ENV NODE_OPTIONS=--max_old_space_size=4096
RUN npm run build RUN npm run build

4
captain-definition Normal file
View file

@ -0,0 +1,4 @@
{
"schemaVersion": 2,
"dockerfilePath": "./Dockerfile"
}

View file

@ -18,7 +18,10 @@
<meta property="og:title" content="Cinny" /> <meta property="og:title" content="Cinny" />
<meta property="og:url" content="https://cinny.in" /> <meta property="og:url" content="https://cinny.in" />
<meta property="og:image" content="https://cinny.in/assets/favicon-48x48.png" /> <meta
property="og:image"
content="https://cinny.in/assets/favicon-48x48.png"
/>
<meta <meta
property="og:description" property="og:description"
content="A Matrix client where you can enjoy the conversation using simple, elegant and secure interface protected by e2ee with the power of open source." content="A Matrix client where you can enjoy the conversation using simple, elegant and secure interface protected by e2ee with the power of open source."
@ -32,7 +35,10 @@
<meta name="application-name" content="Cinny" /> <meta name="application-name" content="Cinny" />
<meta name="apple-mobile-web-app-title" content="Cinny" /> <meta name="apple-mobile-web-app-title" content="Cinny" />
<meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<link <link
rel="apple-touch-icon" rel="apple-touch-icon"
@ -96,6 +102,6 @@
<audio id="inviteSound"> <audio id="inviteSound">
<source src="./public/sound/invite.ogg" type="audio/ogg" /> <source src="./public/sound/invite.ogg" type="audio/ogg" />
</audio> </audio>
<script type="module" src="./src/index.jsx"></script> <script type="module" src="./src/index.tsx"></script>
</body> </body>
</html> </html>

92
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "cinny", "name": "cinny",
"version": "2.2.4", "version": "2.2.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cinny", "name": "cinny",
"version": "2.2.4", "version": "2.2.6",
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",
"dependencies": { "dependencies": {
"@fontsource/inter": "4.5.14", "@fontsource/inter": "4.5.14",
@ -14,6 +14,7 @@
"@khanacademy/simple-markdown": "0.8.6", "@khanacademy/simple-markdown": "0.8.6",
"@matrix-org/olm": "3.2.14", "@matrix-org/olm": "3.2.14",
"@tippyjs/react": "4.2.6", "@tippyjs/react": "4.2.6",
"@types/flux": "3.1.11",
"blurhash": "2.0.4", "blurhash": "2.0.4",
"browser-encrypt-attachment": "0.3.0", "browser-encrypt-attachment": "0.3.0",
"dateformat": "5.0.3", "dateformat": "5.0.3",
@ -25,7 +26,7 @@
"katex": "0.16.4", "katex": "0.16.4",
"linkify-html": "4.0.2", "linkify-html": "4.0.2",
"linkifyjs": "4.0.2", "linkifyjs": "4.0.2",
"matrix-js-sdk": "22.0.0", "matrix-js-sdk": "24.0.0",
"prop-types": "15.8.1", "prop-types": "15.8.1",
"react": "17.0.2", "react": "17.0.2",
"react-autosize-textarea": "7.1.0", "react-autosize-textarea": "7.1.0",
@ -43,6 +44,7 @@
"@esbuild-plugins/node-globals-polyfill": "0.2.3", "@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@rollup/plugin-inject": "5.0.3", "@rollup/plugin-inject": "5.0.3",
"@rollup/plugin-wasm": "6.1.1", "@rollup/plugin-wasm": "6.1.1",
"@types/dateformat": "5.0.0",
"@types/node": "18.11.18", "@types/node": "18.11.18",
"@types/react": "18.0.26", "@types/react": "18.0.26",
"@types/react-dom": "18.0.9", "@types/react-dom": "18.0.9",
@ -59,7 +61,7 @@
"eslint-plugin-react-hooks": "4.6.0", "eslint-plugin-react-hooks": "4.6.0",
"mini-svg-data-uri": "1.4.4", "mini-svg-data-uri": "1.4.4",
"prettier": "2.8.1", "prettier": "2.8.1",
"sass": "1.60.0", "sass": "1.56.2",
"typescript": "4.9.4", "typescript": "4.9.4",
"vite": "4.0.1", "vite": "4.0.1",
"vite-plugin-static-copy": "0.13.0" "vite-plugin-static-copy": "0.13.0"
@ -958,6 +960,14 @@
"react-dom": "16.14.0" "react-dom": "16.14.0"
} }
}, },
"node_modules/@matrix-org/matrix-sdk-crypto-js": {
"version": "0.1.0-alpha.5",
"resolved": "https://registry.npmjs.org/@matrix-org/matrix-sdk-crypto-js/-/matrix-sdk-crypto-js-0.1.0-alpha.5.tgz",
"integrity": "sha512-2KjAgWNGfuGLNjJwsrs6gGX157vmcTfNrA4u249utgnMPbJl7QwuUqh1bGxQ0PpK06yvZjgPlkna0lTbuwtuQw==",
"engines": {
"node": ">= 10"
}
},
"node_modules/@matrix-org/olm": { "node_modules/@matrix-org/olm": {
"version": "3.2.14", "version": "3.2.14",
"resolved": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz", "resolved": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz",
@ -1107,6 +1117,12 @@
"react-dom": ">=16.8" "react-dom": ">=16.8"
} }
}, },
"node_modules/@types/dateformat": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@types/dateformat/-/dateformat-5.0.0.tgz",
"integrity": "sha512-SZg4JdHIWHQGEokbYGZSDvo5wA4TLYPXaqhigs/wH+REDOejcJzgH+qyY+HtEUtWOZxEUkbhbdYPqQDiEgrXeA==",
"dev": true
},
"node_modules/@types/estree": { "node_modules/@types/estree": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
@ -1118,6 +1134,20 @@
"resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
"integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g=="
}, },
"node_modules/@types/fbemitter": {
"version": "2.0.32",
"resolved": "https://registry.npmjs.org/@types/fbemitter/-/fbemitter-2.0.32.tgz",
"integrity": "sha512-Hwq28bBlbmfCgLnNJvjl5ssTrbZCTSblI4vqPpqZrbbEL8vn5l2UivxhlMYfUY7a4SR8UB6RKoLjOZfljqAa6g=="
},
"node_modules/@types/flux": {
"version": "3.1.11",
"resolved": "https://registry.npmjs.org/@types/flux/-/flux-3.1.11.tgz",
"integrity": "sha512-Aq4UB1ZqAKcPbhB0GpgMw2sntvOh71he9tjz53TLKrI7rw3Y3LxCW5pTYY9IV455hQapm4pmxFjpqlWOs308Yg==",
"dependencies": {
"@types/fbemitter": "*",
"@types/react": "*"
}
},
"node_modules/@types/json-schema": { "node_modules/@types/json-schema": {
"version": "7.0.11", "version": "7.0.11",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
@ -1170,11 +1200,6 @@
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
"integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
}, },
"node_modules/@types/sdp-transform": {
"version": "2.4.5",
"resolved": "https://registry.npmjs.org/@types/sdp-transform/-/sdp-transform-2.4.5.tgz",
"integrity": "sha512-GVO0gnmbyO3Oxm2HdPsYUNcyihZE3GyCY8ysMYHuQGfLhGZq89Nm4lSzULWTzZoyHtg+VO/IdrnxZHPnPSGnAg=="
},
"node_modules/@types/semver": { "node_modules/@types/semver": {
"version": "7.3.13", "version": "7.3.13",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz",
@ -1793,6 +1818,7 @@
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
"dev": true,
"dependencies": { "dependencies": {
"function-bind": "^1.1.1", "function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2" "get-intrinsic": "^1.0.2"
@ -3025,7 +3051,8 @@
"node_modules/function-bind": { "node_modules/function-bind": {
"version": "1.1.1", "version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
"dev": true
}, },
"node_modules/function.prototype.name": { "node_modules/function.prototype.name": {
"version": "1.1.5", "version": "1.1.5",
@ -3067,6 +3094,7 @@
"version": "1.1.3", "version": "1.1.3",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
"integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
"dev": true,
"dependencies": { "dependencies": {
"function-bind": "^1.1.1", "function-bind": "^1.1.1",
"has": "^1.0.3", "has": "^1.0.3",
@ -3180,6 +3208,7 @@
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
"dev": true,
"dependencies": { "dependencies": {
"function-bind": "^1.1.1" "function-bind": "^1.1.1"
}, },
@ -3221,6 +3250,7 @@
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
"integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
"dev": true,
"engines": { "engines": {
"node": ">= 0.4" "node": ">= 0.4"
}, },
@ -3862,12 +3892,12 @@
"integrity": "sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA==" "integrity": "sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA=="
}, },
"node_modules/matrix-js-sdk": { "node_modules/matrix-js-sdk": {
"version": "22.0.0", "version": "24.0.0",
"resolved": "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-22.0.0.tgz", "resolved": "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-24.0.0.tgz",
"integrity": "sha512-mpKqeD3nCobjGiUiATUyEoP44n+AzDW5cSeBTIBY5fPhj0AkzLJhblHt40vzSOJazj8tT0PhsSzhEIR9hGzYGA==", "integrity": "sha512-AOhO036ziDf6lwYoauj5DES/RJ6RDTq+vrK2yO/GW/8n+bAXhkjWc9AA/WcTK/9SkNHS46ZanmolkhS1n8WniQ==",
"dependencies": { "dependencies": {
"@babel/runtime": "^7.12.5", "@babel/runtime": "^7.12.5",
"@types/sdp-transform": "^2.4.5", "@matrix-org/matrix-sdk-crypto-js": "^0.1.0-alpha.3",
"another-json": "^0.2.0", "another-json": "^0.2.0",
"bs58": "^5.0.0", "bs58": "^5.0.0",
"content-type": "^1.0.4", "content-type": "^1.0.4",
@ -3875,9 +3905,9 @@
"matrix-events-sdk": "0.0.1", "matrix-events-sdk": "0.0.1",
"matrix-widget-api": "^1.0.0", "matrix-widget-api": "^1.0.0",
"p-retry": "4", "p-retry": "4",
"qs": "^6.9.6",
"sdp-transform": "^2.14.1", "sdp-transform": "^2.14.1",
"unhomoglyph": "^1.0.6" "unhomoglyph": "^1.0.6",
"uuid": "9"
}, },
"engines": { "engines": {
"node": ">=16.0.0" "node": ">=16.0.0"
@ -4019,6 +4049,7 @@
"version": "1.12.2", "version": "1.12.2",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
"integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==",
"dev": true,
"funding": { "funding": {
"url": "https://github.com/sponsors/ljharb" "url": "https://github.com/sponsors/ljharb"
} }
@ -4329,20 +4360,6 @@
"node": ">=6" "node": ">=6"
} }
}, },
"node_modules/qs": {
"version": "6.11.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
"dependencies": {
"side-channel": "^1.0.4"
},
"engines": {
"node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/queue-microtask": { "node_modules/queue-microtask": {
"version": "1.2.3", "version": "1.2.3",
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
@ -4698,9 +4715,9 @@
} }
}, },
"node_modules/sass": { "node_modules/sass": {
"version": "1.60.0", "version": "1.56.2",
"resolved": "https://registry.npmjs.org/sass/-/sass-1.60.0.tgz", "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.2.tgz",
"integrity": "sha512-updbwW6fNb5gGm8qMXzVO7V4sWf7LMXnMly/JEyfbfERbVH46Fn6q02BX7/eHTdKpE7d+oTkMMQpFWNUMfFbgQ==", "integrity": "sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"chokidar": ">=3.0.0 <4.0.0", "chokidar": ">=3.0.0 <4.0.0",
@ -4770,6 +4787,7 @@
"version": "1.0.4", "version": "1.0.4",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
"dev": true,
"dependencies": { "dependencies": {
"call-bind": "^1.0.0", "call-bind": "^1.0.0",
"get-intrinsic": "^1.0.2", "get-intrinsic": "^1.0.2",
@ -5139,6 +5157,14 @@
"punycode": "^2.1.0" "punycode": "^2.1.0"
} }
}, },
"node_modules/uuid": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
"integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/vite": { "node_modules/vite": {
"version": "4.0.1", "version": "4.0.1",
"resolved": "https://registry.npmjs.org/vite/-/vite-4.0.1.tgz", "resolved": "https://registry.npmjs.org/vite/-/vite-4.0.1.tgz",

View file

@ -1,6 +1,6 @@
{ {
"name": "cinny", "name": "cinny",
"version": "2.2.4", "version": "2.2.6",
"description": "Yet another matrix client", "description": "Yet another matrix client",
"main": "index.js", "main": "index.js",
"engines": { "engines": {
@ -9,7 +9,7 @@
"scripts": { "scripts": {
"start": "vite", "start": "vite",
"build": "vite build", "build": "vite build",
"lint": "yarn check:eslint && yarn check:prettier", "lint": "npm run check:eslint && npm run check:prettier",
"check:eslint": "eslint src/*", "check:eslint": "eslint src/*",
"check:prettier": "prettier --check .", "check:prettier": "prettier --check .",
"fix:prettier": "prettier --write .", "fix:prettier": "prettier --write .",
@ -24,6 +24,7 @@
"@khanacademy/simple-markdown": "0.8.6", "@khanacademy/simple-markdown": "0.8.6",
"@matrix-org/olm": "3.2.14", "@matrix-org/olm": "3.2.14",
"@tippyjs/react": "4.2.6", "@tippyjs/react": "4.2.6",
"@types/flux": "3.1.11",
"blurhash": "2.0.4", "blurhash": "2.0.4",
"browser-encrypt-attachment": "0.3.0", "browser-encrypt-attachment": "0.3.0",
"dateformat": "5.0.3", "dateformat": "5.0.3",
@ -35,7 +36,7 @@
"katex": "0.16.4", "katex": "0.16.4",
"linkify-html": "4.0.2", "linkify-html": "4.0.2",
"linkifyjs": "4.0.2", "linkifyjs": "4.0.2",
"matrix-js-sdk": "22.0.0", "matrix-js-sdk": "24.0.0",
"prop-types": "15.8.1", "prop-types": "15.8.1",
"react": "17.0.2", "react": "17.0.2",
"react-autosize-textarea": "7.1.0", "react-autosize-textarea": "7.1.0",
@ -53,6 +54,7 @@
"@esbuild-plugins/node-globals-polyfill": "0.2.3", "@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@rollup/plugin-inject": "5.0.3", "@rollup/plugin-inject": "5.0.3",
"@rollup/plugin-wasm": "6.1.1", "@rollup/plugin-wasm": "6.1.1",
"@types/dateformat": "5.0.0",
"@types/node": "18.11.18", "@types/node": "18.11.18",
"@types/react": "18.0.26", "@types/react": "18.0.26",
"@types/react-dom": "18.0.9", "@types/react-dom": "18.0.9",
@ -69,7 +71,7 @@
"eslint-plugin-react-hooks": "4.6.0", "eslint-plugin-react-hooks": "4.6.0",
"mini-svg-data-uri": "1.4.4", "mini-svg-data-uri": "1.4.4",
"prettier": "2.8.1", "prettier": "2.8.1",
"sass": "1.60.0", "sass": "1.56.2",
"typescript": "4.9.4", "typescript": "4.9.4",
"vite": "4.0.1", "vite": "4.0.1",
"vite-plugin-static-copy": "0.13.0" "vite-plugin-static-copy": "0.13.0"

View file

@ -1,64 +1,69 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Avatar.scss'; import "./Avatar.scss";
import { twemojify } from '../../../util/twemojify'; import { twemojify } from "../../../util/twemojify";
import Text from '../text/Text'; import Text from "../text/Text";
import RawIcon from '../system-icons/RawIcon'; import RawIcon from "../system-icons/RawIcon";
import ImageBrokenSVG from '../../../../public/res/svg/image-broken.svg'; import ImageBrokenSVG from "../../../../public/res/svg/image-broken.svg";
import { avatarInitials } from '../../../util/common'; import { avatarInitials } from "../../../util/common";
const Avatar = React.forwardRef(({ const Avatar = React.forwardRef(
text, bgColor, iconSrc, iconColor, imageSrc, size, ({ text, bgColor, iconSrc, iconColor, imageSrc, size }, ref) => {
}, ref) => { let textSize = "s1";
let textSize = 's1'; if (size === "large") textSize = "h1";
if (size === 'large') textSize = 'h1'; if (size === "small") textSize = "b1";
if (size === 'small') textSize = 'b1'; if (size === "extra-small") textSize = "b3";
if (size === 'extra-small') textSize = 'b3';
return ( return (
<div ref={ref} className={`avatar-container avatar-container__${size} noselect`}> <div
{ ref={ref}
imageSrc !== null className={`avatar-container avatar-container__${size} noselect`}
? ( >
{imageSrc !== null ? (
<img <img
draggable="false" draggable="false"
src={imageSrc} src={imageSrc}
onLoad={(e) => { e.target.style.backgroundColor = 'transparent'; }} onLoad={(e) => {
onError={(e) => { e.target.src = ImageBrokenSVG; }} e.target.style.backgroundColor = "transparent";
}}
onError={(e) => {
e.target.src = ImageBrokenSVG;
}}
alt="" alt=""
/> />
) ) : (
: (
<span <span
style={{ backgroundColor: iconSrc === null ? bgColor : 'transparent' }} style={{
className={`avatar__border${iconSrc !== null ? '--active' : ''}`} backgroundColor: iconSrc === null ? bgColor : "transparent",
}}
className={`avatar__border${iconSrc !== null ? "--active" : ""}`}
> >
{ {iconSrc !== null ? (
iconSrc !== null <RawIcon size={size} src={iconSrc} color={iconColor} />
? <RawIcon size={size} src={iconSrc} color={iconColor} /> ) : (
: text !== null && ( text !== null && (
<Text variant={textSize} primary> <Text variant={textSize} primary>
{twemojify(avatarInitials(text))} {twemojify(avatarInitials(text))}
</Text> </Text>
) )
} )}
</span> </span>
) )}
}
</div> </div>
); );
}); }
);
Avatar.defaultProps = { Avatar.defaultProps = {
text: null, text: null,
bgColor: 'transparent', bgColor: "transparent",
iconSrc: null, iconSrc: null,
iconColor: null, iconColor: null,
imageSrc: null, imageSrc: null,
size: 'normal', size: "normal",
}; };
Avatar.propTypes = { Avatar.propTypes = {
@ -67,7 +72,7 @@ Avatar.propTypes = {
iconSrc: PropTypes.string, iconSrc: PropTypes.string,
iconColor: PropTypes.string, iconColor: PropTypes.string,
imageSrc: PropTypes.string, imageSrc: PropTypes.string,
size: PropTypes.oneOf(['large', 'normal', 'small', 'extra-small']), size: PropTypes.oneOf(["large", "normal", "small", "extra-small"]),
}; };
export default Avatar; export default Avatar;

View file

@ -1,4 +1,4 @@
@use '../../partials/flex'; @use "../../partials/flex";
.avatar-container { .avatar-container {
display: inline-flex; display: inline-flex;

View file

@ -1,15 +1,20 @@
import { avatarInitials, cssVar } from '../../../util/common'; import { avatarInitials, cssVar } from "../../../util/common";
// renders the avatar and returns it as an URL // renders the avatar and returns it as an URL
export default async function renderAvatar({ export default async function renderAvatar({
text, bgColor, imageSrc, size, borderRadius, scale, text,
bgColor,
imageSrc,
size,
borderRadius,
scale,
}) { }) {
try { try {
const canvas = document.createElement('canvas'); const canvas = document.createElement("canvas");
canvas.width = size * scale; canvas.width = size * scale;
canvas.height = size * scale; canvas.height = size * scale;
const ctx = canvas.getContext('2d'); const ctx = canvas.getContext("2d");
ctx.scale(scale, scale); ctx.scale(scale, scale);
@ -27,7 +32,7 @@ export default async function renderAvatar({
ctx.clip(); ctx.clip();
const img = new Image(); const img = new Image();
img.crossOrigin = 'anonymous'; img.crossOrigin = "anonymous";
const promise = new Promise((resolve, reject) => { const promise = new Promise((resolve, reject) => {
img.onerror = reject; img.onerror = reject;
img.onload = resolve; img.onload = resolve;
@ -42,10 +47,10 @@ export default async function renderAvatar({
ctx.fill(); ctx.fill();
// centered letter // centered letter
ctx.fillStyle = '#fff'; ctx.fillStyle = "#fff";
ctx.font = `${cssVar('--fs-s1')} ${cssVar('--font-primary')}`; ctx.font = `${cssVar("--fs-s1")} ${cssVar("--font-primary")}`;
ctx.textBaseline = 'middle'; ctx.textBaseline = "middle";
ctx.textAlign = 'center'; ctx.textAlign = "center";
ctx.fillText(avatarInitials(text), size / 2, size / 2); ctx.fillText(avatarInitials(text), size / 2, size / 2);
} }

View file

@ -1,14 +1,18 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './NotificationBadge.scss'; import "./NotificationBadge.scss";
import Text from '../text/Text'; import Text from "../text/Text";
function NotificationBadge({ alert, content }) { function NotificationBadge({ alert, content }) {
const notificationClass = alert ? ' notification-badge--alert' : ''; const notificationClass = alert ? " notification-badge--alert" : "";
return ( return (
<div className={`notification-badge${notificationClass}`}> <div className={`notification-badge${notificationClass}`}>
{content !== null && <Text variant="b3" weight="bold">{content}</Text>} {content !== null && (
<Text variant="b3" weight="bold">
{content}
</Text>
)}
</div> </div>
); );
} }
@ -20,10 +24,7 @@ NotificationBadge.defaultProps = {
NotificationBadge.propTypes = { NotificationBadge.propTypes = {
alert: PropTypes.bool, alert: PropTypes.bool,
content: PropTypes.oneOfType([ content: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
PropTypes.string,
PropTypes.number,
]),
}; };
export default NotificationBadge; export default NotificationBadge;

View file

@ -1,21 +1,24 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Button.scss'; import "./Button.scss";
import Text from '../text/Text'; import Text from "../text/Text";
import RawIcon from '../system-icons/RawIcon'; import RawIcon from "../system-icons/RawIcon";
import { blurOnBubbling } from './script'; import { blurOnBubbling } from "./script";
const Button = React.forwardRef(({ const Button = React.forwardRef(
id, className, variant, iconSrc, (
type, onClick, children, disabled, { id, className, variant, iconSrc, type, onClick, children, disabled },
}, ref) => { ref
const iconClass = (iconSrc === null) ? '' : `btn-${variant}--icon`; ) => {
const iconClass = iconSrc === null ? "" : `btn-${variant}--icon`;
return ( return (
<button <button
ref={ref} ref={ref}
id={id === '' ? undefined : id} id={id === "" ? undefined : id}
className={`${className ? `${className} ` : ''}btn-${variant} ${iconClass} noselect`} className={`${
className ? `${className} ` : ""
}btn-${variant} ${iconClass} noselect`}
onMouseUp={(e) => blurOnBubbling(e, `.btn-${variant}`)} onMouseUp={(e) => blurOnBubbling(e, `.btn-${variant}`)}
onClick={onClick} onClick={onClick}
// eslint-disable-next-line react/button-has-type // eslint-disable-next-line react/button-has-type
@ -23,18 +26,19 @@ const Button = React.forwardRef(({
disabled={disabled} disabled={disabled}
> >
{iconSrc !== null && <RawIcon size="small" src={iconSrc} />} {iconSrc !== null && <RawIcon size="small" src={iconSrc} />}
{typeof children === 'string' && <Text variant="b1">{ children }</Text>} {typeof children === "string" && <Text variant="b1">{children}</Text>}
{typeof children !== 'string' && children } {typeof children !== "string" && children}
</button> </button>
); );
}); }
);
Button.defaultProps = { Button.defaultProps = {
id: '', id: "",
className: null, className: null,
variant: 'surface', variant: "surface",
iconSrc: null, iconSrc: null,
type: 'button', type: "button",
onClick: null, onClick: null,
disabled: false, disabled: false,
}; };
@ -42,9 +46,15 @@ Button.defaultProps = {
Button.propTypes = { Button.propTypes = {
id: PropTypes.string, id: PropTypes.string,
className: PropTypes.string, className: PropTypes.string,
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']), variant: PropTypes.oneOf([
"surface",
"primary",
"positive",
"caution",
"danger",
]),
iconSrc: PropTypes.string, iconSrc: PropTypes.string,
type: PropTypes.oneOf(['button', 'submit', 'reset']), type: PropTypes.oneOf(["button", "submit", "reset"]),
onClick: PropTypes.func, onClick: PropTypes.func,
children: PropTypes.node.isRequired, children: PropTypes.node.isRequired,
disabled: PropTypes.bool, disabled: PropTypes.bool,

View file

@ -1,6 +1,6 @@
@use 'state'; @use "state";
@use '../../partials/dir'; @use "../../partials/dir";
@use '../../partials/text'; @use "../../partials/text";
.btn-surface, .btn-surface,
.btn-primary, .btn-primary,
@ -25,7 +25,6 @@
&--icon { &--icon {
@include dir.side(padding, var(--sp-tight), var(--sp-loose)); @include dir.side(padding, var(--sp-tight), var(--sp-loose));
} }
.ic-raw { .ic-raw {
@include dir.side(margin, 0, var(--sp-extra-tight)); @include dir.side(margin, 0, var(--sp-extra-tight));
@ -42,7 +41,6 @@
} }
} }
.btn-surface { .btn-surface {
box-shadow: var(--bs-surface-border); box-shadow: var(--bs-surface-border);
@include color(var(--tc-surface-high), var(--ic-surface-normal)); @include color(var(--tc-surface-high), var(--ic-surface-normal));

View file

@ -1,12 +1,11 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Checkbox.scss'; import "./Checkbox.scss";
function Checkbox({ function Checkbox({ variant, isActive, onToggle, disabled, tabIndex }) {
variant, isActive, onToggle, const className = `checkbox checkbox-${variant}${
disabled, tabIndex, isActive ? " checkbox--active" : ""
}) { }`;
const className = `checkbox checkbox-${variant}${isActive ? ' checkbox--active' : ''}`;
if (onToggle === null) return <span className={className} />; if (onToggle === null) return <span className={className} />;
return ( return (
// eslint-disable-next-line jsx-a11y/control-has-associated-label // eslint-disable-next-line jsx-a11y/control-has-associated-label
@ -21,7 +20,7 @@ function Checkbox({
} }
Checkbox.defaultProps = { Checkbox.defaultProps = {
variant: 'primary', variant: "primary",
isActive: false, isActive: false,
onToggle: null, onToggle: null,
disabled: false, disabled: false,
@ -29,7 +28,7 @@ Checkbox.defaultProps = {
}; };
Checkbox.propTypes = { Checkbox.propTypes = {
variant: PropTypes.oneOf(['primary', 'positive', 'caution', 'danger']), variant: PropTypes.oneOf(["primary", "positive", "caution", "danger"]),
isActive: PropTypes.bool, isActive: PropTypes.bool,
onToggle: PropTypes.func, onToggle: PropTypes.func,
disabled: PropTypes.bool, disabled: PropTypes.bool,

View file

@ -1,5 +1,5 @@
@use '../../partials/flex'; @use "../../partials/flex";
@use './state'; @use "./state";
.checkbox { .checkbox {
width: 20px; width: 20px;

View file

@ -1,18 +1,29 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './IconButton.scss'; import "./IconButton.scss";
import RawIcon from '../system-icons/RawIcon'; import RawIcon from "../system-icons/RawIcon";
import Tooltip from '../tooltip/Tooltip'; import Tooltip from "../tooltip/Tooltip";
import { blurOnBubbling } from './script'; import { blurOnBubbling } from "./script";
import Text from '../text/Text'; import Text from "../text/Text";
const IconButton = React.forwardRef(({ const IconButton = React.forwardRef(
variant, size, type, (
tooltip, tooltipPlacement, src, {
onClick, tabIndex, disabled, isImage, variant,
size,
type,
tooltip,
tooltipPlacement,
src,
onClick,
tabIndex,
disabled,
isImage,
className, className,
}, ref) => { },
ref
) => {
const btn = ( const btn = (
<button <button
ref={ref} ref={ref}
@ -36,27 +47,34 @@ const IconButton = React.forwardRef(({
{btn} {btn}
</Tooltip> </Tooltip>
); );
}); }
);
IconButton.defaultProps = { IconButton.defaultProps = {
variant: 'surface', variant: "surface",
size: 'normal', size: "normal",
type: 'button', type: "button",
tooltip: null, tooltip: null,
tooltipPlacement: 'top', tooltipPlacement: "top",
onClick: null, onClick: null,
tabIndex: 0, tabIndex: 0,
disabled: false, disabled: false,
isImage: false, isImage: false,
className: '', className: "",
}; };
IconButton.propTypes = { IconButton.propTypes = {
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']), variant: PropTypes.oneOf([
size: PropTypes.oneOf(['normal', 'small', 'extra-small']), "surface",
type: PropTypes.oneOf(['button', 'submit', 'reset']), "primary",
"positive",
"caution",
"danger",
]),
size: PropTypes.oneOf(["normal", "small", "extra-small"]),
type: PropTypes.oneOf(["button", "submit", "reset"]),
tooltip: PropTypes.string, tooltip: PropTypes.string,
tooltipPlacement: PropTypes.oneOf(['top', 'right', 'bottom', 'left']), tooltipPlacement: PropTypes.oneOf(["top", "right", "bottom", "left"]),
src: PropTypes.string.isRequired, src: PropTypes.string.isRequired,
onClick: PropTypes.func, onClick: PropTypes.func,
tabIndex: PropTypes.number, tabIndex: PropTypes.number,

View file

@ -1,4 +1,4 @@
@use 'state'; @use "state";
.ic-btn { .ic-btn {
padding: var(--sp-extra-tight); padding: var(--sp-extra-tight);

View file

@ -1,14 +1,17 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './RadioButton.scss'; import "./RadioButton.scss";
function RadioButton({ isActive, onToggle, disabled }) { function RadioButton({ isActive, onToggle, disabled }) {
if (onToggle === null) return <span className={`radio-btn${isActive ? ' radio-btn--active' : ''}`} />; if (onToggle === null)
return (
<span className={`radio-btn${isActive ? " radio-btn--active" : ""}`} />
);
return ( return (
// eslint-disable-next-line jsx-a11y/control-has-associated-label // eslint-disable-next-line jsx-a11y/control-has-associated-label
<button <button
onClick={() => onToggle(!isActive)} onClick={() => onToggle(!isActive)}
className={`radio-btn${isActive ? ' radio-btn--active' : ''}`} className={`radio-btn${isActive ? " radio-btn--active" : ""}`}
type="button" type="button"
disabled={disabled} disabled={disabled}
/> />

View file

@ -1,5 +1,5 @@
@use '../../partials/flex'; @use "../../partials/flex";
@use './state'; @use "./state";
.radio-btn { .radio-btn {
@extend .cp-fx__row--c-c; @extend .cp-fx__row--c-c;
@ -12,7 +12,7 @@
@include state.disabled; @include state.disabled;
&::before { &::before {
content: ''; content: "";
display: inline-block; display: inline-block;
width: 12px; width: 12px;
height: 12px; height: 12px;

View file

@ -1,9 +1,9 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Toggle.scss'; import "./Toggle.scss";
function Toggle({ isActive, onToggle, disabled }) { function Toggle({ isActive, onToggle, disabled }) {
const className = `toggle${isActive ? ' toggle--active' : ''}`; const className = `toggle${isActive ? " toggle--active" : ""}`;
if (onToggle === null) return <span className={className} />; if (onToggle === null) return <span className={className} />;
return ( return (
// eslint-disable-next-line jsx-a11y/control-has-associated-label // eslint-disable-next-line jsx-a11y/control-has-associated-label

View file

@ -1,5 +1,5 @@
@use '../../partials/dir'; @use "../../partials/dir";
@use './state'; @use "./state";
.toggle { .toggle {
width: 44px; width: 44px;
@ -16,14 +16,13 @@
transition: background 200ms ease-in-out; transition: background 200ms ease-in-out;
&::before { &::before {
content: ''; content: "";
display: inline-block; display: inline-block;
width: 16px; width: 16px;
height: 16px; height: 16px;
background-color: var(--tc-surface-low); background-color: var(--tc-surface-low);
border-radius: calc(var(--bo-radius) / 2); border-radius: calc(var(--bo-radius) / 2);
transition: transform 200ms ease-in-out, transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
opacity 200ms ease-in-out;
opacity: 0.6; opacity: 0.6;
} }

View file

@ -1,4 +1,3 @@
@mixin hover($color) { @mixin hover($color) {
@media (hover: hover) { @media (hover: hover) {
&:hover { &:hover {

View file

@ -10,7 +10,10 @@ function blurOnBubbling(e, selector) {
for (let elIndex = 0; elIndex < bubblingPath.length; elIndex += 1) { for (let elIndex = 0; elIndex < bubblingPath.length; elIndex += 1) {
if (bubblingPath[elIndex] === document) { if (bubblingPath[elIndex] === document) {
console.warn(blurOnBubbling, 'blurOnBubbling: not found selector in bubbling path'); console.warn(
blurOnBubbling,
"blurOnBubbling: not found selector in bubbling path"
);
break; break;
} }
if (bubblingPath[elIndex].matches(selector)) { if (bubblingPath[elIndex].matches(selector)) {

View file

@ -1,24 +1,28 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './InfoCard.scss'; import "./InfoCard.scss";
import Text from '../text/Text'; import Text from "../text/Text";
import RawIcon from '../system-icons/RawIcon'; import RawIcon from "../system-icons/RawIcon";
import IconButton from '../button/IconButton'; import IconButton from "../button/IconButton";
import CrossIC from '../../../../public/res/ic/outlined/cross.svg'; import CrossIC from "../../../../public/res/ic/outlined/cross.svg";
function InfoCard({ function InfoCard({
className, style, className,
variant, iconSrc, style,
title, content, variant,
rounded, requestClose, iconSrc,
title,
content,
rounded,
requestClose,
}) { }) {
const classes = [`info-card info-card--${variant}`]; const classes = [`info-card info-card--${variant}`];
if (rounded) classes.push('info-card--rounded'); if (rounded) classes.push("info-card--rounded");
if (className) classes.push(className); if (className) classes.push(className);
return ( return (
<div className={classes.join(' ')} style={style}> <div className={classes.join(" ")} style={style}>
{iconSrc && ( {iconSrc && (
<div className="info-card__icon"> <div className="info-card__icon">
<RawIcon color={`var(--ic-${variant}-high)`} src={iconSrc} /> <RawIcon color={`var(--ic-${variant}-high)`} src={iconSrc} />
@ -38,7 +42,7 @@ function InfoCard({
InfoCard.defaultProps = { InfoCard.defaultProps = {
className: null, className: null,
style: null, style: null,
variant: 'surface', variant: "surface",
iconSrc: null, iconSrc: null,
content: null, content: null,
rounded: false, rounded: false,
@ -48,7 +52,13 @@ InfoCard.defaultProps = {
InfoCard.propTypes = { InfoCard.propTypes = {
className: PropTypes.string, className: PropTypes.string,
style: PropTypes.shape({}), style: PropTypes.shape({}),
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']), variant: PropTypes.oneOf([
"surface",
"primary",
"positive",
"caution",
"danger",
]),
iconSrc: PropTypes.string, iconSrc: PropTypes.string,
title: PropTypes.string.isRequired, title: PropTypes.string.isRequired,
content: PropTypes.node, content: PropTypes.node,

View file

@ -1,5 +1,5 @@
@use '.././../partials/flex'; @use ".././../partials/flex";
@use '.././../partials/dir'; @use ".././../partials/dir";
.info-card { .info-card {
display: flex; display: flex;
@ -34,7 +34,6 @@
&--surface { &--surface {
border-color: var(--bg-surface-border); border-color: var(--bg-surface-border);
background-color: var(--bg-surface-hover); background-color: var(--bg-surface-hover);
} }
&--primary { &--primary {
border-color: var(--bg-primary); border-color: var(--bg-primary);

View file

@ -1,18 +1,17 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Chip.scss'; import "./Chip.scss";
import Text from '../text/Text'; import Text from "../text/Text";
import RawIcon from '../system-icons/RawIcon'; import RawIcon from "../system-icons/RawIcon";
function Chip({ function Chip({ iconSrc, iconColor, text, children, onClick }) {
iconSrc, iconColor, text, children,
onClick,
}) {
return ( return (
<button className="chip" type="button" onClick={onClick}> <button className="chip" type="button" onClick={onClick}>
{iconSrc != null && <RawIcon src={iconSrc} color={iconColor} size="extra-small" />} {iconSrc != null && (
{(text != null && text !== '') && <Text variant="b3">{text}</Text>} <RawIcon src={iconSrc} color={iconColor} size="extra-small" />
)}
{text != null && text !== "" && <Text variant="b3">{text}</Text>}
{children} {children}
</button> </button>
); );

View file

@ -1,4 +1,4 @@
@use '../../partials/dir'; @use "../../partials/dir";
.chip { .chip {
padding: var(--sp-ultra-tight) var(--sp-extra-tight); padding: var(--sp-ultra-tight) var(--sp-extra-tight);

View file

@ -1,17 +1,15 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ContextMenu.scss'; import "./ContextMenu.scss";
import Tippy from '@tippyjs/react'; import Tippy from "@tippyjs/react";
import 'tippy.js/animations/scale-extreme.css'; import "tippy.js/animations/scale-extreme.css";
import Text from '../text/Text'; import Text from "../text/Text";
import Button from '../button/Button'; import Button from "../button/Button";
import ScrollView from '../scroll/ScrollView'; import ScrollView from "../scroll/ScrollView";
function ContextMenu({ function ContextMenu({ content, placement, maxWidth, render, afterToggle }) {
content, placement, maxWidth, render, afterToggle,
}) {
const [isVisible, setVisibility] = useState(false); const [isVisible, setVisibility] = useState(false);
const showMenu = () => setVisibility(true); const showMenu = () => setVisibility(true);
const hideMenu = () => setVisibility(false); const hideMenu = () => setVisibility(false);
@ -26,7 +24,11 @@ function ContextMenu({
className="context-menu" className="context-menu"
visible={isVisible} visible={isVisible}
onClickOutside={hideMenu} onClickOutside={hideMenu}
content={<ScrollView invisible>{typeof content === 'function' ? content(hideMenu) : content}</ScrollView>} content={
<ScrollView invisible>
{typeof content === "function" ? content(hideMenu) : content}
</ScrollView>
}
placement={placement} placement={placement}
interactive interactive
arrow={false} arrow={false}
@ -39,21 +41,15 @@ function ContextMenu({
} }
ContextMenu.defaultProps = { ContextMenu.defaultProps = {
maxWidth: 'unset', maxWidth: "unset",
placement: 'right', placement: "right",
afterToggle: null, afterToggle: null,
}; };
ContextMenu.propTypes = { ContextMenu.propTypes = {
content: PropTypes.oneOfType([ content: PropTypes.oneOfType([PropTypes.node, PropTypes.func]).isRequired,
PropTypes.node, placement: PropTypes.oneOf(["top", "right", "bottom", "left"]),
PropTypes.func, maxWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
]).isRequired,
placement: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
maxWidth: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
render: PropTypes.func.isRequired, render: PropTypes.func.isRequired,
afterToggle: PropTypes.func, afterToggle: PropTypes.func,
}; };
@ -70,10 +66,7 @@ MenuHeader.propTypes = {
children: PropTypes.node.isRequired, children: PropTypes.node.isRequired,
}; };
function MenuItem({ function MenuItem({ variant, iconSrc, type, onClick, children, disabled }) {
variant, iconSrc, type,
onClick, children, disabled,
}) {
return ( return (
<div className="context-menu__item"> <div className="context-menu__item">
<Button <Button
@ -90,26 +83,26 @@ function MenuItem({
} }
MenuItem.defaultProps = { MenuItem.defaultProps = {
variant: 'surface', variant: "surface",
iconSrc: null, iconSrc: null,
type: 'button', type: "button",
disabled: false, disabled: false,
onClick: null, onClick: null,
}; };
MenuItem.propTypes = { MenuItem.propTypes = {
variant: PropTypes.oneOf(['surface', 'positive', 'caution', 'danger']), variant: PropTypes.oneOf(["surface", "positive", "caution", "danger"]),
iconSrc: PropTypes.string, iconSrc: PropTypes.string,
type: PropTypes.oneOf(['button', 'submit']), type: PropTypes.oneOf(["button", "submit"]),
onClick: PropTypes.func, onClick: PropTypes.func,
children: PropTypes.node.isRequired, children: PropTypes.node.isRequired,
disabled: PropTypes.bool, disabled: PropTypes.bool,
}; };
function MenuBorder() { function MenuBorder() {
return <div style={{ borderBottom: '1px solid var(--bg-surface-border)' }}> </div>; return (
<div style={{ borderBottom: "1px solid var(--bg-surface-border)" }}> </div>
);
} }
export { export { ContextMenu as default, MenuHeader, MenuItem, MenuBorder };
ContextMenu as default, MenuHeader, MenuItem, MenuBorder,
};

View file

@ -1,6 +1,6 @@
@use '../../partials/flex'; @use "../../partials/flex";
@use '../../partials/text'; @use "../../partials/text";
@use '../../partials/dir'; @use "../../partials/dir";
.context-menu { .context-menu {
background-color: var(--bg-surface); background-color: var(--bg-surface);
@ -59,11 +59,7 @@
// if item doesn't have icon // if item doesn't have icon
.text:first-child { .text:first-child {
@include dir.side( @include dir.side(margin, calc(var(--ic-small) + var(--sp-tight)), 0);
margin,
calc(var(--ic-small) + var(--sp-tight)),
0
);
} }
} }
.btn-surface:focus { .btn-surface:focus {

View file

@ -1,9 +1,9 @@
import React, { useState, useEffect, useRef } from 'react'; import React, { useState, useEffect, useRef } from "react";
import cons from '../../../client/state/cons'; import cons from "../../../client/state/cons";
import navigation from '../../../client/state/navigation'; import navigation from "../../../client/state/navigation";
import ContextMenu from './ContextMenu'; import ContextMenu from "./ContextMenu";
let key = null; let key = null;
function ReusableContextMenu() { function ReusableContextMenu() {
@ -29,14 +29,20 @@ function ReusableContextMenu() {
return; return;
} }
setData({ setData({
placement, cords, render, afterClose, placement,
cords,
render,
afterClose,
}); });
}; };
navigation.on(cons.events.navigation.REUSABLE_CONTEXT_MENU_OPENED, handleContextMenuOpen); navigation.on(
cons.events.navigation.REUSABLE_CONTEXT_MENU_OPENED,
handleContextMenuOpen
);
return () => { return () => {
navigation.removeListener( navigation.removeListener(
cons.events.navigation.REUSABLE_CONTEXT_MENU_OPENED, cons.events.navigation.REUSABLE_CONTEXT_MENU_OPENED,
handleContextMenuOpen, handleContextMenuOpen
); );
}; };
}, [data]); }, [data]);
@ -59,24 +65,24 @@ function ReusableContextMenu() {
return ( return (
<ContextMenu <ContextMenu
afterToggle={handleAfterToggle} afterToggle={handleAfterToggle}
placement={data?.placement || 'right'} placement={data?.placement || "right"}
content={data?.render(closeMenu) ?? ''} content={data?.render(closeMenu) ?? ""}
render={(toggleMenu) => ( render={(toggleMenu) => (
<input <input
ref={openerRef} ref={openerRef}
onClick={toggleMenu} onClick={toggleMenu}
type="button" type="button"
style={{ style={{
width: '32px', width: "32px",
height: '32px', height: "32px",
backgroundColor: 'transparent', backgroundColor: "transparent",
position: 'fixed', position: "fixed",
top: 0, top: 0,
left: 0, left: 0,
padding: 0, padding: 0,
border: 'none', border: "none",
visibility: 'hidden', visibility: "hidden",
appearance: 'none', appearance: "none",
}} }}
/> />
)} )}

View file

@ -1,28 +1,38 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Divider.scss'; import "./Divider.scss";
import Text from '../text/Text'; import Text from "../text/Text";
function Divider({ text, variant, align }) { function Divider({ text, variant, align }) {
const dividerClass = ` divider--${variant} divider--${align}`; const dividerClass = ` divider--${variant} divider--${align}`;
return ( return (
<div className={`divider${dividerClass}`}> <div className={`divider${dividerClass}`}>
{text !== null && <Text className="divider__text" variant="b3" weight="bold">{text}</Text>} {text !== null && (
<Text className="divider__text" variant="b3" weight="bold">
{text}
</Text>
)}
</div> </div>
); );
} }
Divider.defaultProps = { Divider.defaultProps = {
text: null, text: null,
variant: 'surface', variant: "surface",
align: 'center', align: "center",
}; };
Divider.propTypes = { Divider.propTypes = {
text: PropTypes.string, text: PropTypes.string,
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']), variant: PropTypes.oneOf([
align: PropTypes.oneOf(['left', 'center', 'right']), "surface",
"primary",
"positive",
"caution",
"danger",
]),
align: PropTypes.oneOf(["left", "center", "right"]),
}; };
export default Divider; export default Divider;

View file

@ -1,5 +1,5 @@
.divider-line { .divider-line {
content: ''; content: "";
display: inline-block; display: inline-block;
flex: 1; flex: 1;
border-bottom: 1px solid var(--local-divider-color); border-bottom: 1px solid var(--local-divider-color);
@ -36,7 +36,7 @@
} }
.divider--primary { .divider--primary {
--local-divider-color: var(--bg-primary); --local-divider-color: var(--bg-primary);
--local-divider-opacity: .8; --local-divider-opacity: 0.8;
.divider__text { .divider__text {
color: var(--tc-primary-high); color: var(--tc-primary-high);
background-color: var(--bg-primary); background-color: var(--bg-primary);
@ -44,7 +44,7 @@
} }
.divider--positive { .divider--positive {
--local-divider-color: var(--bg-positive); --local-divider-color: var(--bg-positive);
--local-divider-opacity: .8; --local-divider-opacity: 0.8;
.divider__text { .divider__text {
color: var(--bg-surface); color: var(--bg-surface);
background-color: var(--bg-positive); background-color: var(--bg-positive);
@ -52,7 +52,7 @@
} }
.divider--danger { .divider--danger {
--local-divider-color: var(--bg-danger); --local-divider-color: var(--bg-danger);
--local-divider-opacity: .8; --local-divider-opacity: 0.8;
.divider__text { .divider__text {
color: var(--bg-surface); color: var(--bg-surface);
background-color: var(--bg-danger); background-color: var(--bg-danger);
@ -60,7 +60,7 @@
} }
.divider--caution { .divider--caution {
--local-divider-color: var(--bg-caution); --local-divider-color: var(--bg-caution);
--local-divider-opacity: .8; --local-divider-opacity: 0.8;
.divider__text { .divider__text {
color: var(--bg-surface); color: var(--bg-surface);
background-color: var(--bg-caution); background-color: var(--bg-caution);

View file

@ -1,13 +1,9 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Header.scss'; import "./Header.scss";
function Header({ children }) { function Header({ children }) {
return ( return <div className="header">{children}</div>;
<div className="header">
{children}
</div>
);
} }
Header.propTypes = { Header.propTypes = {
@ -15,11 +11,7 @@ Header.propTypes = {
}; };
function TitleWrapper({ children }) { function TitleWrapper({ children }) {
return ( return <div className="header__title-wrapper">{children}</div>;
<div className="header__title-wrapper">
{children}
</div>
);
} }
TitleWrapper.propTypes = { TitleWrapper.propTypes = {

View file

@ -1,5 +1,5 @@
@use '../../partials/text'; @use "../../partials/text";
@use '../../partials/dir'; @use "../../partials/dir";
.header { .header {
@include dir.side(padding, var(--sp-normal), var(--sp-extra-tight)); @include dir.side(padding, var(--sp-normal), var(--sp-extra-tight));

View file

@ -1,26 +1,43 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Input.scss'; import "./Input.scss";
import TextareaAutosize from 'react-autosize-textarea'; import TextareaAutosize from "react-autosize-textarea";
function Input({ function Input({
id, label, name, value, placeholder, id,
required, type, onChange, forwardRef, label,
resizable, minHeight, onResize, state, name,
onKeyDown, disabled, autoFocus, value,
placeholder,
required,
type,
onChange,
forwardRef,
resizable,
minHeight,
onResize,
state,
onKeyDown,
disabled,
autoFocus,
}) { }) {
return ( return (
<div className="input-container"> <div className="input-container">
{ label !== '' && <label className="input__label text-b2" htmlFor={id}>{label}</label> } {label !== "" && (
{ resizable <label className="input__label text-b2" htmlFor={id}>
? ( {label}
</label>
)}
{resizable ? (
<TextareaAutosize <TextareaAutosize
dir="auto" dir="auto"
style={{ minHeight: `${minHeight}px` }} style={{ minHeight: `${minHeight}px` }}
name={name} name={name}
id={id} id={id}
className={`input input--resizable${state !== 'normal' ? ` input--${state}` : ''}`} className={`input input--resizable${
state !== "normal" ? ` input--${state}` : ""
}`}
ref={forwardRef} ref={forwardRef}
type={type} type={type}
placeholder={placeholder} placeholder={placeholder}
@ -39,7 +56,7 @@ function Input({
ref={forwardRef} ref={forwardRef}
id={id} id={id}
name={name} name={name}
className={`input ${state !== 'normal' ? ` input--${state}` : ''}`} className={`input ${state !== "normal" ? ` input--${state}` : ""}`}
type={type} type={type}
placeholder={placeholder} placeholder={placeholder}
required={required} required={required}
@ -58,18 +75,18 @@ function Input({
Input.defaultProps = { Input.defaultProps = {
id: null, id: null,
name: '', name: "",
label: '', label: "",
value: '', value: "",
placeholder: '', placeholder: "",
type: 'text', type: "text",
required: false, required: false,
onChange: null, onChange: null,
forwardRef: null, forwardRef: null,
resizable: false, resizable: false,
minHeight: 46, minHeight: 46,
onResize: null, onResize: null,
state: 'normal', state: "normal",
onKeyDown: null, onKeyDown: null,
disabled: false, disabled: false,
autoFocus: false, autoFocus: false,
@ -88,7 +105,7 @@ Input.propTypes = {
resizable: PropTypes.bool, resizable: PropTypes.bool,
minHeight: PropTypes.number, minHeight: PropTypes.number,
onResize: PropTypes.func, onResize: PropTypes.func,
state: PropTypes.oneOf(['normal', 'success', 'error']), state: PropTypes.oneOf(["normal", "success", "error"]),
onKeyDown: PropTypes.func, onKeyDown: PropTypes.func,
disabled: PropTypes.bool, disabled: PropTypes.bool,
autoFocus: PropTypes.bool, autoFocus: PropTypes.bool,

View file

@ -1,4 +1,4 @@
@use '../../atoms/scroll/scrollbar'; @use "../../atoms/scroll/scrollbar";
.input { .input {
display: block; display: block;
@ -47,6 +47,6 @@
box-shadow: var(--bs-primary-border); box-shadow: var(--bs-primary-border);
} }
&::placeholder { &::placeholder {
color: var(--tc-surface-low) color: var(--tc-surface-low);
} }
} }

View file

@ -1,23 +1,27 @@
import React, { useEffect, useRef } from 'react'; import React, { useEffect, useRef } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Math.scss'; import "./Math.scss";
import katex from 'katex'; import katex from "katex";
import 'katex/dist/katex.min.css'; import "katex/dist/katex.min.css";
import 'katex/dist/contrib/copy-tex'; import "katex/dist/contrib/copy-tex";
const Math = React.memo(({ const Math = React.memo(
content, throwOnError, errorColor, displayMode, ({ content, throwOnError, errorColor, displayMode }) => {
}) => {
const ref = useRef(null); const ref = useRef(null);
useEffect(() => { useEffect(() => {
katex.render(content, ref.current, { throwOnError, errorColor, displayMode }); katex.render(content, ref.current, {
throwOnError,
errorColor,
displayMode,
});
}, [content, throwOnError, errorColor, displayMode]); }, [content, throwOnError, errorColor, displayMode]);
return <span ref={ref} />; return <span ref={ref} />;
}); }
);
Math.defaultProps = { Math.defaultProps = {
throwOnError: null, throwOnError: null,
errorColor: null, errorColor: null,

View file

@ -1,36 +1,43 @@
import React, { useEffect } from 'react'; import React, { useEffect } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './RawModal.scss'; import "./RawModal.scss";
import Modal from 'react-modal'; import Modal from "react-modal";
import navigation from '../../../client/state/navigation'; import navigation from "../../../client/state/navigation";
Modal.setAppElement('#root'); Modal.setAppElement("#root");
function RawModal({ function RawModal({
className, overlayClassName, className,
isOpen, size, onAfterOpen, onAfterClose, overlayClassName,
onRequestClose, closeFromOutside, children, isOpen,
size,
onAfterOpen,
onAfterClose,
onRequestClose,
closeFromOutside,
children,
}) { }) {
let modalClass = (className !== null) ? `${className} ` : ''; let modalClass = className !== null ? `${className} ` : "";
switch (size) { switch (size) {
case 'large': case "large":
modalClass += 'raw-modal__large '; modalClass += "raw-modal__large ";
break; break;
case 'medium': case "medium":
modalClass += 'raw-modal__medium '; modalClass += "raw-modal__medium ";
break; break;
case 'small': case "small":
default: default:
modalClass += 'raw-modal__small '; modalClass += "raw-modal__small ";
} }
useEffect(() => { useEffect(() => {
navigation.setIsRawModalVisible(isOpen); navigation.setIsRawModalVisible(isOpen);
}, [isOpen]); }, [isOpen]);
const modalOverlayClass = (overlayClassName !== null) ? `${overlayClassName} ` : ''; const modalOverlayClass =
overlayClassName !== null ? `${overlayClassName} ` : "";
return ( return (
<Modal <Modal
className={`${modalClass}raw-modal`} className={`${modalClass}raw-modal`}
@ -51,7 +58,7 @@ function RawModal({
RawModal.defaultProps = { RawModal.defaultProps = {
className: null, className: null,
overlayClassName: null, overlayClassName: null,
size: 'small', size: "small",
onAfterOpen: null, onAfterOpen: null,
onAfterClose: null, onAfterClose: null,
onRequestClose: null, onRequestClose: null,
@ -62,7 +69,7 @@ RawModal.propTypes = {
className: PropTypes.string, className: PropTypes.string,
overlayClassName: PropTypes.string, overlayClassName: PropTypes.string,
isOpen: PropTypes.bool.isRequired, isOpen: PropTypes.bool.isRequired,
size: PropTypes.oneOf(['large', 'medium', 'small']), size: PropTypes.oneOf(["large", "medium", "small"]),
onAfterOpen: PropTypes.func, onAfterOpen: PropTypes.func,
onAfterClose: PropTypes.func, onAfterClose: PropTypes.func,
onRequestClose: PropTypes.func, onRequestClose: PropTypes.func,

View file

@ -49,7 +49,7 @@
@keyframes raw-modal--content { @keyframes raw-modal--content {
0% { 0% {
transform: translateY(100px); transform: translateY(100px);
opacity: .5; opacity: 0.5;
} }
100% { 100% {
transform: translateY(0); transform: translateY(0);

View file

@ -1,21 +1,25 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ScrollView.scss'; import "./ScrollView.scss";
const ScrollView = React.forwardRef(({ const ScrollView = React.forwardRef(
horizontal, vertical, autoHide, invisible, onScroll, children, ({ horizontal, vertical, autoHide, invisible, onScroll, children }, ref) => {
}, ref) => { let scrollbarClasses = "";
let scrollbarClasses = ''; if (horizontal) scrollbarClasses += " scrollbar__h";
if (horizontal) scrollbarClasses += ' scrollbar__h'; if (vertical) scrollbarClasses += " scrollbar__v";
if (vertical) scrollbarClasses += ' scrollbar__v'; if (autoHide) scrollbarClasses += " scrollbar--auto-hide";
if (autoHide) scrollbarClasses += ' scrollbar--auto-hide'; if (invisible) scrollbarClasses += " scrollbar--invisible";
if (invisible) scrollbarClasses += ' scrollbar--invisible';
return ( return (
<div onScroll={onScroll} ref={ref} className={`scrollbar${scrollbarClasses}`}> <div
onScroll={onScroll}
ref={ref}
className={`scrollbar${scrollbarClasses}`}
>
{children} {children}
</div> </div>
); );
}); }
);
ScrollView.defaultProps = { ScrollView.defaultProps = {
horizontal: false, horizontal: false,

View file

@ -1,8 +1,8 @@
@use '../../partials/dir'; @use "../../partials/dir";
@use '_scrollbar'; @use "_scrollbar";
@mixin paddingForSafari($padding) { @mixin paddingForSafari($padding) {
@media not all and (min-resolution:.001dpcm) { @media not all and (min-resolution: 0.001dpcm) {
@include dir.side(padding, 0, $padding); @include dir.side(padding, 0, $padding);
} }
} }

View file

@ -1,15 +1,13 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './SegmentedControls.scss'; import "./SegmentedControls.scss";
import { blurOnBubbling } from '../button/script'; import { blurOnBubbling } from "../button/script";
import Text from '../text/Text'; import Text from "../text/Text";
import RawIcon from '../system-icons/RawIcon'; import RawIcon from "../system-icons/RawIcon";
function SegmentedControls({ function SegmentedControls({ selected, segments, onSelect }) {
selected, segments, onSelect,
}) {
const [select, setSelect] = useState(selected); const [select, setSelect] = useState(selected);
function selectSegment(segmentIndex) { function selectSegment(segmentIndex) {
@ -23,32 +21,34 @@ function SegmentedControls({
return ( return (
<div className="segmented-controls"> <div className="segmented-controls">
{ {segments.map((segment, index) => (
segments.map((segment, index) => (
<button <button
key={Math.random().toString(20).substr(2, 6)} key={Math.random().toString(20).substr(2, 6)}
className={`segment-btn${select === index ? ' segment-btn--active' : ''}`} className={`segment-btn${
select === index ? " segment-btn--active" : ""
}`}
type="button" type="button"
onClick={() => selectSegment(index)} onClick={() => selectSegment(index)}
onMouseUp={(e) => blurOnBubbling(e, '.segment-btn')} onMouseUp={(e) => blurOnBubbling(e, ".segment-btn")}
> >
<div className="segment-btn__base"> <div className="segment-btn__base">
{segment.iconSrc && <RawIcon size="small" src={segment.iconSrc} />} {segment.iconSrc && <RawIcon size="small" src={segment.iconSrc} />}
{segment.text && <Text variant="b2">{segment.text}</Text>} {segment.text && <Text variant="b2">{segment.text}</Text>}
</div> </div>
</button> </button>
)) ))}
}
</div> </div>
); );
} }
SegmentedControls.propTypes = { SegmentedControls.propTypes = {
selected: PropTypes.number.isRequired, selected: PropTypes.number.isRequired,
segments: PropTypes.arrayOf(PropTypes.shape({ segments: PropTypes.arrayOf(
PropTypes.shape({
iconSrc: PropTypes.string, iconSrc: PropTypes.string,
text: PropTypes.string, text: PropTypes.string,
})).isRequired, })
).isRequired,
onSelect: PropTypes.func.isRequired, onSelect: PropTypes.func.isRequired,
}; };

View file

@ -1,5 +1,5 @@
@use '../button/state'; @use "../button/state";
@use '../../partials/dir'; @use "../../partials/dir";
.segmented-controls { .segmented-controls {
background-color: var(--bg-surface-low); background-color: var(--bg-surface-low);
@ -46,12 +46,16 @@
&:last-child { &:last-child {
border-right: none; border-right: none;
} }
[dir=rtl] & { [dir="rtl"] & {
border-left: 1px solid var(--bg-surface-border); border-left: 1px solid var(--bg-surface-border);
border-right: 1px solid var(--bg-surface-border); border-right: 1px solid var(--bg-surface-border);
&:first-child { border-right: none;} &:first-child {
&:last-child { border-left: none;} border-right: none;
}
&:last-child {
border-left: none;
}
} }
} }
} }

View file

@ -1,19 +1,17 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Spinner.scss'; import "./Spinner.scss";
function Spinner({ size }) { function Spinner({ size }) {
return ( return <div className={`donut-spinner donut-spinner--${size}`}> </div>;
<div className={`donut-spinner donut-spinner--${size}`}> </div>
);
} }
Spinner.defaultProps = { Spinner.defaultProps = {
size: 'normal', size: "normal",
}; };
Spinner.propTypes = { Spinner.propTypes = {
size: PropTypes.oneOf(['normal', 'small']), size: PropTypes.oneOf(["normal", "small"]),
}; };
export default Spinner; export default Spinner;

View file

@ -1,12 +1,12 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './RawIcon.scss'; import "./RawIcon.scss";
function RawIcon({ color, size, src, isImage }) { function RawIcon({ color, size, src, isImage }) {
const style = {}; const style = {};
if (color !== null) style.backgroundColor = color; if (color !== null) style.backgroundColor = color;
if (isImage) { if (isImage) {
style.backgroundColor = 'transparent'; style.backgroundColor = "transparent";
style.backgroundImage = `url("${src}")`; style.backgroundImage = `url("${src}")`;
} else { } else {
style.WebkitMaskImage = `url("${src}")`; style.WebkitMaskImage = `url("${src}")`;
@ -18,13 +18,13 @@ function RawIcon({ color, size, src, isImage }) {
RawIcon.defaultProps = { RawIcon.defaultProps = {
color: null, color: null,
size: 'normal', size: "normal",
isImage: false, isImage: false,
}; };
RawIcon.propTypes = { RawIcon.propTypes = {
color: PropTypes.string, color: PropTypes.string,
size: PropTypes.oneOf(['large', 'normal', 'small', 'extra-small']), size: PropTypes.oneOf(["large", "normal", "small", "extra-small"]),
src: PropTypes.string.isRequired, src: PropTypes.string.isRequired,
isImage: PropTypes.bool, isImage: PropTypes.bool,
}; };

View file

@ -1,15 +1,12 @@
import React, { useState } from 'react'; import React, { useState } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Tabs.scss'; import "./Tabs.scss";
import Button from '../button/Button'; import Button from "../button/Button";
import ScrollView from '../scroll/ScrollView'; import ScrollView from "../scroll/ScrollView";
function TabItem({ function TabItem({ selected, iconSrc, onClick, children, disabled }) {
selected, iconSrc, const isSelected = selected ? "tab-item--selected" : "";
onClick, children, disabled,
}) {
const isSelected = selected ? 'tab-item--selected' : '';
return ( return (
<Button <Button
@ -78,7 +75,7 @@ Tabs.propTypes = {
iconSrc: PropTypes.string, iconSrc: PropTypes.string,
text: PropTypes.string, text: PropTypes.string,
disabled: PropTypes.bool, disabled: PropTypes.bool,
}), })
).isRequired, ).isRequired,
defaultSelected: PropTypes.number, defaultSelected: PropTypes.number,
onSelect: PropTypes.func.isRequired, onSelect: PropTypes.func.isRequired,

View file

@ -1,4 +1,4 @@
@use '../../partials/dir'; @use "../../partials/dir";
.tabs { .tabs {
height: var(--header-height); height: var(--header-height);

View file

@ -1,30 +1,51 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Text.scss'; import "./Text.scss";
function Text({ function Text({ className, style, variant, weight, primary, span, children }) {
className, style, variant, weight,
primary, span, children,
}) {
const classes = []; const classes = [];
if (className) classes.push(className); if (className) classes.push(className);
classes.push(`text text-${variant} text-${weight}`); classes.push(`text text-${variant} text-${weight}`);
if (primary) classes.push('font-primary'); if (primary) classes.push("font-primary");
const textClass = classes.join(' '); const textClass = classes.join(" ");
if (span) return <span className={textClass} style={style}>{ children }</span>; if (span)
if (variant === 'h1') return <h1 className={textClass} style={style}>{ children }</h1>; return (
if (variant === 'h2') return <h2 className={textClass} style={style}>{ children }</h2>; <span className={textClass} style={style}>
if (variant === 's1') return <h4 className={textClass} style={style}>{ children }</h4>; {children}
return <p className={textClass} style={style}>{ children }</p>; </span>
);
if (variant === "h1")
return (
<h1 className={textClass} style={style}>
{children}
</h1>
);
if (variant === "h2")
return (
<h2 className={textClass} style={style}>
{children}
</h2>
);
if (variant === "s1")
return (
<h4 className={textClass} style={style}>
{children}
</h4>
);
return (
<p className={textClass} style={style}>
{children}
</p>
);
} }
Text.defaultProps = { Text.defaultProps = {
className: null, className: null,
style: null, style: null,
variant: 'b1', variant: "b1",
weight: 'normal', weight: "normal",
primary: false, primary: false,
span: false, span: false,
}; };
@ -32,8 +53,8 @@ Text.defaultProps = {
Text.propTypes = { Text.propTypes = {
className: PropTypes.string, className: PropTypes.string,
style: PropTypes.shape({}), style: PropTypes.shape({}),
variant: PropTypes.oneOf(['h1', 'h2', 's1', 'b1', 'b2', 'b3']), variant: PropTypes.oneOf(["h1", "h2", "s1", "b1", "b2", "b3"]),
weight: PropTypes.oneOf(['light', 'normal', 'medium', 'bold']), weight: PropTypes.oneOf(["light", "normal", "medium", "bold"]),
primary: PropTypes.bool, primary: PropTypes.bool,
span: PropTypes.bool, span: PropTypes.bool,
children: PropTypes.node.isRequired, children: PropTypes.node.isRequired,

View file

@ -5,7 +5,7 @@
& img.emoji, & img.emoji,
& img[data-mx-emoticon] { & img[data-mx-emoticon] {
height: calc(var(--lh-#{$type}) - .25rem); height: calc(var(--lh-#{$type}) - 0.25rem);
} }
} }
@ -20,7 +20,7 @@
margin-right: 2px !important; margin-right: 2px !important;
padding: 0 !important; padding: 0 !important;
position: relative; position: relative;
top: -.1rem; top: -0.1rem;
vertical-align: middle; vertical-align: middle;
} }
} }

View file

@ -1,44 +0,0 @@
import React from 'react';
import PropTypes from 'prop-types';
import dateFormat from 'dateformat';
import { isInSameDay } from '../../../util/common';
function Time({ timestamp, fullTime }) {
const date = new Date(timestamp);
const formattedFullTime = dateFormat(date, 'dd mmmm yyyy, hh:MM TT');
let formattedDate = formattedFullTime;
if (!fullTime) {
const compareDate = new Date();
const isToday = isInSameDay(date, compareDate);
compareDate.setDate(compareDate.getDate() - 1);
const isYesterday = isInSameDay(date, compareDate);
formattedDate = dateFormat(date, isToday || isYesterday ? 'hh:MM TT' : 'dd/mm/yyyy');
if (isYesterday) {
formattedDate = `Yesterday, ${formattedDate}`;
}
}
return (
<time
dateTime={date.toISOString()}
title={formattedFullTime}
>
{formattedDate}
</time>
);
}
Time.defaultProps = {
fullTime: false,
};
Time.propTypes = {
timestamp: PropTypes.number.isRequired,
fullTime: PropTypes.bool,
};
export default Time;

View file

@ -0,0 +1,46 @@
import React from "react";
import dateFormat from "dateformat";
import { isInSameDay } from "../../../util/common";
export interface TimeProps {
timestamp: number;
fullTime?: boolean;
}
function Time({ timestamp, fullTime }: TimeProps) {
const date = new Date(timestamp);
const formattedFullTime = dateFormat(date, "dd mmmm yyyy, hh:MM TT");
let formattedDateTime = formattedFullTime;
if (!fullTime) {
const compareDate = new Date();
const isToday = isInSameDay(date, compareDate);
compareDate.setDate(compareDate.getDate() - 1);
const isYesterday = isInSameDay(date, compareDate);
const dtf = new Intl.DateTimeFormat();
const formattedDate = dtf.format(date);
formattedDateTime = dateFormat(
date,
isToday || isYesterday ? "hh:MM TT" : formattedDate
);
if (isYesterday) {
formattedDateTime = `Yesterday, ${formattedDateTime}`;
}
}
return (
<time dateTime={date.toISOString()} title={formattedFullTime}>
{formattedDateTime}
</time>
);
}
Time.defaultProps = {
fullTime: false,
};
export default Time;

View file

@ -1,11 +1,9 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Tooltip.scss'; import "./Tooltip.scss";
import Tippy from '@tippyjs/react'; import Tippy from "@tippyjs/react";
function Tooltip({ function Tooltip({ className, placement, content, delay, children }) {
className, placement, content, delay, children,
}) {
return ( return (
<Tippy <Tippy
content={content} content={content}
@ -23,8 +21,8 @@ function Tooltip({
} }
Tooltip.defaultProps = { Tooltip.defaultProps = {
placement: 'top', placement: "top",
className: '', className: "",
delay: [200, 0], delay: [200, 0],
}; };

View file

@ -1,7 +1,7 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import initMatrix from '../../client/initMatrix'; import initMatrix from "../../client/initMatrix";
export function useAccountData(eventType) { export function useAccountData(eventType) {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
@ -12,9 +12,9 @@ export function useAccountData(eventType) {
if (mEvent.getType() !== eventType) return; if (mEvent.getType() !== eventType) return;
setEvent(mEvent); setEvent(mEvent);
}; };
mx.on('accountData', handleChange); mx.on("accountData", handleChange);
return () => { return () => {
mx.removeListener('accountData', handleChange); mx.removeListener("accountData", handleChange);
}; };
}, [eventType]); }, [eventType]);

View file

@ -1,22 +1,27 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import initMatrix from '../../client/initMatrix'; import initMatrix from "../../client/initMatrix";
import cons from '../../client/state/cons'; import cons from "../../client/state/cons";
export function useCategorizedSpaces() { export function useCategorizedSpaces() {
const { accountData } = initMatrix; const { accountData } = initMatrix;
const [categorizedSpaces, setCategorizedSpaces] = useState([...accountData.categorizedSpaces]); const [categorizedSpaces, setCategorizedSpaces] = useState([
...accountData.categorizedSpaces,
]);
useEffect(() => { useEffect(() => {
const handleCategorizedSpaces = () => { const handleCategorizedSpaces = () => {
setCategorizedSpaces([...accountData.categorizedSpaces]); setCategorizedSpaces([...accountData.categorizedSpaces]);
}; };
accountData.on(cons.events.accountData.CATEGORIZE_SPACE_UPDATED, handleCategorizedSpaces); accountData.on(
cons.events.accountData.CATEGORIZE_SPACE_UPDATED,
handleCategorizedSpaces
);
return () => { return () => {
accountData.removeListener( accountData.removeListener(
cons.events.accountData.CATEGORIZE_SPACE_UPDATED, cons.events.accountData.CATEGORIZE_SPACE_UPDATED,
handleCategorizedSpaces, handleCategorizedSpaces
); );
}; };
}, []); }, []);

View file

@ -1,8 +1,8 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import initMatrix from '../../client/initMatrix'; import initMatrix from "../../client/initMatrix";
import { hasCrossSigningAccountData } from '../../util/matrixUtil'; import { hasCrossSigningAccountData } from "../../util/matrixUtil";
export function useCrossSigningStatus() { export function useCrossSigningStatus() {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
@ -11,14 +11,14 @@ export function useCrossSigningStatus() {
useEffect(() => { useEffect(() => {
if (isCSEnabled) return null; if (isCSEnabled) return null;
const handleAccountData = (event) => { const handleAccountData = (event) => {
if (event.getType() === 'm.cross_signing.master') { if (event.getType() === "m.cross_signing.master") {
setIsCSEnabled(true); setIsCSEnabled(true);
} }
}; };
mx.on('accountData', handleAccountData); mx.on("accountData", handleAccountData);
return () => { return () => {
mx.removeListener('accountData', handleAccountData); mx.removeListener("accountData", handleAccountData);
}; };
}, [isCSEnabled === false]); }, [isCSEnabled === false]);
return isCSEnabled; return isCSEnabled;

View file

@ -1,7 +1,7 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import initMatrix from '../../client/initMatrix'; import initMatrix from "../../client/initMatrix";
export function useDeviceList() { export function useDeviceList() {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
@ -10,7 +10,8 @@ export function useDeviceList() {
useEffect(() => { useEffect(() => {
let isMounted = true; let isMounted = true;
const updateDevices = () => mx.getDevices().then((data) => { const updateDevices = () =>
mx.getDevices().then((data) => {
if (!isMounted) return; if (!isMounted) return;
setDeviceList(data.devices || []); setDeviceList(data.devices || []);
}); });
@ -22,9 +23,9 @@ export function useDeviceList() {
} }
}; };
mx.on('crypto.devicesUpdated', handleDevicesUpdate); mx.on("crypto.devicesUpdated", handleDevicesUpdate);
return () => { return () => {
mx.removeListener('crypto.devicesUpdated', handleDevicesUpdate); mx.removeListener("crypto.devicesUpdated", handleDevicesUpdate);
isMounted = false; isMounted = false;
}; };
}, []); }, []);

View file

@ -1,10 +1,13 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState } from 'react'; import { useState } from "react";
export function useForceUpdate() { export function useForceUpdate() {
const [data, setData] = useState(null); const [data, setData] = useState(null);
return [data, function forceUpdateHook() { return [
data,
function forceUpdateHook() {
setData({}); setData({});
}]; },
];
} }

View file

@ -1,6 +1,6 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useEffect, useState } from 'react'; import { useEffect, useState } from "react";
export function usePermission(name, initial) { export function usePermission(name, initial) {
const [state, setState] = useState(initial); const [state, setState] = useState(initial);
@ -15,12 +15,12 @@ export function usePermission(name, initial) {
descriptor = _descriptor; descriptor = _descriptor;
update(); update();
descriptor.addEventListener('change', update); descriptor.addEventListener("change", update);
}); });
} }
return () => { return () => {
if (descriptor) descriptor.removeEventListener('change', update); if (descriptor) descriptor.removeEventListener("change", update);
}; };
}, []); }, []);

View file

@ -1,8 +1,8 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import cons from '../../client/state/cons'; import cons from "../../client/state/cons";
import navigation from '../../client/state/navigation'; import navigation from "../../client/state/navigation";
export function useSelectedSpace() { export function useSelectedSpace() {
const [spaceId, setSpaceId] = useState(navigation.selectedSpaceId); const [spaceId, setSpaceId] = useState(navigation.selectedSpaceId);
@ -13,7 +13,10 @@ export function useSelectedSpace() {
}; };
navigation.on(cons.events.navigation.SPACE_SELECTED, onSpaceSelected); navigation.on(cons.events.navigation.SPACE_SELECTED, onSpaceSelected);
return () => { return () => {
navigation.removeListener(cons.events.navigation.SPACE_SELECTED, onSpaceSelected); navigation.removeListener(
cons.events.navigation.SPACE_SELECTED,
onSpaceSelected
);
}; };
}, []); }, []);

View file

@ -1,8 +1,8 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import cons from '../../client/state/cons'; import cons from "../../client/state/cons";
import navigation from '../../client/state/navigation'; import navigation from "../../client/state/navigation";
export function useSelectedTab() { export function useSelectedTab() {
const [selectedTab, setSelectedTab] = useState(navigation.selectedTab); const [selectedTab, setSelectedTab] = useState(navigation.selectedTab);
@ -13,7 +13,10 @@ export function useSelectedTab() {
}; };
navigation.on(cons.events.navigation.TAB_SELECTED, onTabSelected); navigation.on(cons.events.navigation.TAB_SELECTED, onTabSelected);
return () => { return () => {
navigation.removeListener(cons.events.navigation.TAB_SELECTED, onTabSelected); navigation.removeListener(
cons.events.navigation.TAB_SELECTED,
onTabSelected
);
}; };
}, []); }, []);

View file

@ -1,22 +1,27 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import initMatrix from '../../client/initMatrix'; import initMatrix from "../../client/initMatrix";
import cons from '../../client/state/cons'; import cons from "../../client/state/cons";
export function useSpaceShortcut() { export function useSpaceShortcut() {
const { accountData } = initMatrix; const { accountData } = initMatrix;
const [spaceShortcut, setSpaceShortcut] = useState([...accountData.spaceShortcut]); const [spaceShortcut, setSpaceShortcut] = useState([
...accountData.spaceShortcut,
]);
useEffect(() => { useEffect(() => {
const onSpaceShortcutUpdated = () => { const onSpaceShortcutUpdated = () => {
setSpaceShortcut([...accountData.spaceShortcut]); setSpaceShortcut([...accountData.spaceShortcut]);
}; };
accountData.on(cons.events.accountData.SPACE_SHORTCUT_UPDATED, onSpaceShortcutUpdated); accountData.on(
cons.events.accountData.SPACE_SHORTCUT_UPDATED,
onSpaceShortcutUpdated
);
return () => { return () => {
accountData.removeListener( accountData.removeListener(
cons.events.accountData.SPACE_SHORTCUT_UPDATED, cons.events.accountData.SPACE_SHORTCUT_UPDATED,
onSpaceShortcutUpdated, onSpaceShortcutUpdated
); );
}; };
}, []); }, []);

View file

@ -1,5 +1,5 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
import { useEffect, useRef } from 'react'; import { useEffect, useRef } from "react";
export function useStore(...args) { export function useStore(...args) {
const itemRef = useRef(null); const itemRef = useRef(null);

View file

@ -1,20 +1,20 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ConfirmDialog.scss'; import "./ConfirmDialog.scss";
import { openReusableDialog } from '../../../client/action/navigation'; import { openReusableDialog } from "../../../client/action/navigation";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
function ConfirmDialog({ function ConfirmDialog({ desc, actionTitle, actionType, onComplete }) {
desc, actionTitle, actionType, onComplete,
}) {
return ( return (
<div className="confirm-dialog"> <div className="confirm-dialog">
<Text>{desc}</Text> <Text>{desc}</Text>
<div className="confirm-dialog__btn"> <div className="confirm-dialog__btn">
<Button variant={actionType} onClick={() => onComplete(true)}>{actionTitle}</Button> <Button variant={actionType} onClick={() => onComplete(true)}>
{actionTitle}
</Button>
<Button onClick={() => onComplete(false)}>Cancel</Button> <Button onClick={() => onComplete(false)}>Cancel</Button>
</div> </div>
</div> </div>
@ -23,7 +23,8 @@ function ConfirmDialog({
ConfirmDialog.propTypes = { ConfirmDialog.propTypes = {
desc: PropTypes.string.isRequired, desc: PropTypes.string.isRequired,
actionTitle: PropTypes.string.isRequired, actionTitle: PropTypes.string.isRequired,
actionType: PropTypes.oneOf(['primary', 'positive', 'danger', 'caution']).isRequired, actionType: PropTypes.oneOf(["primary", "positive", "danger", "caution"])
.isRequired,
onComplete: PropTypes.func.isRequired, onComplete: PropTypes.func.isRequired,
}; };
@ -35,10 +36,18 @@ ConfirmDialog.propTypes = {
* @return {Promise<boolean>} does it get's confirmed or not * @return {Promise<boolean>} does it get's confirmed or not
*/ */
// eslint-disable-next-line import/prefer-default-export // eslint-disable-next-line import/prefer-default-export
export const confirmDialog = (title, desc, actionTitle, actionType = 'primary') => new Promise((resolve) => { export const confirmDialog = (
title,
desc,
actionTitle,
actionType = "primary"
) =>
new Promise((resolve) => {
let isCompleted = false; let isCompleted = false;
openReusableDialog( openReusableDialog(
<Text variant="s1" weight="medium">{title}</Text>, <Text variant="s1" weight="medium">
{title}
</Text>,
(requestClose) => ( (requestClose) => (
<ConfirmDialog <ConfirmDialog
desc={desc} desc={desc}
@ -53,6 +62,6 @@ export const confirmDialog = (title, desc, actionTitle, actionType = 'primary')
), ),
() => { () => {
if (!isCompleted) resolve(false); if (!isCompleted) resolve(false);
}, }
); );
}); });

View file

@ -1,22 +1,29 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Dialog.scss'; import "./Dialog.scss";
import { twemojify } from '../../../util/twemojify'; import { twemojify } from "../../../util/twemojify";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Header, { TitleWrapper } from '../../atoms/header/Header'; import Header, { TitleWrapper } from "../../atoms/header/Header";
import ScrollView from '../../atoms/scroll/ScrollView'; import ScrollView from "../../atoms/scroll/ScrollView";
import RawModal from '../../atoms/modal/RawModal'; import RawModal from "../../atoms/modal/RawModal";
function Dialog({ function Dialog({
className, isOpen, title, onAfterOpen, onAfterClose, className,
contentOptions, onRequestClose, closeFromOutside, children, isOpen,
title,
onAfterOpen,
onAfterClose,
contentOptions,
onRequestClose,
closeFromOutside,
children,
invisibleScroll, invisibleScroll,
}) { }) {
return ( return (
<RawModal <RawModal
className={`${className === null ? '' : `${className} `}dialog-modal`} className={`${className === null ? "" : `${className} `}dialog-modal`}
isOpen={isOpen} isOpen={isOpen}
onAfterOpen={onAfterOpen} onAfterOpen={onAfterOpen}
onAfterClose={onAfterClose} onAfterClose={onAfterClose}
@ -28,19 +35,19 @@ function Dialog({
<div className="dialog__content"> <div className="dialog__content">
<Header> <Header>
<TitleWrapper> <TitleWrapper>
{ {typeof title === "string" ? (
typeof title === 'string' <Text variant="h2" weight="medium" primary>
? <Text variant="h2" weight="medium" primary>{twemojify(title)}</Text> {twemojify(title)}
: title </Text>
} ) : (
title
)}
</TitleWrapper> </TitleWrapper>
{contentOptions} {contentOptions}
</Header> </Header>
<div className="dialog__content__wrapper"> <div className="dialog__content__wrapper">
<ScrollView autoHide={!invisibleScroll} invisible={invisibleScroll}> <ScrollView autoHide={!invisibleScroll} invisible={invisibleScroll}>
<div className="dialog__content-container"> <div className="dialog__content-container">{children}</div>
{children}
</div>
</ScrollView> </ScrollView>
</div> </div>
</div> </div>

View file

@ -1,12 +1,12 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from "react";
import cons from '../../../client/state/cons'; import cons from "../../../client/state/cons";
import navigation from '../../../client/state/navigation'; import navigation from "../../../client/state/navigation";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import Dialog from './Dialog'; import Dialog from "./Dialog";
import CrossIC from '../../../../public/res/ic/outlined/cross.svg'; import CrossIC from "../../../../public/res/ic/outlined/cross.svg";
function ReusableDialog() { function ReusableDialog() {
const [isOpen, setIsOpen] = useState(false); const [isOpen, setIsOpen] = useState(false);
@ -19,7 +19,10 @@ function ReusableDialog() {
}; };
navigation.on(cons.events.navigation.REUSABLE_DIALOG_OPENED, handleOpen); navigation.on(cons.events.navigation.REUSABLE_DIALOG_OPENED, handleOpen);
return () => { return () => {
navigation.removeListener(cons.events.navigation.REUSABLE_DIALOG_OPENED, handleOpen); navigation.removeListener(
cons.events.navigation.REUSABLE_DIALOG_OPENED,
handleOpen
);
}; };
}, []); }, []);
@ -35,10 +38,16 @@ function ReusableDialog() {
return ( return (
<Dialog <Dialog
isOpen={isOpen} isOpen={isOpen}
title={data?.title || ''} title={data?.title || ""}
onAfterClose={handleAfterClose} onAfterClose={handleAfterClose}
onRequestClose={handleRequestClose} onRequestClose={handleRequestClose}
contentOptions={<IconButton src={CrossIC} onClick={handleRequestClose} tooltip="Close" />} contentOptions={
<IconButton
src={CrossIC}
onClick={handleRequestClose}
tooltip="Close"
/>
}
invisibleScroll invisibleScroll
> >
{data?.render(handleRequestClose) || <div />} {data?.render(handleRequestClose) || <div />}

View file

@ -1,17 +1,17 @@
/* eslint-disable react/prop-types */ /* eslint-disable react/prop-types */
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './FollowingMembers.scss'; import "./FollowingMembers.scss";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import cons from '../../../client/state/cons'; import cons from "../../../client/state/cons";
import { openReadReceipts } from '../../../client/action/navigation'; import { openReadReceipts } from "../../../client/action/navigation";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import RawIcon from '../../atoms/system-icons/RawIcon'; import RawIcon from "../../atoms/system-icons/RawIcon";
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg'; import TickMarkIC from "../../../../public/res/ic/outlined/tick-mark.svg";
import { getUsersActionJsx } from '../../organisms/room/common'; import { getUsersActionJsx } from "../../organisms/room/common";
function FollowingMembers({ roomTimeline }) { function FollowingMembers({ roomTimeline }) {
const [followingMembers, setFollowingMembers] = useState([]); const [followingMembers, setFollowingMembers] = useState([]);
@ -27,28 +27,38 @@ function FollowingMembers({ roomTimeline }) {
setFollowingMembers(roomTimeline.getLiveReaders()); setFollowingMembers(roomTimeline.getLiveReaders());
}; };
updateFollowingMembers(); updateFollowingMembers();
roomTimeline.on(cons.events.roomTimeline.LIVE_RECEIPT, updateFollowingMembers); roomTimeline.on(
cons.events.roomTimeline.LIVE_RECEIPT,
updateFollowingMembers
);
roomsInput.on(cons.events.roomsInput.MESSAGE_SENT, handleOnMessageSent); roomsInput.on(cons.events.roomsInput.MESSAGE_SENT, handleOnMessageSent);
return () => { return () => {
roomTimeline.removeListener(cons.events.roomTimeline.LIVE_RECEIPT, updateFollowingMembers); roomTimeline.removeListener(
roomsInput.removeListener(cons.events.roomsInput.MESSAGE_SENT, handleOnMessageSent); cons.events.roomTimeline.LIVE_RECEIPT,
updateFollowingMembers
);
roomsInput.removeListener(
cons.events.roomsInput.MESSAGE_SENT,
handleOnMessageSent
);
}; };
}, [roomTimeline]); }, [roomTimeline]);
const filteredM = followingMembers.filter((userId) => userId !== myUserId); const filteredM = followingMembers.filter((userId) => userId !== myUserId);
return filteredM.length !== 0 && ( return (
filteredM.length !== 0 && (
<button <button
className="following-members" className="following-members"
onClick={() => openReadReceipts(roomId, followingMembers)} onClick={() => openReadReceipts(roomId, followingMembers)}
type="button" type="button"
> >
<RawIcon <RawIcon size="extra-small" src={TickMarkIC} />
size="extra-small" <Text variant="b2">
src={TickMarkIC} {getUsersActionJsx(roomId, filteredM, "following the conversation.")}
/> </Text>
<Text variant="b2">{getUsersActionJsx(roomId, filteredM, 'following the conversation.')}</Text>
</button> </button>
)
); );
} }

View file

@ -1,4 +1,4 @@
@use '../../partials/text'; @use "../../partials/text";
.following-members { .following-members {
width: 100%; width: 100%;

View file

@ -1,59 +1,61 @@
import React from 'react'; import React from "react";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import { openReusableContextMenu } from '../../../client/action/navigation'; import { openReusableContextMenu } from "../../../client/action/navigation";
import { getEventCords } from '../../../util/common'; import { getEventCords } from "../../../util/common";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import { MenuHeader } from '../../atoms/context-menu/ContextMenu'; import { MenuHeader } from "../../atoms/context-menu/ContextMenu";
import SettingTile from '../setting-tile/SettingTile'; import SettingTile from "../setting-tile/SettingTile";
import NotificationSelector from './NotificationSelector'; import NotificationSelector from "./NotificationSelector";
import ChevronBottomIC from '../../../../public/res/ic/outlined/chevron-bottom.svg'; import ChevronBottomIC from "../../../../public/res/ic/outlined/chevron-bottom.svg";
import { useAccountData } from '../../hooks/useAccountData'; import { useAccountData } from "../../hooks/useAccountData";
export const notifType = { export const notifType = {
ON: 'on', ON: "on",
OFF: 'off', OFF: "off",
NOISY: 'noisy', NOISY: "noisy",
}; };
export const typeToLabel = { export const typeToLabel = {
[notifType.ON]: 'On', [notifType.ON]: "On",
[notifType.OFF]: 'Off', [notifType.OFF]: "Off",
[notifType.NOISY]: 'Noisy', [notifType.NOISY]: "Noisy",
}; };
Object.freeze(notifType); Object.freeze(notifType);
const DM = '.m.rule.room_one_to_one'; const DM = ".m.rule.room_one_to_one";
const ENC_DM = '.m.rule.encrypted_room_one_to_one'; const ENC_DM = ".m.rule.encrypted_room_one_to_one";
const ROOM = '.m.rule.message'; const ROOM = ".m.rule.message";
const ENC_ROOM = '.m.rule.encrypted'; const ENC_ROOM = ".m.rule.encrypted";
export function getActionType(rule) { export function getActionType(rule) {
const { actions } = rule; const { actions } = rule;
if (actions.find((action) => action?.set_tweak === 'sound')) return notifType.NOISY; if (actions.find((action) => action?.set_tweak === "sound"))
if (actions.find((action) => action?.set_tweak === 'highlight')) return notifType.ON; return notifType.NOISY;
if (actions.find((action) => action === 'dont_notify')) return notifType.OFF; if (actions.find((action) => action?.set_tweak === "highlight"))
return notifType.ON;
if (actions.find((action) => action === "dont_notify")) return notifType.OFF;
return notifType.OFF; return notifType.OFF;
} }
export function getTypeActions(type, highlightValue = false) { export function getTypeActions(type, highlightValue = false) {
if (type === notifType.OFF) return ['dont_notify']; if (type === notifType.OFF) return ["dont_notify"];
const highlight = { set_tweak: 'highlight' }; const highlight = { set_tweak: "highlight" };
if (typeof highlightValue === 'boolean') highlight.value = highlightValue; if (typeof highlightValue === "boolean") highlight.value = highlightValue;
if (type === notifType.ON) return ['notify', highlight]; if (type === notifType.ON) return ["notify", highlight];
const sound = { set_tweak: 'sound', value: 'default' }; const sound = { set_tweak: "sound", value: "default" };
return ['notify', sound, highlight]; return ["notify", sound, highlight];
} }
function useGlobalNotif() { function useGlobalNotif() {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const pushRules = useAccountData('m.push_rules')?.getContent(); const pushRules = useAccountData("m.push_rules")?.getContent();
const underride = pushRules?.global?.underride ?? []; const underride = pushRules?.global?.underride ?? [];
const rulesToType = { const rulesToType = {
[DM]: notifType.ON, [DM]: notifType.ON,
@ -65,12 +67,14 @@ function useGlobalNotif() {
const getRuleCondition = (rule) => { const getRuleCondition = (rule) => {
const condition = []; const condition = [];
if (rule === DM || rule === ENC_DM) { if (rule === DM || rule === ENC_DM) {
condition.push({ kind: 'room_member_count', is: '2' }); condition.push({ kind: "room_member_count", is: "2" });
} }
condition.push({ condition.push({
kind: 'event_match', kind: "event_match",
key: 'type', key: "type",
pattern: [ENC_DM, ENC_ROOM].includes(rule) ? 'm.room.encrypted' : 'm.room.message', pattern: [ENC_DM, ENC_ROOM].includes(rule)
? "m.room.encrypted"
: "m.room.message",
}); });
return condition; return condition;
}; };
@ -93,7 +97,7 @@ function useGlobalNotif() {
} }
ruleContent.actions = getTypeActions(type); ruleContent.actions = getTypeActions(type);
mx.setAccountData('m.push_rules', content); mx.setAccountData("m.push_rules", content);
}; };
const dmRule = underride.find((rule) => rule.rule_id === DM); const dmRule = underride.find((rule) => rule.rule_id === DM);
@ -114,8 +118,8 @@ function GlobalNotification() {
const onSelect = (evt, rule) => { const onSelect = (evt, rule) => {
openReusableContextMenu( openReusableContextMenu(
'bottom', "bottom",
getEventCords(evt, '.btn-surface'), getEventCords(evt, ".btn-surface"),
(requestClose) => ( (requestClose) => (
<NotificationSelector <NotificationSelector
value={rulesToType[rule]} value={rulesToType[rule]}
@ -124,7 +128,7 @@ function GlobalNotification() {
requestClose(); requestClose();
}} }}
/> />
), )
); );
}; };
@ -133,39 +137,67 @@ function GlobalNotification() {
<MenuHeader>Global Notifications</MenuHeader> <MenuHeader>Global Notifications</MenuHeader>
<SettingTile <SettingTile
title="Direct messages" title="Direct messages"
options={( options={
<Button onClick={(evt) => onSelect(evt, DM)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, DM)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[DM]]} {typeToLabel[rulesToType[DM]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all direct message.</Text>} content={
<Text variant="b3">
Default notification settings for all direct message.
</Text>
}
/> />
<SettingTile <SettingTile
title="Encrypted direct messages" title="Encrypted direct messages"
options={( options={
<Button onClick={(evt) => onSelect(evt, ENC_DM)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, ENC_DM)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[ENC_DM]]} {typeToLabel[rulesToType[ENC_DM]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all encrypted direct message.</Text>} content={
<Text variant="b3">
Default notification settings for all encrypted direct message.
</Text>
}
/> />
<SettingTile <SettingTile
title="Rooms messages" title="Rooms messages"
options={( options={
<Button onClick={(evt) => onSelect(evt, ROOM)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, ROOM)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[ROOM]]} {typeToLabel[rulesToType[ROOM]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all room message.</Text>} content={
<Text variant="b3">
Default notification settings for all room message.
</Text>
}
/> />
<SettingTile <SettingTile
title="Encrypted rooms messages" title="Encrypted rooms messages"
options={( options={
<Button onClick={(evt) => onSelect(evt, ENC_ROOM)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, ENC_ROOM)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[ENC_ROOM]]} {typeToLabel[rulesToType[ENC_ROOM]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all encrypted room message.</Text>} content={
<Text variant="b3">
Default notification settings for all encrypted room message.
</Text>
}
/> />
</div> </div>
); );

View file

@ -1,31 +1,31 @@
import React from 'react'; import React from "react";
import './IgnoreUserList.scss'; import "./IgnoreUserList.scss";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import * as roomActions from '../../../client/action/room'; import * as roomActions from "../../../client/action/room";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Chip from '../../atoms/chip/Chip'; import Chip from "../../atoms/chip/Chip";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import { MenuHeader } from '../../atoms/context-menu/ContextMenu'; import { MenuHeader } from "../../atoms/context-menu/ContextMenu";
import SettingTile from '../setting-tile/SettingTile'; import SettingTile from "../setting-tile/SettingTile";
import CrossIC from '../../../../public/res/ic/outlined/cross.svg'; import CrossIC from "../../../../public/res/ic/outlined/cross.svg";
import { useAccountData } from '../../hooks/useAccountData'; import { useAccountData } from "../../hooks/useAccountData";
function IgnoreUserList() { function IgnoreUserList() {
useAccountData('m.ignored_user_list'); useAccountData("m.ignored_user_list");
const ignoredUsers = initMatrix.matrixClient.getIgnoredUsers(); const ignoredUsers = initMatrix.matrixClient.getIgnoredUsers();
const handleSubmit = (evt) => { const handleSubmit = (evt) => {
evt.preventDefault(); evt.preventDefault();
const { ignoreInput } = evt.target.elements; const { ignoreInput } = evt.target.elements;
const value = ignoreInput.value.trim(); const value = ignoreInput.value.trim();
const userIds = value.split(' ').filter((v) => v.match(/^@\S+:\S+$/)); const userIds = value.split(" ").filter((v) => v.match(/^@\S+:\S+$/));
if (userIds.length === 0) return; if (userIds.length === 0) return;
ignoreInput.value = ''; ignoreInput.value = "";
roomActions.ignore(userIds); roomActions.ignore(userIds);
}; };
@ -34,12 +34,17 @@ function IgnoreUserList() {
<MenuHeader>Ignored users</MenuHeader> <MenuHeader>Ignored users</MenuHeader>
<SettingTile <SettingTile
title="Ignore user" title="Ignore user"
content={( content={
<div className="ignore-user-list__users"> <div className="ignore-user-list__users">
<Text variant="b3">Ignore userId if you do not want to receive their messages or invites.</Text> <Text variant="b3">
Ignore userId if you do not want to receive their messages or
invites.
</Text>
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<Input name="ignoreInput" required /> <Input name="ignoreInput" required />
<Button variant="primary" type="submit">Ignore</Button> <Button variant="primary" type="submit">
Ignore
</Button>
</form> </form>
{ignoredUsers.length > 0 && ( {ignoredUsers.length > 0 && (
<div> <div>
@ -55,7 +60,7 @@ function IgnoreUserList() {
</div> </div>
)} )}
</div> </div>
)} }
/> />
</div> </div>
); );

View file

@ -1,35 +1,38 @@
import React from 'react'; import React from "react";
import './KeywordNotification.scss'; import "./KeywordNotification.scss";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import { openReusableContextMenu } from '../../../client/action/navigation'; import { openReusableContextMenu } from "../../../client/action/navigation";
import { getEventCords } from '../../../util/common'; import { getEventCords } from "../../../util/common";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Chip from '../../atoms/chip/Chip'; import Chip from "../../atoms/chip/Chip";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import { MenuHeader } from '../../atoms/context-menu/ContextMenu'; import { MenuHeader } from "../../atoms/context-menu/ContextMenu";
import SettingTile from '../setting-tile/SettingTile'; import SettingTile from "../setting-tile/SettingTile";
import NotificationSelector from './NotificationSelector'; import NotificationSelector from "./NotificationSelector";
import ChevronBottomIC from '../../../../public/res/ic/outlined/chevron-bottom.svg'; import ChevronBottomIC from "../../../../public/res/ic/outlined/chevron-bottom.svg";
import CrossIC from '../../../../public/res/ic/outlined/cross.svg'; import CrossIC from "../../../../public/res/ic/outlined/cross.svg";
import { useAccountData } from '../../hooks/useAccountData'; import { useAccountData } from "../../hooks/useAccountData";
import { import {
notifType, typeToLabel, getActionType, getTypeActions, notifType,
} from './GlobalNotification'; typeToLabel,
getActionType,
getTypeActions,
} from "./GlobalNotification";
const DISPLAY_NAME = '.m.rule.contains_display_name'; const DISPLAY_NAME = ".m.rule.contains_display_name";
const ROOM_PING = '.m.rule.roomnotif'; const ROOM_PING = ".m.rule.roomnotif";
const USERNAME = '.m.rule.contains_user_name'; const USERNAME = ".m.rule.contains_user_name";
const KEYWORD = 'keyword'; const KEYWORD = "keyword";
function useKeywordNotif() { function useKeywordNotif() {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const pushRules = useAccountData('m.push_rules')?.getContent(); const pushRules = useAccountData("m.push_rules")?.getContent();
const override = pushRules?.global?.override ?? []; const override = pushRules?.global?.override ?? [];
const content = pushRules?.global?.content ?? []; const content = pushRules?.global?.content ?? [];
@ -60,12 +63,12 @@ function useKeywordNotif() {
or.push(orRule); or.push(orRule);
} }
if (rule === DISPLAY_NAME) { if (rule === DISPLAY_NAME) {
orRule.conditions = [{ kind: 'contains_display_name' }]; orRule.conditions = [{ kind: "contains_display_name" }];
orRule.actions = getTypeActions(type, true); orRule.actions = getTypeActions(type, true);
} else { } else {
orRule.conditions = [ orRule.conditions = [
{ kind: 'event_match', key: 'content.body', pattern: '@room' }, { kind: "event_match", key: "content.body", pattern: "@room" },
{ kind: 'sender_notification_permission', key: 'room' }, { kind: "sender_notification_permission", key: "room" },
]; ];
orRule.actions = getTypeActions(type, true); orRule.actions = getTypeActions(type, true);
} }
@ -92,7 +95,7 @@ function useKeywordNotif() {
}); });
} }
mx.setAccountData('m.push_rules', evtContent); mx.setAccountData("m.push_rules", evtContent);
}; };
const addKeyword = (keyword) => { const addKeyword = (keyword) => {
@ -104,11 +107,13 @@ function useKeywordNotif() {
default: false, default: false,
actions: getTypeActions(rulesToType[KEYWORD] ?? notifType.NOISY, true), actions: getTypeActions(rulesToType[KEYWORD] ?? notifType.NOISY, true),
}); });
mx.setAccountData('m.push_rules', pushRules); mx.setAccountData("m.push_rules", pushRules);
}; };
const removeKeyword = (rule) => { const removeKeyword = (rule) => {
pushRules.global.content = content.filter((r) => r.rule_id !== rule.rule_id); pushRules.global.content = content.filter(
mx.setAccountData('m.push_rules', pushRules); (r) => r.rule_id !== rule.rule_id
);
mx.setAccountData("m.push_rules", pushRules);
}; };
const dsRule = override.find((rule) => rule.rule_id === DISPLAY_NAME); const dsRule = override.find((rule) => rule.rule_id === DISPLAY_NAME);
@ -131,20 +136,16 @@ function useKeywordNotif() {
} }
function GlobalNotification() { function GlobalNotification() {
const { const { rulesToType, pushRules, setRule, addKeyword, removeKeyword } =
rulesToType, useKeywordNotif();
pushRules,
setRule,
addKeyword,
removeKeyword,
} = useKeywordNotif();
const keywordRules = pushRules?.global?.content.filter((r) => r.rule_id !== USERNAME) ?? []; const keywordRules =
pushRules?.global?.content.filter((r) => r.rule_id !== USERNAME) ?? [];
const onSelect = (evt, rule) => { const onSelect = (evt, rule) => {
openReusableContextMenu( openReusableContextMenu(
'bottom', "bottom",
getEventCords(evt, '.btn-surface'), getEventCords(evt, ".btn-surface"),
(requestClose) => ( (requestClose) => (
<NotificationSelector <NotificationSelector
value={rulesToType[rule]} value={rulesToType[rule]}
@ -153,7 +154,7 @@ function GlobalNotification() {
requestClose(); requestClose();
}} }}
/> />
), )
); );
}; };
@ -161,9 +162,9 @@ function GlobalNotification() {
evt.preventDefault(); evt.preventDefault();
const { keywordInput } = evt.target.elements; const { keywordInput } = evt.target.elements;
const value = keywordInput.value.trim(); const value = keywordInput.value.trim();
if (value === '') return; if (value === "") return;
addKeyword(value); addKeyword(value);
keywordInput.value = ''; keywordInput.value = "";
}; };
return ( return (
@ -171,50 +172,84 @@ function GlobalNotification() {
<MenuHeader>Mentions & keywords</MenuHeader> <MenuHeader>Mentions & keywords</MenuHeader>
<SettingTile <SettingTile
title="Message containing my display name" title="Message containing my display name"
options={( options={
<Button onClick={(evt) => onSelect(evt, DISPLAY_NAME)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, DISPLAY_NAME)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[DISPLAY_NAME]]} {typeToLabel[rulesToType[DISPLAY_NAME]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all message containing your display name.</Text>} content={
<Text variant="b3">
Default notification settings for all message containing your
display name.
</Text>
}
/> />
<SettingTile <SettingTile
title="Message containing my username" title="Message containing my username"
options={( options={
<Button onClick={(evt) => onSelect(evt, USERNAME)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, USERNAME)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[USERNAME]]} {typeToLabel[rulesToType[USERNAME]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all message containing your username.</Text>} content={
<Text variant="b3">
Default notification settings for all message containing your
username.
</Text>
}
/> />
<SettingTile <SettingTile
title="Message containing @room" title="Message containing @room"
options={( options={
<Button onClick={(evt) => onSelect(evt, ROOM_PING)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, ROOM_PING)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[ROOM_PING]]} {typeToLabel[rulesToType[ROOM_PING]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all messages containing @room.</Text>} content={
<Text variant="b3">
Default notification settings for all messages containing @room.
</Text>
}
/> />
{rulesToType[KEYWORD] && ( {rulesToType[KEYWORD] && (
<SettingTile <SettingTile
title="Message containing keywords" title="Message containing keywords"
options={( options={
<Button onClick={(evt) => onSelect(evt, KEYWORD)} iconSrc={ChevronBottomIC}> <Button
onClick={(evt) => onSelect(evt, KEYWORD)}
iconSrc={ChevronBottomIC}
>
{typeToLabel[rulesToType[KEYWORD]]} {typeToLabel[rulesToType[KEYWORD]]}
</Button> </Button>
)} }
content={<Text variant="b3">Default notification settings for all message containing keywords.</Text>} content={
<Text variant="b3">
Default notification settings for all message containing keywords.
</Text>
}
/> />
)} )}
<SettingTile <SettingTile
title="Keywords" title="Keywords"
content={( content={
<div className="keyword-notification__keyword"> <div className="keyword-notification__keyword">
<Text variant="b3">Get notification when a message contains keyword.</Text> <Text variant="b3">
Get notification when a message contains keyword.
</Text>
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<Input name="keywordInput" required /> <Input name="keywordInput" required />
<Button variant="primary" type="submit">Add</Button> <Button variant="primary" type="submit">
Add
</Button>
</form> </form>
{keywordRules.length > 0 && ( {keywordRules.length > 0 && (
<div> <div>
@ -230,7 +265,7 @@ function GlobalNotification() {
</div> </div>
)} )}
</div> </div>
)} }
/> />
</div> </div>
); );

View file

@ -1,25 +1,41 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import { MenuHeader, MenuItem } from '../../atoms/context-menu/ContextMenu'; import { MenuHeader, MenuItem } from "../../atoms/context-menu/ContextMenu";
import CheckIC from '../../../../public/res/ic/outlined/check.svg'; import CheckIC from "../../../../public/res/ic/outlined/check.svg";
function NotificationSelector({ function NotificationSelector({ value, onSelect }) {
value, onSelect,
}) {
return ( return (
<div> <div>
<MenuHeader>Notification</MenuHeader> <MenuHeader>Notification</MenuHeader>
<MenuItem iconSrc={value === 'off' ? CheckIC : null} variant={value === 'off' ? 'positive' : 'surface'} onClick={() => onSelect('off')}>Off</MenuItem> <MenuItem
<MenuItem iconSrc={value === 'on' ? CheckIC : null} variant={value === 'on' ? 'positive' : 'surface'} onClick={() => onSelect('on')}>On</MenuItem> iconSrc={value === "off" ? CheckIC : null}
<MenuItem iconSrc={value === 'noisy' ? CheckIC : null} variant={value === 'noisy' ? 'positive' : 'surface'} onClick={() => onSelect('noisy')}>Noisy</MenuItem> variant={value === "off" ? "positive" : "surface"}
onClick={() => onSelect("off")}
>
Off
</MenuItem>
<MenuItem
iconSrc={value === "on" ? CheckIC : null}
variant={value === "on" ? "positive" : "surface"}
onClick={() => onSelect("on")}
>
On
</MenuItem>
<MenuItem
iconSrc={value === "noisy" ? CheckIC : null}
variant={value === "noisy" ? "positive" : "surface"}
onClick={() => onSelect("noisy")}
>
Noisy
</MenuItem>
</div> </div>
); );
} }
NotificationSelector.propTypes = { NotificationSelector.propTypes = {
value: PropTypes.oneOf(['off', 'on', 'noisy']).isRequired, value: PropTypes.oneOf(["off", "on", "noisy"]).isRequired,
onSelect: PropTypes.func.isRequired, onSelect: PropTypes.func.isRequired,
}; };

View file

@ -1,18 +1,16 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ImageLightbox.scss'; import "./ImageLightbox.scss";
import FileSaver from 'file-saver'; import FileSaver from "file-saver";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import RawModal from '../../atoms/modal/RawModal'; import RawModal from "../../atoms/modal/RawModal";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import DownloadSVG from '../../../../public/res/ic/outlined/download.svg'; import DownloadSVG from "../../../../public/res/ic/outlined/download.svg";
import ExternalSVG from '../../../../public/res/ic/outlined/external.svg'; import ExternalSVG from "../../../../public/res/ic/outlined/external.svg";
function ImageLightbox({ function ImageLightbox({ url, alt, isOpen, onRequestClose }) {
url, alt, isOpen, onRequestClose,
}) {
const handleDownload = () => { const handleDownload = () => {
FileSaver.saveAs(url, alt); FileSaver.saveAs(url, alt);
}; };
@ -26,8 +24,14 @@ function ImageLightbox({
size="large" size="large"
> >
<div className="image-lightbox__header"> <div className="image-lightbox__header">
<Text variant="b2" weight="medium">{alt}</Text> <Text variant="b2" weight="medium">
<IconButton onClick={() => window.open(url)} size="small" src={ExternalSVG} /> {alt}
</Text>
<IconButton
onClick={() => window.open(url)}
size="small"
src={ExternalSVG}
/>
<IconButton onClick={handleDownload} size="small" src={DownloadSVG} /> <IconButton onClick={handleDownload} size="small" src={DownloadSVG} />
</div> </div>
<div className="image-lightbox__content"> <div className="image-lightbox__content">

View file

@ -1,5 +1,5 @@
@use '../../partials/flex'; @use "../../partials/flex";
@use '../../partials/text'; @use "../../partials/text";
.image-lightbox__modal { .image-lightbox__modal {
box-shadow: none; box-shadow: none;
@ -21,7 +21,6 @@
background-color: var(--bg-overlay-low); background-color: var(--bg-overlay-low);
} }
.image-lightbox__header > *, .image-lightbox__header > *,
.image-lightbox__content > * { .image-lightbox__content > * {
pointer-events: all; pointer-events: all;

View file

@ -1,37 +1,38 @@
import React, { import React, { useState, useMemo, useReducer, useEffect } from "react";
useState, useMemo, useReducer, useEffect, import PropTypes from "prop-types";
} from 'react'; import "./ImagePack.scss";
import PropTypes from 'prop-types';
import './ImagePack.scss';
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import { openReusableDialog } from '../../../client/action/navigation'; import { openReusableDialog } from "../../../client/action/navigation";
import { suffixRename } from '../../../util/common'; import { suffixRename } from "../../../util/common";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import Checkbox from '../../atoms/button/Checkbox'; import Checkbox from "../../atoms/button/Checkbox";
import { MenuHeader } from '../../atoms/context-menu/ContextMenu'; import { MenuHeader } from "../../atoms/context-menu/ContextMenu";
import { ImagePack as ImagePackBuilder } from '../../organisms/emoji-board/custom-emoji'; import { ImagePack as ImagePackBuilder } from "../../organisms/emoji-board/custom-emoji";
import { confirmDialog } from '../confirm-dialog/ConfirmDialog'; import { confirmDialog } from "../confirm-dialog/ConfirmDialog";
import ImagePackProfile from './ImagePackProfile'; import ImagePackProfile from "./ImagePackProfile";
import ImagePackItem from './ImagePackItem'; import ImagePackItem from "./ImagePackItem";
import ImagePackUpload from './ImagePackUpload'; import ImagePackUpload from "./ImagePackUpload";
const renameImagePackItem = (shortcode) => new Promise((resolve) => { const renameImagePackItem = (shortcode) =>
new Promise((resolve) => {
let isCompleted = false; let isCompleted = false;
openReusableDialog( openReusableDialog(
<Text variant="s1" weight="medium">Rename</Text>, <Text variant="s1" weight="medium">
Rename
</Text>,
(requestClose) => ( (requestClose) => (
<div style={{ padding: 'var(--sp-normal)' }}> <div style={{ padding: "var(--sp-normal)" }}>
<form <form
onSubmit={(e) => { onSubmit={(e) => {
e.preventDefault(); e.preventDefault();
const sc = e.target.shortcode.value; const sc = e.target.shortcode.value;
if (sc.trim() === '') return; if (sc.trim() === "") return;
isCompleted = true; isCompleted = true;
resolve(sc.trim()); resolve(sc.trim());
requestClose(); requestClose();
@ -44,32 +45,36 @@ const renameImagePackItem = (shortcode) => new Promise((resolve) => {
autoFocus autoFocus
required required
/> />
<div style={{ height: 'var(--sp-normal)' }} /> <div style={{ height: "var(--sp-normal)" }} />
<Button variant="primary" type="submit">Rename</Button> <Button variant="primary" type="submit">
Rename
</Button>
</form> </form>
</div> </div>
), ),
() => { () => {
if (!isCompleted) resolve(null); if (!isCompleted) resolve(null);
}, }
); );
}); });
function getUsage(usage) { function getUsage(usage) {
if (usage.includes('emoticon') && usage.includes('sticker')) return 'both'; if (usage.includes("emoticon") && usage.includes("sticker")) return "both";
if (usage.includes('emoticon')) return 'emoticon'; if (usage.includes("emoticon")) return "emoticon";
if (usage.includes('sticker')) return 'sticker'; if (usage.includes("sticker")) return "sticker";
return 'both'; return "both";
} }
function isGlobalPack(roomId, stateKey) { function isGlobalPack(roomId, stateKey) {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const globalContent = mx.getAccountData('im.ponies.emote_rooms')?.getContent(); const globalContent = mx
if (typeof globalContent !== 'object') return false; .getAccountData("im.ponies.emote_rooms")
?.getContent();
if (typeof globalContent !== "object") return false;
const { rooms } = globalContent; const { rooms } = globalContent;
if (typeof rooms !== 'object') return false; if (typeof rooms !== "object") return false;
return rooms[roomId]?.[stateKey] !== undefined; return rooms[roomId]?.[stateKey] !== undefined;
} }
@ -78,13 +83,17 @@ function useRoomImagePack(roomId, stateKey) {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const room = mx.getRoom(roomId); const room = mx.getRoom(roomId);
const packEvent = room.currentState.getStateEvents('im.ponies.room_emotes', stateKey); const packEvent = room.currentState.getStateEvents(
const pack = useMemo(() => ( "im.ponies.room_emotes",
ImagePackBuilder.parsePack(packEvent.getId(), packEvent.getContent()) stateKey
), [room, stateKey]); );
const pack = useMemo(
() => ImagePackBuilder.parsePack(packEvent.getId(), packEvent.getContent()),
[room, stateKey]
);
const sendPackContent = (content) => { const sendPackContent = (content) => {
mx.sendStateEvent(roomId, 'im.ponies.room_emotes', content, stateKey); mx.sendStateEvent(roomId, "im.ponies.room_emotes", content, stateKey);
}; };
return { return {
@ -95,16 +104,21 @@ function useRoomImagePack(roomId, stateKey) {
function useUserImagePack() { function useUserImagePack() {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const packEvent = mx.getAccountData('im.ponies.user_emotes'); const packEvent = mx.getAccountData("im.ponies.user_emotes");
const pack = useMemo(() => ( const pack = useMemo(
ImagePackBuilder.parsePack(mx.getUserId(), packEvent?.getContent() ?? { () =>
pack: { display_name: 'Personal' }, ImagePackBuilder.parsePack(
mx.getUserId(),
packEvent?.getContent() ?? {
pack: { display_name: "Personal" },
images: {}, images: {},
}) }
), []); ),
[]
);
const sendPackContent = (content) => { const sendPackContent = (content) => {
mx.setAccountData('im.ponies.user_emotes', content); mx.setAccountData("im.ponies.user_emotes", content);
}; };
return { return {
@ -117,12 +131,11 @@ function useImagePackHandles(pack, sendPackContent) {
const [, forceUpdate] = useReducer((count) => count + 1, 0); const [, forceUpdate] = useReducer((count) => count + 1, 0);
const getNewKey = (key) => { const getNewKey = (key) => {
if (typeof key !== 'string') return undefined; if (typeof key !== "string") return undefined;
let newKey = key?.replace(/\s/g, '_'); let newKey = key?.replace(/\s/g, "_");
if (pack.getImages().get(newKey)) { if (pack.getImages().get(newKey)) {
newKey = suffixRename( newKey = suffixRename(newKey, (suffixedKey) =>
newKey, pack.getImages().get(suffixedKey)
(suffixedKey) => pack.getImages().get(suffixedKey),
); );
} }
return newKey; return newKey;
@ -141,10 +154,12 @@ function useImagePackHandles(pack, sendPackContent) {
}; };
const handleUsageChange = (newUsage) => { const handleUsageChange = (newUsage) => {
const usage = []; const usage = [];
if (newUsage === 'emoticon' || newUsage === 'both') usage.push('emoticon'); if (newUsage === "emoticon" || newUsage === "both") usage.push("emoticon");
if (newUsage === 'sticker' || newUsage === 'both') usage.push('sticker'); if (newUsage === "sticker" || newUsage === "both") usage.push("sticker");
pack.setUsage(usage); pack.setUsage(usage);
pack.getImages().forEach((img) => pack.setImageUsage(img.shortcode, undefined)); pack
.getImages()
.forEach((img) => pack.setImageUsage(img.shortcode, undefined));
sendPackContent(pack.getContent()); sendPackContent(pack.getContent());
forceUpdate(); forceUpdate();
@ -161,10 +176,10 @@ function useImagePackHandles(pack, sendPackContent) {
}; };
const handleDeleteItem = async (key) => { const handleDeleteItem = async (key) => {
const isConfirmed = await confirmDialog( const isConfirmed = await confirmDialog(
'Delete', "Delete",
`Are you sure that you want to delete "${key}"?`, `Are you sure that you want to delete "${key}"?`,
'Delete', "Delete",
'danger', "danger"
); );
if (!isConfirmed) return; if (!isConfirmed) return;
pack.removeImage(key); pack.removeImage(key);
@ -174,8 +189,8 @@ function useImagePackHandles(pack, sendPackContent) {
}; };
const handleUsageItem = (key, newUsage) => { const handleUsageItem = (key, newUsage) => {
const usage = []; const usage = [];
if (newUsage === 'emoticon' || newUsage === 'both') usage.push('emoticon'); if (newUsage === "emoticon" || newUsage === "both") usage.push("emoticon");
if (newUsage === 'sticker' || newUsage === 'both') usage.push('sticker'); if (newUsage === "sticker" || newUsage === "both") usage.push("sticker");
pack.setImageUsage(key, usage); pack.setImageUsage(key, usage);
sendPackContent(pack.getContent()); sendPackContent(pack.getContent());
@ -205,21 +220,23 @@ function useImagePackHandles(pack, sendPackContent) {
} }
function addGlobalImagePack(mx, roomId, stateKey) { function addGlobalImagePack(mx, roomId, stateKey) {
const content = mx.getAccountData('im.ponies.emote_rooms')?.getContent() ?? {}; const content =
mx.getAccountData("im.ponies.emote_rooms")?.getContent() ?? {};
if (!content.rooms) content.rooms = {}; if (!content.rooms) content.rooms = {};
if (!content.rooms[roomId]) content.rooms[roomId] = {}; if (!content.rooms[roomId]) content.rooms[roomId] = {};
content.rooms[roomId][stateKey] = {}; content.rooms[roomId][stateKey] = {};
return mx.setAccountData('im.ponies.emote_rooms', content); return mx.setAccountData("im.ponies.emote_rooms", content);
} }
function removeGlobalImagePack(mx, roomId, stateKey) { function removeGlobalImagePack(mx, roomId, stateKey) {
const content = mx.getAccountData('im.ponies.emote_rooms')?.getContent() ?? {}; const content =
mx.getAccountData("im.ponies.emote_rooms")?.getContent() ?? {};
if (!content.rooms) return Promise.resolve(); if (!content.rooms) return Promise.resolve();
if (!content.rooms[roomId]) return Promise.resolve(); if (!content.rooms[roomId]) return Promise.resolve();
delete content.rooms[roomId][stateKey]; delete content.rooms[roomId][stateKey];
if (Object.keys(content.rooms[roomId]).length === 0) { if (Object.keys(content.rooms[roomId]).length === 0) {
delete content.rooms[roomId]; delete content.rooms[roomId];
} }
return mx.setAccountData('im.ponies.emote_rooms', content); return mx.setAccountData("im.ponies.emote_rooms", content);
} }
function ImagePack({ roomId, stateKey, handlePackDelete }) { function ImagePack({ roomId, stateKey, handlePackDelete }) {
@ -247,14 +264,17 @@ function ImagePack({ roomId, stateKey, handlePackDelete }) {
}; };
const myPowerlevel = room.getMember(mx.getUserId())?.powerLevel || 0; const myPowerlevel = room.getMember(mx.getUserId())?.powerLevel || 0;
const canChange = room.currentState.hasSufficientPowerLevelFor('state_default', myPowerlevel); const canChange = room.currentState.hasSufficientPowerLevelFor(
"state_default",
myPowerlevel
);
const handleDeletePack = async () => { const handleDeletePack = async () => {
const isConfirmed = await confirmDialog( const isConfirmed = await confirmDialog(
'Delete Pack', "Delete Pack",
`Are you sure that you want to delete "${pack.displayName}"?`, `Are you sure that you want to delete "${pack.displayName}"?`,
'Delete', "Delete",
'danger', "danger"
); );
if (!isConfirmed) return; if (!isConfirmed) return;
handlePackDelete(stateKey); handlePackDelete(stateKey);
@ -265,17 +285,19 @@ function ImagePack({ roomId, stateKey, handlePackDelete }) {
return ( return (
<div className="image-pack"> <div className="image-pack">
<ImagePackProfile <ImagePackProfile
avatarUrl={pack.avatarUrl ? mx.mxcUrlToHttp(pack.avatarUrl, 42, 42, 'crop') : null} avatarUrl={
displayName={pack.displayName ?? 'Unknown'} pack.avatarUrl
? mx.mxcUrlToHttp(pack.avatarUrl, 42, 42, "crop")
: null
}
displayName={pack.displayName ?? "Unknown"}
attribution={pack.attribution} attribution={pack.attribution}
usage={getUsage(pack.usage)} usage={getUsage(pack.usage)}
onUsageChange={canChange ? handleUsageChange : null} onUsageChange={canChange ? handleUsageChange : null}
onAvatarChange={canChange ? handleAvatarChange : null} onAvatarChange={canChange ? handleAvatarChange : null}
onEditProfile={canChange ? handleEditProfile : null} onEditProfile={canChange ? handleEditProfile : null}
/> />
{ canChange && ( {canChange && <ImagePackUpload onUpload={handleAddItem} />}
<ImagePackUpload onUpload={handleAddItem} />
)}
{images.length === 0 ? null : ( {images.length === 0 ? null : (
<div> <div>
<div className="image-pack__header"> <div className="image-pack__header">
@ -300,21 +322,27 @@ function ImagePack({ roomId, stateKey, handlePackDelete }) {
<div className="image-pack__footer"> <div className="image-pack__footer">
{pack.images.size > 2 && ( {pack.images.size > 2 && (
<Button onClick={() => setViewMore(!viewMore)}> <Button onClick={() => setViewMore(!viewMore)}>
{ {viewMore ? "View less" : `View ${pack.images.size - 2} more`}
viewMore </Button>
? 'View less' )}
: `View ${pack.images.size - 2} more` {handlePackDelete && (
} <Button variant="danger" onClick={handleDeletePack}>
Delete Pack
</Button> </Button>
)} )}
{ handlePackDelete && <Button variant="danger" onClick={handleDeletePack}>Delete Pack</Button>}
</div> </div>
)} )}
<div className="image-pack__global"> <div className="image-pack__global">
<Checkbox variant="positive" onToggle={handleGlobalChange} isActive={isGlobal} /> <Checkbox
variant="positive"
onToggle={handleGlobalChange}
isActive={isGlobal}
/>
<div> <div>
<Text variant="b2">Use globally</Text> <Text variant="b2">Use globally</Text>
<Text variant="b3">Add this pack to your account to use in all rooms.</Text> <Text variant="b3">
Add this pack to your account to use in all rooms.
</Text>
</div> </div>
</div> </div>
</div> </div>
@ -351,8 +379,12 @@ function ImagePackUser() {
return ( return (
<div className="image-pack"> <div className="image-pack">
<ImagePackProfile <ImagePackProfile
avatarUrl={pack.avatarUrl ? mx.mxcUrlToHttp(pack.avatarUrl, 42, 42, 'crop') : null} avatarUrl={
displayName={pack.displayName ?? 'Personal'} pack.avatarUrl
? mx.mxcUrlToHttp(pack.avatarUrl, 42, 42, "crop")
: null
}
displayName={pack.displayName ?? "Personal"}
attribution={pack.attribution} attribution={pack.attribution}
usage={getUsage(pack.usage)} usage={getUsage(pack.usage)}
onUsageChange={handleUsageChange} onUsageChange={handleUsageChange}
@ -380,14 +412,10 @@ function ImagePackUser() {
))} ))}
</div> </div>
)} )}
{(pack.images.size > 2) && ( {pack.images.size > 2 && (
<div className="image-pack__footer"> <div className="image-pack__footer">
<Button onClick={() => setViewMore(!viewMore)}> <Button onClick={() => setViewMore(!viewMore)}>
{ {viewMore ? "View less" : `View ${pack.images.size - 2} more`}
viewMore
? 'View less'
: `View ${pack.images.size - 2} more`
}
</Button> </Button>
</div> </div>
)} )}
@ -400,11 +428,13 @@ function useGlobalImagePack() {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const roomIdToStateKeys = new Map(); const roomIdToStateKeys = new Map();
const globalContent = mx.getAccountData('im.ponies.emote_rooms')?.getContent() ?? { rooms: {} }; const globalContent = mx
.getAccountData("im.ponies.emote_rooms")
?.getContent() ?? { rooms: {} };
const { rooms } = globalContent; const { rooms } = globalContent;
Object.keys(rooms).forEach((roomId) => { Object.keys(rooms).forEach((roomId) => {
if (typeof rooms[roomId] !== 'object') return; if (typeof rooms[roomId] !== "object") return;
const room = mx.getRoom(roomId); const room = mx.getRoom(roomId);
const stateKeys = Object.keys(rooms[roomId]); const stateKeys = Object.keys(rooms[roomId]);
if (!room || stateKeys.length === 0) return; if (!room || stateKeys.length === 0) return;
@ -413,11 +443,11 @@ function useGlobalImagePack() {
useEffect(() => { useEffect(() => {
const handleEvent = (event) => { const handleEvent = (event) => {
if (event.getType() === 'im.ponies.emote_rooms') forceUpdate(); if (event.getType() === "im.ponies.emote_rooms") forceUpdate();
}; };
mx.addListener('accountData', handleEvent); mx.addListener("accountData", handleEvent);
return () => { return () => {
mx.removeListener('accountData', handleEvent); mx.removeListener("accountData", handleEvent);
}; };
}, []); }, []);
@ -436,29 +466,39 @@ function ImagePackGlobal() {
<div className="image-pack-global"> <div className="image-pack-global">
<MenuHeader>Global packs</MenuHeader> <MenuHeader>Global packs</MenuHeader>
<div> <div>
{ {roomIdToStateKeys.size > 0 ? (
roomIdToStateKeys.size > 0 [...roomIdToStateKeys].map(([roomId, stateKeys]) => {
? [...roomIdToStateKeys].map(([roomId, stateKeys]) => {
const room = mx.getRoom(roomId); const room = mx.getRoom(roomId);
return ( return stateKeys.map((stateKey) => {
stateKeys.map((stateKey) => { const data = room.currentState.getStateEvents(
const data = room.currentState.getStateEvents('im.ponies.room_emotes', stateKey); "im.ponies.room_emotes",
const pack = ImagePackBuilder.parsePack(data?.getId(), data?.getContent()); stateKey
);
const pack = ImagePackBuilder.parsePack(
data?.getId(),
data?.getContent()
);
if (!pack) return null; if (!pack) return null;
return ( return (
<div className="image-pack__global" key={pack.id}> <div className="image-pack__global" key={pack.id}>
<Checkbox variant="positive" onToggle={() => handleChange(roomId, stateKey)} isActive /> <Checkbox
variant="positive"
onToggle={() => handleChange(roomId, stateKey)}
isActive
/>
<div> <div>
<Text variant="b2">{pack.displayName ?? 'Unknown'}</Text> <Text variant="b2">{pack.displayName ?? "Unknown"}</Text>
<Text variant="b3">{room.name}</Text> <Text variant="b3">{room.name}</Text>
</div> </div>
</div> </div>
); );
});
}) })
); ) : (
}) <div className="image-pack-global__empty">
: <div className="image-pack-global__empty"><Text>No global packs</Text></div> <Text>No global packs</Text>
} </div>
)}
</div> </div>
</div> </div>
); );

View file

@ -1,4 +1,4 @@
@use '../../partials/flex'; @use "../../partials/flex";
.image-pack { .image-pack {
&-item { &-item {

View file

@ -1,28 +1,33 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ImagePackItem.scss'; import "./ImagePackItem.scss";
import { openReusableContextMenu } from '../../../client/action/navigation'; import { openReusableContextMenu } from "../../../client/action/navigation";
import { getEventCords } from '../../../util/common'; import { getEventCords } from "../../../util/common";
import Avatar from '../../atoms/avatar/Avatar'; import Avatar from "../../atoms/avatar/Avatar";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import RawIcon from '../../atoms/system-icons/RawIcon'; import RawIcon from "../../atoms/system-icons/RawIcon";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import ImagePackUsageSelector from './ImagePackUsageSelector'; import ImagePackUsageSelector from "./ImagePackUsageSelector";
import ChevronBottomIC from '../../../../public/res/ic/outlined/chevron-bottom.svg'; import ChevronBottomIC from "../../../../public/res/ic/outlined/chevron-bottom.svg";
import PencilIC from '../../../../public/res/ic/outlined/pencil.svg'; import PencilIC from "../../../../public/res/ic/outlined/pencil.svg";
import BinIC from '../../../../public/res/ic/outlined/bin.svg'; import BinIC from "../../../../public/res/ic/outlined/bin.svg";
function ImagePackItem({ function ImagePackItem({
url, shortcode, usage, onUsageChange, onDelete, onRename, url,
shortcode,
usage,
onUsageChange,
onDelete,
onRename,
}) { }) {
const handleUsageSelect = (event) => { const handleUsageSelect = (event) => {
openReusableContextMenu( openReusableContextMenu(
'bottom', "bottom",
getEventCords(event, '.btn-surface'), getEventCords(event, ".btn-surface"),
(closeMenu) => ( (closeMenu) => (
<ImagePackUsageSelector <ImagePackUsageSelector
usage={usage} usage={usage}
@ -31,27 +36,48 @@ function ImagePackItem({
closeMenu(); closeMenu();
}} }}
/> />
), )
); );
}; };
return ( return (
<div className="image-pack-item"> <div className="image-pack-item">
<Avatar imageSrc={url} size="extra-small" text={shortcode} bgColor="black" /> <Avatar
imageSrc={url}
size="extra-small"
text={shortcode}
bgColor="black"
/>
<div className="image-pack-item__content"> <div className="image-pack-item__content">
<Text>{shortcode}</Text> <Text>{shortcode}</Text>
</div> </div>
<div className="image-pack-item__usage"> <div className="image-pack-item__usage">
<div className="image-pack-item__btn"> <div className="image-pack-item__btn">
{onRename && <IconButton tooltip="Rename" size="extra-small" src={PencilIC} onClick={() => onRename(shortcode)} />} {onRename && (
{onDelete && <IconButton tooltip="Delete" size="extra-small" src={BinIC} onClick={() => onDelete(shortcode)} />} <IconButton
tooltip="Rename"
size="extra-small"
src={PencilIC}
onClick={() => onRename(shortcode)}
/>
)}
{onDelete && (
<IconButton
tooltip="Delete"
size="extra-small"
src={BinIC}
onClick={() => onDelete(shortcode)}
/>
)}
</div> </div>
<Button onClick={onUsageChange ? handleUsageSelect : undefined}> <Button onClick={onUsageChange ? handleUsageSelect : undefined}>
{onUsageChange && <RawIcon src={ChevronBottomIC} size="extra-small" />} {onUsageChange && (
<RawIcon src={ChevronBottomIC} size="extra-small" />
)}
<Text variant="b2"> <Text variant="b2">
{usage === 'emoticon' && 'Emoji'} {usage === "emoticon" && "Emoji"}
{usage === 'sticker' && 'Sticker'} {usage === "sticker" && "Sticker"}
{usage === 'both' && 'Both'} {usage === "both" && "Both"}
</Text> </Text>
</Button> </Button>
</div> </div>
@ -67,7 +93,7 @@ ImagePackItem.defaultProps = {
ImagePackItem.propTypes = { ImagePackItem.propTypes = {
url: PropTypes.string.isRequired, url: PropTypes.string.isRequired,
shortcode: PropTypes.string.isRequired, shortcode: PropTypes.string.isRequired,
usage: PropTypes.oneOf(['emoticon', 'sticker', 'both']).isRequired, usage: PropTypes.oneOf(["emoticon", "sticker", "both"]).isRequired,
onUsageChange: PropTypes.func, onUsageChange: PropTypes.func,
onDelete: PropTypes.func, onDelete: PropTypes.func,
onRename: PropTypes.func, onRename: PropTypes.func,

View file

@ -1,5 +1,5 @@
@use '../../partials/flex'; @use "../../partials/flex";
@use '../../partials/dir'; @use "../../partials/dir";
.image-pack-item { .image-pack-item {
margin: 0 var(--sp-normal); margin: 0 var(--sp-normal);

View file

@ -1,24 +1,29 @@
import React, { useState } from 'react'; import React, { useState } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ImagePackProfile.scss'; import "./ImagePackProfile.scss";
import { openReusableContextMenu } from '../../../client/action/navigation'; import { openReusableContextMenu } from "../../../client/action/navigation";
import { getEventCords } from '../../../util/common'; import { getEventCords } from "../../../util/common";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Avatar from '../../atoms/avatar/Avatar'; import Avatar from "../../atoms/avatar/Avatar";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import ImageUpload from '../image-upload/ImageUpload'; import ImageUpload from "../image-upload/ImageUpload";
import ImagePackUsageSelector from './ImagePackUsageSelector'; import ImagePackUsageSelector from "./ImagePackUsageSelector";
import ChevronBottomIC from '../../../../public/res/ic/outlined/chevron-bottom.svg'; import ChevronBottomIC from "../../../../public/res/ic/outlined/chevron-bottom.svg";
import PencilIC from '../../../../public/res/ic/outlined/pencil.svg'; import PencilIC from "../../../../public/res/ic/outlined/pencil.svg";
function ImagePackProfile({ function ImagePackProfile({
avatarUrl, displayName, attribution, usage, avatarUrl,
onUsageChange, onAvatarChange, onEditProfile, displayName,
attribution,
usage,
onUsageChange,
onAvatarChange,
onEditProfile,
}) { }) {
const [isEdit, setIsEdit] = useState(false); const [isEdit, setIsEdit] = useState(false);
@ -35,8 +40,8 @@ function ImagePackProfile({
const handleUsageSelect = (event) => { const handleUsageSelect = (event) => {
openReusableContextMenu( openReusableContextMenu(
'bottom', "bottom",
getEventCords(event, '.btn-surface'), getEventCords(event, ".btn-surface"),
(closeMenu) => ( (closeMenu) => (
<ImagePackUsageSelector <ImagePackUsageSelector
usage={usage} usage={usage}
@ -45,15 +50,13 @@ function ImagePackProfile({
closeMenu(); closeMenu();
}} }}
/> />
), )
); );
}; };
return ( return (
<div className="image-pack-profile"> <div className="image-pack-profile">
{ {onAvatarChange ? (
onAvatarChange
? (
<ImageUpload <ImageUpload
bgColor="#555" bgColor="#555"
text={displayName} text={displayName}
@ -62,18 +65,28 @@ function ImagePackProfile({
onUpload={onAvatarChange} onUpload={onAvatarChange}
onRequestRemove={() => onAvatarChange(undefined)} onRequestRemove={() => onAvatarChange(undefined)}
/> />
) ) : (
: <Avatar bgColor="#555" text={displayName} imageSrc={avatarUrl} size="normal" /> <Avatar
} bgColor="#555"
text={displayName}
imageSrc={avatarUrl}
size="normal"
/>
)}
<div className="image-pack-profile__content"> <div className="image-pack-profile__content">
{ {isEdit ? (
isEdit
? (
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<Input name="nameInput" label="Name" value={displayName} required /> <Input name="nameInput" label="Name" value={displayName} required />
<Input name="attributionInput" label="Attribution" value={attribution} resizable /> <Input
name="attributionInput"
label="Attribution"
value={attribution}
resizable
/>
<div> <div>
<Button variant="primary" type="submit">Save</Button> <Button variant="primary" type="submit">
Save
</Button>
<Button onClick={() => setIsEdit(false)}>Cancel</Button> <Button onClick={() => setIsEdit(false)}>Cancel</Button>
</div> </div>
</form> </form>
@ -81,12 +94,18 @@ function ImagePackProfile({
<> <>
<div> <div>
<Text>{displayName}</Text> <Text>{displayName}</Text>
{onEditProfile && <IconButton size="extra-small" onClick={() => setIsEdit(true)} src={PencilIC} tooltip="Edit" />} {onEditProfile && (
<IconButton
size="extra-small"
onClick={() => setIsEdit(true)}
src={PencilIC}
tooltip="Edit"
/>
)}
</div> </div>
{attribution && <Text variant="b3">{attribution}</Text>} {attribution && <Text variant="b3">{attribution}</Text>}
</> </>
) )}
}
</div> </div>
<div className="image-pack-profile__usage"> <div className="image-pack-profile__usage">
<Text variant="b3">Pack usage</Text> <Text variant="b3">Pack usage</Text>
@ -95,9 +114,9 @@ function ImagePackProfile({
iconSrc={onUsageChange ? ChevronBottomIC : null} iconSrc={onUsageChange ? ChevronBottomIC : null}
> >
<Text> <Text>
{usage === 'emoticon' && 'Emoji'} {usage === "emoticon" && "Emoji"}
{usage === 'sticker' && 'Sticker'} {usage === "sticker" && "Sticker"}
{usage === 'both' && 'Both'} {usage === "both" && "Both"}
</Text> </Text>
</Button> </Button>
</div> </div>
@ -116,7 +135,7 @@ ImagePackProfile.propTypes = {
avatarUrl: PropTypes.string, avatarUrl: PropTypes.string,
displayName: PropTypes.string.isRequired, displayName: PropTypes.string.isRequired,
attribution: PropTypes.string, attribution: PropTypes.string,
usage: PropTypes.oneOf(['emoticon', 'sticker', 'both']).isRequired, usage: PropTypes.oneOf(["emoticon", "sticker", "both"]).isRequired,
onUsageChange: PropTypes.func, onUsageChange: PropTypes.func,
onAvatarChange: PropTypes.func, onAvatarChange: PropTypes.func,
onEditProfile: PropTypes.func, onEditProfile: PropTypes.func,

View file

@ -1,4 +1,4 @@
@use '../../partials/flex'; @use "../../partials/flex";
.image-pack-profile { .image-pack-profile {
padding: var(--sp-normal); padding: var(--sp-normal);

View file

@ -1,15 +1,15 @@
import React, { useState, useRef } from 'react'; import React, { useState, useRef } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ImagePackUpload.scss'; import "./ImagePackUpload.scss";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import { scaleDownImage } from '../../../util/common'; import { scaleDownImage } from "../../../util/common";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import CirclePlusIC from '../../../../public/res/ic/outlined/circle-plus.svg'; import CirclePlusIC from "../../../../public/res/ic/outlined/circle-plus.svg";
function ImagePackUpload({ onUpload }) { function ImagePackUpload({ onUpload }) {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
@ -23,7 +23,7 @@ function ImagePackUpload({ onUpload }) {
if (!imgFile) return; if (!imgFile) return;
const { shortcodeInput } = evt.target; const { shortcodeInput } = evt.target;
const shortcode = shortcodeInput.value.trim(); const shortcode = shortcodeInput.value.trim();
if (shortcode === '') return; if (shortcode === "") return;
setProgress(true); setProgress(true);
const image = await scaleDownImage(imgFile, 512, 512); const image = await scaleDownImage(imgFile, 512, 512);
@ -32,37 +32,53 @@ function ImagePackUpload({ onUpload }) {
onUpload(shortcode, url); onUpload(shortcode, url);
setProgress(false); setProgress(false);
setImgFile(null); setImgFile(null);
shortcodeRef.current.value = ''; shortcodeRef.current.value = "";
}; };
const handleFileChange = (evt) => { const handleFileChange = (evt) => {
const img = evt.target.files[0]; const img = evt.target.files[0];
if (!img) return; if (!img) return;
setImgFile(img); setImgFile(img);
shortcodeRef.current.value = img.name.slice(0, img.name.indexOf('.')); shortcodeRef.current.value = img.name.slice(0, img.name.indexOf("."));
shortcodeRef.current.focus(); shortcodeRef.current.focus();
}; };
const handleRemove = () => { const handleRemove = () => {
setImgFile(null); setImgFile(null);
inputRef.current.value = null; inputRef.current.value = null;
shortcodeRef.current.value = ''; shortcodeRef.current.value = "";
}; };
return ( return (
<form onSubmit={handleSubmit} className="image-pack-upload"> <form onSubmit={handleSubmit} className="image-pack-upload">
<input ref={inputRef} onChange={handleFileChange} style={{ display: 'none' }} type="file" accept=".png, .gif, .webp" required /> <input
{ ref={inputRef}
imgFile onChange={handleFileChange}
? ( style={{ display: "none" }}
type="file"
accept=".png, .gif, .webp"
required
/>
{imgFile ? (
<div className="image-pack-upload__file"> <div className="image-pack-upload__file">
<IconButton onClick={handleRemove} src={CirclePlusIC} tooltip="Remove file" /> <IconButton
onClick={handleRemove}
src={CirclePlusIC}
tooltip="Remove file"
/>
<Text>{imgFile.name}</Text> <Text>{imgFile.name}</Text>
</div> </div>
) ) : (
: <Button onClick={() => inputRef.current.click()}>Import image</Button> <Button onClick={() => inputRef.current.click()}>Import image</Button>
} )}
<Input forwardRef={shortcodeRef} name="shortcodeInput" placeholder="shortcode" required /> <Input
<Button disabled={progress} variant="primary" type="submit">{progress ? 'Uploading...' : 'Upload'}</Button> forwardRef={shortcodeRef}
name="shortcodeInput"
placeholder="shortcode"
required
/>
<Button disabled={progress} variant="primary" type="submit">
{progress ? "Uploading..." : "Upload"}
</Button>
</form> </form>
); );
} }

View file

@ -1,5 +1,5 @@
@use '../../partials/dir'; @use "../../partials/dir";
@use '../../partials/text'; @use "../../partials/text";
.image-pack-upload { .image-pack-upload {
padding: var(--sp-normal); padding: var(--sp-normal);

View file

@ -1,31 +1,31 @@
import React from 'react'; import React from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import { MenuHeader, MenuItem } from '../../atoms/context-menu/ContextMenu'; import { MenuHeader, MenuItem } from "../../atoms/context-menu/ContextMenu";
import CheckIC from '../../../../public/res/ic/outlined/check.svg'; import CheckIC from "../../../../public/res/ic/outlined/check.svg";
function ImagePackUsageSelector({ usage, onSelect }) { function ImagePackUsageSelector({ usage, onSelect }) {
return ( return (
<div> <div>
<MenuHeader>Usage</MenuHeader> <MenuHeader>Usage</MenuHeader>
<MenuItem <MenuItem
iconSrc={usage === 'emoticon' ? CheckIC : undefined} iconSrc={usage === "emoticon" ? CheckIC : undefined}
variant={usage === 'emoticon' ? 'positive' : 'surface'} variant={usage === "emoticon" ? "positive" : "surface"}
onClick={() => onSelect('emoticon')} onClick={() => onSelect("emoticon")}
> >
Emoji Emoji
</MenuItem> </MenuItem>
<MenuItem <MenuItem
iconSrc={usage === 'sticker' ? CheckIC : undefined} iconSrc={usage === "sticker" ? CheckIC : undefined}
variant={usage === 'sticker' ? 'positive' : 'surface'} variant={usage === "sticker" ? "positive" : "surface"}
onClick={() => onSelect('sticker')} onClick={() => onSelect("sticker")}
> >
Sticker Sticker
</MenuItem> </MenuItem>
<MenuItem <MenuItem
iconSrc={usage === 'both' ? CheckIC : undefined} iconSrc={usage === "both" ? CheckIC : undefined}
variant={usage === 'both' ? 'positive' : 'surface'} variant={usage === "both" ? "positive" : "surface"}
onClick={() => onSelect('both')} onClick={() => onSelect("both")}
> >
Both Both
</MenuItem> </MenuItem>
@ -34,7 +34,7 @@ function ImagePackUsageSelector({ usage, onSelect }) {
} }
ImagePackUsageSelector.propTypes = { ImagePackUsageSelector.propTypes = {
usage: PropTypes.oneOf(['emoticon', 'sticker', 'both']).isRequired, usage: PropTypes.oneOf(["emoticon", "sticker", "both"]).isRequired,
onSelect: PropTypes.func.isRequired, onSelect: PropTypes.func.isRequired,
}; };

View file

@ -1,18 +1,22 @@
import React, { useState, useRef } from 'react'; import React, { useState, useRef } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './ImageUpload.scss'; import "./ImageUpload.scss";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Avatar from '../../atoms/avatar/Avatar'; import Avatar from "../../atoms/avatar/Avatar";
import Spinner from '../../atoms/spinner/Spinner'; import Spinner from "../../atoms/spinner/Spinner";
import RawIcon from '../../atoms/system-icons/RawIcon'; import RawIcon from "../../atoms/system-icons/RawIcon";
import PlusIC from '../../../../public/res/ic/outlined/plus.svg'; import PlusIC from "../../../../public/res/ic/outlined/plus.svg";
function ImageUpload({ function ImageUpload({
text, bgColor, imageSrc, onUpload, onRequestRemove, text,
bgColor,
imageSrc,
onUpload,
onRequestRemove,
size, size,
}) { }) {
const [uploadPromise, setUploadPromise] = useState(null); const [uploadPromise, setUploadPromise] = useState(null);
@ -26,7 +30,7 @@ function ImageUpload({
setUploadPromise(uPromise); setUploadPromise(uPromise);
const res = await uPromise; const res = await uPromise;
if (typeof res?.content_uri === 'string') onUpload(res.content_uri); if (typeof res?.content_uri === "string") onUpload(res.content_uri);
setUploadPromise(null); setUploadPromise(null);
} catch { } catch {
setUploadPromise(null); setUploadPromise(null);
@ -50,40 +54,48 @@ function ImageUpload({
uploadImageRef.current.click(); uploadImageRef.current.click();
}} }}
> >
<Avatar <Avatar imageSrc={imageSrc} text={text} bgColor={bgColor} size={size} />
imageSrc={imageSrc} <div
text={text} className={`img-upload__process ${
bgColor={bgColor} uploadPromise === null ? " img-upload__process--stopped" : ""
size={size} }`}
/> >
<div className={`img-upload__process ${uploadPromise === null ? ' img-upload__process--stopped' : ''}`}> {uploadPromise === null &&
{uploadPromise === null && ( (size === "large" ? (
size === 'large' <Text variant="b3" weight="bold">
? <Text variant="b3" weight="bold">Upload</Text> Upload
: <RawIcon src={PlusIC} color="white" /> </Text>
)} ) : (
<RawIcon src={PlusIC} color="white" />
))}
{uploadPromise !== null && <Spinner size="small" />} {uploadPromise !== null && <Spinner size="small" />}
</div> </div>
</button> </button>
{ (typeof imageSrc === 'string' || uploadPromise !== null) && ( {(typeof imageSrc === "string" || uploadPromise !== null) && (
<button <button
className="img-upload__btn-cancel" className="img-upload__btn-cancel"
type="button" type="button"
onClick={uploadPromise === null ? onRequestRemove : cancelUpload} onClick={uploadPromise === null ? onRequestRemove : cancelUpload}
> >
<Text variant="b3">{uploadPromise ? 'Cancel' : 'Remove'}</Text> <Text variant="b3">{uploadPromise ? "Cancel" : "Remove"}</Text>
</button> </button>
)} )}
<input onChange={uploadImage} style={{ display: 'none' }} ref={uploadImageRef} type="file" accept="image/*" /> <input
onChange={uploadImage}
style={{ display: "none" }}
ref={uploadImageRef}
type="file"
accept="image/*"
/>
</div> </div>
); );
} }
ImageUpload.defaultProps = { ImageUpload.defaultProps = {
text: null, text: null,
bgColor: 'transparent', bgColor: "transparent",
imageSrc: null, imageSrc: null,
size: 'large', size: "large",
}; };
ImageUpload.propTypes = { ImageUpload.propTypes = {
@ -92,7 +104,7 @@ ImageUpload.propTypes = {
imageSrc: PropTypes.string, imageSrc: PropTypes.string,
onUpload: PropTypes.func.isRequired, onUpload: PropTypes.func.isRequired,
onRequestRemove: PropTypes.func.isRequired, onRequestRemove: PropTypes.func.isRequired,
size: PropTypes.oneOf(['large', 'normal']), size: PropTypes.oneOf(["large", "normal"]),
}; };
export default ImageUpload; export default ImageUpload;

View file

@ -16,7 +16,7 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background-color: rgba(0, 0, 0, .6); background-color: rgba(0, 0, 0, 0.6);
position: absolute; position: absolute;
left: 0; left: 0;
@ -30,7 +30,7 @@
display: none; display: none;
} }
& .donut-spinner { & .donut-spinner {
border-color: rgb(255, 255, 255, .3); border-color: rgb(255, 255, 255, 0.3);
border-left-color: white; border-left-color: white;
} }
} }
@ -38,12 +38,11 @@
display: flex; display: flex;
} }
&__btn-cancel { &__btn-cancel {
margin-top: var(--sp-extra-tight); margin-top: var(--sp-extra-tight);
cursor: pointer; cursor: pointer;
& .text { & .text {
color: var(--tc-danger-normal) color: var(--tc-danger-normal);
} }
} }
} }

View file

@ -1,18 +1,18 @@
import React, { useState, useEffect, useRef } from 'react'; import React, { useState, useEffect, useRef } from "react";
import './ExportE2ERoomKeys.scss'; import "./ExportE2ERoomKeys.scss";
import FileSaver from 'file-saver'; import FileSaver from "file-saver";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import cons from '../../../client/state/cons'; import cons from "../../../client/state/cons";
import { encryptMegolmKeyFile } from '../../../util/cryptE2ERoomKeys'; import { encryptMegolmKeyFile } from "../../../util/cryptE2ERoomKeys";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import Spinner from '../../atoms/spinner/Spinner'; import Spinner from "../../atoms/spinner/Spinner";
import { useStore } from '../../hooks/useStore'; import { useStore } from "../../hooks/useStore";
function ExportE2ERoomKeys() { function ExportE2ERoomKeys() {
const isMountStore = useStore(); const isMountStore = useStore();
@ -29,14 +29,14 @@ function ExportE2ERoomKeys() {
if (password !== confirmPasswordRef.current.value) { if (password !== confirmPasswordRef.current.value) {
setStatus({ setStatus({
isOngoing: false, isOngoing: false,
msg: 'Password does not match.', msg: "Password does not match.",
type: cons.status.ERROR, type: cons.status.ERROR,
}); });
return; return;
} }
setStatus({ setStatus({
isOngoing: true, isOngoing: true,
msg: 'Getting keys...', msg: "Getting keys...",
type: cons.status.IN_FLIGHT, type: cons.status.IN_FLIGHT,
}); });
try { try {
@ -44,19 +44,22 @@ function ExportE2ERoomKeys() {
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: true, isOngoing: true,
msg: 'Encrypting keys...', msg: "Encrypting keys...",
type: cons.status.IN_FLIGHT, type: cons.status.IN_FLIGHT,
}); });
} }
const encKeys = await encryptMegolmKeyFile(JSON.stringify(keys), password); const encKeys = await encryptMegolmKeyFile(
JSON.stringify(keys),
password
);
const blob = new Blob([encKeys], { const blob = new Blob([encKeys], {
type: 'text/plain;charset=us-ascii', type: "text/plain;charset=us-ascii",
}); });
FileSaver.saveAs(blob, 'cinny-keys.txt'); FileSaver.saveAs(blob, "cinny-keys.txt");
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: false, isOngoing: false,
msg: 'Successfully exported all keys.', msg: "Successfully exported all keys.",
type: cons.status.SUCCESS, type: cons.status.SUCCESS,
}); });
} }
@ -64,7 +67,7 @@ function ExportE2ERoomKeys() {
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: false, isOngoing: false,
msg: e.friendlyText || 'Failed to export keys. Please try again.', msg: e.friendlyText || "Failed to export keys. Please try again.",
type: cons.status.ERROR, type: cons.status.ERROR,
}); });
} }
@ -80,10 +83,28 @@ function ExportE2ERoomKeys() {
return ( return (
<div className="export-e2e-room-keys"> <div className="export-e2e-room-keys">
<form className="export-e2e-room-keys__form" onSubmit={(e) => { e.preventDefault(); exportE2ERoomKeys(); }}> <form
<Input forwardRef={passwordRef} type="password" placeholder="Password" required /> className="export-e2e-room-keys__form"
<Input forwardRef={confirmPasswordRef} type="password" placeholder="Confirm password" required /> onSubmit={(e) => {
<Button disabled={status.isOngoing} variant="primary" type="submit">Export</Button> e.preventDefault();
exportE2ERoomKeys();
}}
>
<Input
forwardRef={passwordRef}
type="password"
placeholder="Password"
required
/>
<Input
forwardRef={confirmPasswordRef}
type="password"
placeholder="Confirm password"
required
/>
<Button disabled={status.isOngoing} variant="primary" type="submit">
Export
</Button>
</form> </form>
{status.type === cons.status.IN_FLIGHT && ( {status.type === cons.status.IN_FLIGHT && (
<div className="import-e2e-room-keys__process"> <div className="import-e2e-room-keys__process">
@ -91,8 +112,16 @@ function ExportE2ERoomKeys() {
<Text variant="b2">{status.msg}</Text> <Text variant="b2">{status.msg}</Text>
</div> </div>
)} )}
{status.type === cons.status.SUCCESS && <Text className="import-e2e-room-keys__success" variant="b2">{status.msg}</Text>} {status.type === cons.status.SUCCESS && (
{status.type === cons.status.ERROR && <Text className="import-e2e-room-keys__error" variant="b2">{status.msg}</Text>} <Text className="import-e2e-room-keys__success" variant="b2">
{status.msg}
</Text>
)}
{status.type === cons.status.ERROR && (
<Text className="import-e2e-room-keys__error" variant="b2">
{status.msg}
</Text>
)}
</div> </div>
); );
} }

View file

@ -24,5 +24,4 @@
margin-top: var(--sp-tight); margin-top: var(--sp-tight);
color: var(--tc-danger-high); color: var(--tc-danger-high);
} }
} }

View file

@ -1,19 +1,19 @@
import React, { useState, useEffect, useRef } from 'react'; import React, { useState, useEffect, useRef } from "react";
import './ImportE2ERoomKeys.scss'; import "./ImportE2ERoomKeys.scss";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import cons from '../../../client/state/cons'; import cons from "../../../client/state/cons";
import { decryptMegolmKeyFile } from '../../../util/cryptE2ERoomKeys'; import { decryptMegolmKeyFile } from "../../../util/cryptE2ERoomKeys";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import Spinner from '../../atoms/spinner/Spinner'; import Spinner from "../../atoms/spinner/Spinner";
import CirclePlusIC from '../../../../public/res/ic/outlined/circle-plus.svg'; import CirclePlusIC from "../../../../public/res/ic/outlined/circle-plus.svg";
import { useStore } from '../../hooks/useStore'; import { useStore } from "../../hooks/useStore";
function ImportE2ERoomKeys() { function ImportE2ERoomKeys() {
const isMountStore = useStore(); const isMountStore = useStore();
@ -32,7 +32,7 @@ function ImportE2ERoomKeys() {
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: true, isOngoing: true,
msg: 'Decrypting file...', msg: "Decrypting file...",
type: cons.status.IN_FLIGHT, type: cons.status.IN_FLIGHT,
}); });
} }
@ -41,7 +41,7 @@ function ImportE2ERoomKeys() {
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: true, isOngoing: true,
msg: 'Decrypting messages...', msg: "Decrypting messages...",
type: cons.status.IN_FLIGHT, type: cons.status.IN_FLIGHT,
}); });
} }
@ -49,7 +49,7 @@ function ImportE2ERoomKeys() {
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: false, isOngoing: false,
msg: 'Successfully imported all keys.', msg: "Successfully imported all keys.",
type: cons.status.SUCCESS, type: cons.status.SUCCESS,
}); });
inputRef.current.value = null; inputRef.current.value = null;
@ -59,7 +59,7 @@ function ImportE2ERoomKeys() {
if (isMountStore.getItem()) { if (isMountStore.getItem()) {
setStatus({ setStatus({
isOngoing: false, isOngoing: false,
msg: e.friendlyText || 'Failed to decrypt keys. Please try again.', msg: e.friendlyText || "Failed to decrypt keys. Please try again.",
type: cons.status.ERROR, type: cons.status.ERROR,
}); });
} }
@ -68,7 +68,7 @@ function ImportE2ERoomKeys() {
const importE2ERoomKeys = () => { const importE2ERoomKeys = () => {
const password = passwordRef.current.value; const password = passwordRef.current.value;
if (password === '' || keyFile === null) return; if (password === "" || keyFile === null) return;
if (status.isOngoing) return; if (status.isOngoing) return;
tryDecrypt(keyFile, password); tryDecrypt(keyFile, password);
@ -76,7 +76,7 @@ function ImportE2ERoomKeys() {
const handleFileChange = (e) => { const handleFileChange = (e) => {
const file = e.target.files.item(0); const file = e.target.files.item(0);
passwordRef.current.value = ''; passwordRef.current.value = "";
setKeyFile(file); setKeyFile(file);
setStatus({ setStatus({
isOngoing: false, isOngoing: false,
@ -105,18 +105,42 @@ function ImportE2ERoomKeys() {
return ( return (
<div className="import-e2e-room-keys"> <div className="import-e2e-room-keys">
<input ref={inputRef} onChange={handleFileChange} style={{ display: 'none' }} type="file" /> <input
ref={inputRef}
onChange={handleFileChange}
style={{ display: "none" }}
type="file"
/>
<form className="import-e2e-room-keys__form" onSubmit={(e) => { e.preventDefault(); importE2ERoomKeys(); }}> <form
className="import-e2e-room-keys__form"
onSubmit={(e) => {
e.preventDefault();
importE2ERoomKeys();
}}
>
{keyFile !== null && ( {keyFile !== null && (
<div className="import-e2e-room-keys__file"> <div className="import-e2e-room-keys__file">
<IconButton onClick={removeImportKeysFile} src={CirclePlusIC} tooltip="Remove file" /> <IconButton
onClick={removeImportKeysFile}
src={CirclePlusIC}
tooltip="Remove file"
/>
<Text>{keyFile.name}</Text> <Text>{keyFile.name}</Text>
</div> </div>
)} )}
{keyFile === null && <Button onClick={() => inputRef.current.click()}>Import keys</Button>} {keyFile === null && (
<Input forwardRef={passwordRef} type="password" placeholder="Password" required /> <Button onClick={() => inputRef.current.click()}>Import keys</Button>
<Button disabled={status.isOngoing} variant="primary" type="submit">Decrypt</Button> )}
<Input
forwardRef={passwordRef}
type="password"
placeholder="Password"
required
/>
<Button disabled={status.isOngoing} variant="primary" type="submit">
Decrypt
</Button>
</form> </form>
{status.type === cons.status.IN_FLIGHT && ( {status.type === cons.status.IN_FLIGHT && (
<div className="import-e2e-room-keys__process"> <div className="import-e2e-room-keys__process">
@ -124,8 +148,16 @@ function ImportE2ERoomKeys() {
<Text variant="b2">{status.msg}</Text> <Text variant="b2">{status.msg}</Text>
</div> </div>
)} )}
{status.type === cons.status.SUCCESS && <Text className="import-e2e-room-keys__success" variant="b2">{status.msg}</Text>} {status.type === cons.status.SUCCESS && (
{status.type === cons.status.ERROR && <Text className="import-e2e-room-keys__error" variant="b2">{status.msg}</Text>} <Text className="import-e2e-room-keys__success" variant="b2">
{status.msg}
</Text>
)}
{status.type === cons.status.ERROR && (
<Text className="import-e2e-room-keys__error" variant="b2">
{status.msg}
</Text>
)}
</div> </div>
); );
} }

View file

@ -1,5 +1,5 @@
@use '../../partials/text'; @use "../../partials/text";
@use '../../partials/dir'; @use "../../partials/dir";
.import-e2e-room-keys { .import-e2e-room-keys {
&__file { &__file {
@ -34,7 +34,6 @@
display: flex; display: flex;
margin-top: var(--sp-extra-tight); margin-top: var(--sp-extra-tight);
& .input-container { & .input-container {
flex: 1; flex: 1;
margin: 0 var(--sp-tight); margin: 0 var(--sp-tight);

View file

@ -1,20 +1,20 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from "react";
import PropTypes from 'prop-types'; import PropTypes from "prop-types";
import './Media.scss'; import "./Media.scss";
import encrypt from 'browser-encrypt-attachment'; import encrypt from "browser-encrypt-attachment";
import { BlurhashCanvas } from 'react-blurhash'; import { BlurhashCanvas } from "react-blurhash";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import Spinner from '../../atoms/spinner/Spinner'; import Spinner from "../../atoms/spinner/Spinner";
import ImageLightbox from '../image-lightbox/ImageLightbox'; import ImageLightbox from "../image-lightbox/ImageLightbox";
import DownloadSVG from '../../../../public/res/ic/outlined/download.svg'; import DownloadSVG from "../../../../public/res/ic/outlined/download.svg";
import ExternalSVG from '../../../../public/res/ic/outlined/external.svg'; import ExternalSVG from "../../../../public/res/ic/outlined/external.svg";
import PlaySVG from '../../../../public/res/ic/outlined/play.svg'; import PlaySVG from "../../../../public/res/ic/outlined/play.svg";
import { getBlobSafeMimeType } from '../../../util/mimetypes'; import { getBlobSafeMimeType } from "../../../util/mimetypes";
async function getDecryptedBlob(response, type, decryptData) { async function getDecryptedBlob(response, type, decryptData) {
const arrayBuffer = await response.arrayBuffer(); const arrayBuffer = await response.arrayBuffer();
@ -25,9 +25,11 @@ async function getDecryptedBlob(response, type, decryptData) {
async function getUrl(link, type, decryptData) { async function getUrl(link, type, decryptData) {
try { try {
const response = await fetch(link, { method: 'GET' }); const response = await fetch(link, { method: "GET" });
if (decryptData !== null) { if (decryptData !== null) {
return URL.createObjectURL(await getDecryptedBlob(response, type, decryptData)); return URL.createObjectURL(
await getDecryptedBlob(response, type, decryptData)
);
} }
const blob = await response.blob(); const blob = await response.blob();
return URL.createObjectURL(blob); return URL.createObjectURL(blob);
@ -41,10 +43,7 @@ function getNativeHeight(width, height, maxWidth = 296) {
return scale * height; return scale * height;
} }
function FileHeader({ function FileHeader({ name, link, external, file, type }) {
name, link, external,
file, type,
}) {
const [url, setUrl] = useState(null); const [url, setUrl] = useState(null);
async function getFile() { async function getFile() {
@ -61,20 +60,25 @@ function FileHeader({
} }
return ( return (
<div className="file-header"> <div className="file-header">
<Text className="file-name" variant="b3">{name}</Text> <Text className="file-name" variant="b3">
{name}
</Text>
{link !== null && ( {link !== null && (
<> <>
{ {external && (
external && (
<IconButton <IconButton
size="extra-small" size="extra-small"
tooltip="Open in new tab" tooltip="Open in new tab"
src={ExternalSVG} src={ExternalSVG}
onClick={() => window.open(url || link)} onClick={() => window.open(url || link)}
/> />
) )}
} <a
<a href={url || link} download={name} target="_blank" rel="noreferrer"> href={url || link}
download={name}
target="_blank"
rel="noreferrer"
>
<IconButton <IconButton
size="extra-small" size="extra-small"
tooltip="Download" tooltip="Download"
@ -100,9 +104,7 @@ FileHeader.propTypes = {
type: PropTypes.string.isRequired, type: PropTypes.string.isRequired,
}; };
function File({ function File({ name, link, file, type }) {
name, link, file, type,
}) {
return ( return (
<div className="file-container"> <div className="file-container">
<FileHeader name={name} link={link} file={file} type={type} /> <FileHeader name={name} link={link} file={file} type={type} />
@ -111,7 +113,7 @@ function File({
} }
File.defaultProps = { File.defaultProps = {
file: null, file: null,
type: '', type: "",
}; };
File.propTypes = { File.propTypes = {
name: PropTypes.string.isRequired, name: PropTypes.string.isRequired,
@ -120,9 +122,7 @@ File.propTypes = {
file: PropTypes.shape({}), file: PropTypes.shape({}),
}; };
function Image({ function Image({ name, width, height, link, file, type, blurhash }) {
name, width, height, link, file, type, blurhash,
}) {
const [url, setUrl] = useState(null); const [url, setUrl] = useState(null);
const [blur, setBlur] = useState(true); const [blur, setBlur] = useState(true);
const [lightbox, setLightbox] = useState(false); const [lightbox, setLightbox] = useState(false);
@ -149,7 +149,9 @@ function Image({
<> <>
<div className="file-container"> <div className="file-container">
<div <div
style={{ height: width !== null ? getNativeHeight(width, height) : 'unset' }} style={{
height: width !== null ? getNativeHeight(width, height) : "unset",
}}
className="image-container" className="image-container"
role="button" role="button"
tabIndex="0" tabIndex="0"
@ -159,7 +161,7 @@ function Image({
{blurhash && blur && <BlurhashCanvas hash={blurhash} punch={1} />} {blurhash && blur && <BlurhashCanvas hash={blurhash} punch={1} />}
{url !== null && ( {url !== null && (
<img <img
style={{ display: blur ? 'none' : 'unset' }} style={{ display: blur ? "none" : "unset" }}
onLoad={() => setBlur(false)} onLoad={() => setBlur(false)}
src={url || link} src={url || link}
alt={name} alt={name}
@ -182,8 +184,8 @@ Image.defaultProps = {
file: null, file: null,
width: null, width: null,
height: null, height: null,
type: '', type: "",
blurhash: '', blurhash: "",
}; };
Image.propTypes = { Image.propTypes = {
name: PropTypes.string.isRequired, name: PropTypes.string.isRequired,
@ -195,9 +197,7 @@ Image.propTypes = {
blurhash: PropTypes.string, blurhash: PropTypes.string,
}; };
function Sticker({ function Sticker({ name, height, width, link, file, type }) {
name, height, width, link, file, type,
}) {
const [url, setUrl] = useState(null); const [url, setUrl] = useState(null);
useEffect(() => { useEffect(() => {
@ -214,14 +214,19 @@ function Sticker({
}, []); }, []);
return ( return (
<div className="sticker-container" style={{ height: width !== null ? getNativeHeight(width, height, 128) : 'unset' }}> <div
className="sticker-container"
style={{
height: width !== null ? getNativeHeight(width, height, 128) : "unset",
}}
>
{url !== null && <img src={url || link} title={name} alt={name} />} {url !== null && <img src={url || link} title={name} alt={name} />}
</div> </div>
); );
} }
Sticker.defaultProps = { Sticker.defaultProps = {
file: null, file: null,
type: '', type: "",
width: null, width: null,
height: null, height: null,
}; };
@ -234,9 +239,7 @@ Sticker.propTypes = {
type: PropTypes.string, type: PropTypes.string,
}; };
function Audio({ function Audio({ name, link, type, file }) {
name, link, type, file,
}) {
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(false);
const [url, setUrl] = useState(null); const [url, setUrl] = useState(null);
@ -252,10 +255,21 @@ function Audio({
return ( return (
<div className="file-container"> <div className="file-container">
<FileHeader name={name} link={file !== null ? url : url || link} type={type} external /> <FileHeader
name={name}
link={file !== null ? url : url || link}
type={type}
external
/>
<div className="audio-container"> <div className="audio-container">
{url === null && isLoading && <Spinner size="small" />} {url === null && isLoading && <Spinner size="small" />}
{ url === null && !isLoading && <IconButton onClick={handlePlayAudio} tooltip="Play audio" src={PlaySVG} />} {url === null && !isLoading && (
<IconButton
onClick={handlePlayAudio}
tooltip="Play audio"
src={PlaySVG}
/>
)}
{url !== null && ( {url !== null && (
/* eslint-disable-next-line jsx-a11y/media-has-caption */ /* eslint-disable-next-line jsx-a11y/media-has-caption */
<audio autoPlay controls> <audio autoPlay controls>
@ -268,7 +282,7 @@ function Audio({
} }
Audio.defaultProps = { Audio.defaultProps = {
file: null, file: null,
type: '', type: "",
}; };
Audio.propTypes = { Audio.propTypes = {
name: PropTypes.string.isRequired, name: PropTypes.string.isRequired,
@ -278,8 +292,16 @@ Audio.propTypes = {
}; };
function Video({ function Video({
name, link, thumbnail, thumbnailFile, thumbnailType, name,
width, height, file, type, blurhash, link,
thumbnail,
thumbnailFile,
thumbnailType,
width,
height,
file,
type,
blurhash,
}) { }) {
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(false);
const [url, setUrl] = useState(null); const [url, setUrl] = useState(null);
@ -312,10 +334,15 @@ function Video({
return ( return (
<div className="file-container"> <div className="file-container">
<FileHeader name={name} link={file !== null ? url : url || link} type={type} external /> <FileHeader
name={name}
link={file !== null ? url : url || link}
type={type}
external
/>
<div <div
style={{ style={{
height: width !== null ? getNativeHeight(width, height) : 'unset', height: width !== null ? getNativeHeight(width, height) : "unset",
}} }}
className="video-container" className="video-container"
> >
@ -323,10 +350,21 @@ function Video({
<> <>
{blurhash && blur && <BlurhashCanvas hash={blurhash} punch={1} />} {blurhash && blur && <BlurhashCanvas hash={blurhash} punch={1} />}
{thumbUrl !== null && ( {thumbUrl !== null && (
<img style={{ display: blur ? 'none' : 'unset' }} src={thumbUrl} onLoad={() => setBlur(false)} alt={name} /> <img
style={{ display: blur ? "none" : "unset" }}
src={thumbUrl}
onLoad={() => setBlur(false)}
alt={name}
/>
)} )}
{isLoading && <Spinner size="small" />} {isLoading && <Spinner size="small" />}
{!isLoading && <IconButton onClick={handlePlayVideo} tooltip="Play video" src={PlaySVG} />} {!isLoading && (
<IconButton
onClick={handlePlayVideo}
tooltip="Play video"
src={PlaySVG}
/>
)}
</> </>
) : ( ) : (
/* eslint-disable-next-line jsx-a11y/media-has-caption */ /* eslint-disable-next-line jsx-a11y/media-has-caption */
@ -345,7 +383,7 @@ Video.defaultProps = {
thumbnail: null, thumbnail: null,
thumbnailType: null, thumbnailType: null,
thumbnailFile: null, thumbnailFile: null,
type: '', type: "",
blurhash: null, blurhash: null,
}; };
Video.propTypes = { Video.propTypes = {
@ -361,6 +399,4 @@ Video.propTypes = {
blurhash: PropTypes.string, blurhash: PropTypes.string,
}; };
export { export { File, Image, Sticker, Audio, Video };
File, Image, Sticker, Audio, Video,
};

View file

@ -1,4 +1,4 @@
@use '../../partials/text'; @use "../../partials/text";
.file-header { .file-header {
display: flex; display: flex;

View file

@ -1,46 +1,55 @@
/* eslint-disable react/prop-types */ /* eslint-disable react/prop-types */
import React, { import React, { useState, useEffect, useCallback, useRef } from "react";
useState, useEffect, useCallback, useRef, import PropTypes from "prop-types";
} from 'react'; import "./Message.scss";
import PropTypes from 'prop-types';
import './Message.scss';
import { twemojify } from '../../../util/twemojify'; import { twemojify } from "../../../util/twemojify";
import initMatrix from '../../../client/initMatrix'; import initMatrix from "../../../client/initMatrix";
import { import {
getUsername, getUsernameOfRoomMember, parseReply, trimHTMLReply, getUsername,
} from '../../../util/matrixUtil'; getUsernameOfRoomMember,
import colorMXID from '../../../util/colorMXID'; parseReply,
import { getEventCords } from '../../../util/common'; trimHTMLReply,
import { redactEvent, sendReaction } from '../../../client/action/roomTimeline'; } from "../../../util/matrixUtil";
import colorMXID from "../../../util/colorMXID";
import { getEventCords } from "../../../util/common";
import { redactEvent, sendReaction } from "../../../client/action/roomTimeline";
import { import {
openEmojiBoard, openProfileViewer, openReadReceipts, openViewSource, replyTo, openEmojiBoard,
} from '../../../client/action/navigation'; openProfileViewer,
import { sanitizeCustomHtml } from '../../../util/sanitize'; openReadReceipts,
openViewSource,
replyTo,
} from "../../../client/action/navigation";
import { sanitizeCustomHtml } from "../../../util/sanitize";
import Text from '../../atoms/text/Text'; import Text from "../../atoms/text/Text";
import RawIcon from '../../atoms/system-icons/RawIcon'; import RawIcon from "../../atoms/system-icons/RawIcon";
import Button from '../../atoms/button/Button'; import Button from "../../atoms/button/Button";
import Tooltip from '../../atoms/tooltip/Tooltip'; import Tooltip from "../../atoms/tooltip/Tooltip";
import Input from '../../atoms/input/Input'; import Input from "../../atoms/input/Input";
import Avatar from '../../atoms/avatar/Avatar'; import Avatar from "../../atoms/avatar/Avatar";
import IconButton from '../../atoms/button/IconButton'; import IconButton from "../../atoms/button/IconButton";
import Time from '../../atoms/time/Time'; import Time from "../../atoms/time/Time";
import ContextMenu, { MenuHeader, MenuItem, MenuBorder } from '../../atoms/context-menu/ContextMenu'; import ContextMenu, {
import * as Media from '../media/Media'; MenuHeader,
MenuItem,
MenuBorder,
} from "../../atoms/context-menu/ContextMenu";
import * as Media from "../media/Media";
import ReplyArrowIC from '../../../../public/res/ic/outlined/reply-arrow.svg'; import ReplyArrowIC from "../../../../public/res/ic/outlined/reply-arrow.svg";
import EmojiAddIC from '../../../../public/res/ic/outlined/emoji-add.svg'; import EmojiAddIC from "../../../../public/res/ic/outlined/emoji-add.svg";
import VerticalMenuIC from '../../../../public/res/ic/outlined/vertical-menu.svg'; import VerticalMenuIC from "../../../../public/res/ic/outlined/vertical-menu.svg";
import PencilIC from '../../../../public/res/ic/outlined/pencil.svg'; import PencilIC from "../../../../public/res/ic/outlined/pencil.svg";
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg'; import TickMarkIC from "../../../../public/res/ic/outlined/tick-mark.svg";
import CmdIC from '../../../../public/res/ic/outlined/cmd.svg'; import CmdIC from "../../../../public/res/ic/outlined/cmd.svg";
import BinIC from '../../../../public/res/ic/outlined/bin.svg'; import BinIC from "../../../../public/res/ic/outlined/bin.svg";
import { confirmDialog } from '../confirm-dialog/ConfirmDialog'; import { confirmDialog } from "../confirm-dialog/ConfirmDialog";
import { getBlobSafeMimeType } from '../../../util/mimetypes'; import { getBlobSafeMimeType } from "../../../util/mimetypes";
import { html, plain } from '../../../util/markdown'; import { html, plain } from "../../../util/markdown";
function PlaceholderMessage() { function PlaceholderMessage() {
return ( return (
@ -61,19 +70,21 @@ function PlaceholderMessage() {
); );
} }
const MessageAvatar = React.memo(({ const MessageAvatar = React.memo(({ roomId, avatarSrc, userId, username }) => (
roomId, avatarSrc, userId, username,
}) => (
<div className="message__avatar-container"> <div className="message__avatar-container">
<button type="button" onClick={() => openProfileViewer(userId, roomId)}> <button type="button" onClick={() => openProfileViewer(userId, roomId)}>
<Avatar imageSrc={avatarSrc} text={username} bgColor={colorMXID(userId)} size="small" /> <Avatar
imageSrc={avatarSrc}
text={username}
bgColor={colorMXID(userId)}
size="small"
/>
</button> </button>
</div> </div>
)); ));
const MessageHeader = React.memo(({ const MessageHeader = React.memo(
userId, username, timestamp, fullTime, ({ userId, username, timestamp, fullTime }) => (
}) => (
<div className="message__header"> <div className="message__header">
<Text <Text
style={{ color: colorMXID(userId) }} style={{ color: colorMXID(userId) }}
@ -91,7 +102,8 @@ const MessageHeader = React.memo(({
</Text> </Text>
</div> </div>
</div> </div>
)); )
);
MessageHeader.defaultProps = { MessageHeader.defaultProps = {
fullTime: false, fullTime: false,
}; };
@ -107,9 +119,7 @@ function MessageReply({ name, color, body }) {
<div className="message__reply"> <div className="message__reply">
<Text variant="b2"> <Text variant="b2">
<RawIcon color={color} size="extra-small" src={ReplyArrowIC} /> <RawIcon color={color} size="extra-small" src={ReplyArrowIC} />
<span style={{ color }}>{twemojify(name)}</span> <span style={{ color }}>{twemojify(name)}</span> {twemojify(body)}
{' '}
{twemojify(body)}
</Text> </Text>
</div> </div>
); );
@ -143,9 +153,11 @@ const MessageReplyWrapper = React.memo(({ roomTimeline, eventId }) => {
const username = getUsernameOfRoomMember(mEvent.sender); const username = getUsernameOfRoomMember(mEvent.sender);
if (isMountedRef.current === false) return; if (isMountedRef.current === false) return;
const fallbackBody = mEvent.isRedacted() ? '*** This message has been deleted ***' : '*** Unable to load reply ***'; const fallbackBody = mEvent.isRedacted()
? "*** This message has been deleted ***"
: "*** Unable to load reply ***";
let parsedBody = parseReply(rawBody)?.body ?? rawBody ?? fallbackBody; let parsedBody = parseReply(rawBody)?.body ?? rawBody ?? fallbackBody;
if (editedList && parsedBody.startsWith(' * ')) { if (editedList && parsedBody.startsWith(" * ")) {
parsedBody = parsedBody.slice(3); parsedBody = parsedBody.slice(3);
} }
@ -157,9 +169,9 @@ const MessageReplyWrapper = React.memo(({ roomTimeline, eventId }) => {
}); });
} catch { } catch {
setReply({ setReply({
to: '** Unknown user **', to: "** Unknown user **",
color: 'var(--tc-danger-normal)', color: "var(--tc-danger-normal)",
body: '*** Unable to load reply ***', body: "*** Unable to load reply ***",
event: null, event: null,
}); });
} }
@ -172,7 +184,7 @@ const MessageReplyWrapper = React.memo(({ roomTimeline, eventId }) => {
}, []); }, []);
const focusReply = (ev) => { const focusReply = (ev) => {
if (!ev.key || ev.key === ' ' || ev.key === 'Enter') { if (!ev.key || ev.key === " " || ev.key === "Enter") {
if (ev.key) ev.preventDefault(); if (ev.key) ev.preventDefault();
if (reply?.event === null) return; if (reply?.event === null) return;
if (reply?.event.isRedacted()) return; if (reply?.event.isRedacted()) return;
@ -188,7 +200,9 @@ const MessageReplyWrapper = React.memo(({ roomTimeline, eventId }) => {
role="button" role="button"
tabIndex="0" tabIndex="0"
> >
{reply !== null && <MessageReply name={reply.to} color={reply.color} body={reply.body} />} {reply !== null && (
<MessageReply name={reply.to} color={reply.color} body={reply.body} />
)}
</div> </div>
); );
}); });
@ -197,15 +211,11 @@ MessageReplyWrapper.propTypes = {
eventId: PropTypes.string.isRequired, eventId: PropTypes.string.isRequired,
}; };
const MessageBody = React.memo(({ const MessageBody = React.memo(
senderName, ({ senderName, body, isCustomHTML, isEdited, msgType }) => {
body,
isCustomHTML,
isEdited,
msgType,
}) => {
// if body is not string it is a React element. // if body is not string it is a React element.
if (typeof body !== 'string') return <div className="message__body">{body}</div>; if (typeof body !== "string")
return <div className="message__body">{body}</div>;
let content = null; let content = null;
if (isCustomHTML) { if (isCustomHTML) {
@ -215,10 +225,10 @@ const MessageBody = React.memo(({
undefined, undefined,
true, true,
false, false,
true, true
); );
} catch { } catch {
console.error('Malformed custom html: ', body); console.error("Malformed custom html: ", body);
content = twemojify(body, undefined); content = twemojify(body, undefined);
} }
} else { } else {
@ -230,20 +240,24 @@ const MessageBody = React.memo(({
// - Contains only emoji // - Contains only emoji
// - Contains no more than 10 emoji // - Contains no more than 10 emoji
let emojiOnly = false; let emojiOnly = false;
if (content.type === 'img') { if (content.type === "img") {
// If this messages contains only a single (inline) image // If this messages contains only a single (inline) image
emojiOnly = true; emojiOnly = true;
} else if (content.constructor.name === 'Array') { } else if (content.constructor.name === "Array") {
// Otherwise, it might be an array of images / texb // Otherwise, it might be an array of images / texb
// Count the number of emojis // Count the number of emojis
const nEmojis = content.filter((e) => e.type === 'img').length; const nEmojis = content.filter((e) => e.type === "img").length;
// Make sure there's no text besides whitespace and variation selector U+FE0F // Make sure there's no text besides whitespace and variation selector U+FE0F
if (nEmojis <= 10 && content.every((element) => ( if (
(typeof element === 'object' && element.type === 'img') nEmojis <= 10 &&
|| (typeof element === 'string' && /^[\s\ufe0f]*$/g.test(element)) content.every(
))) { (element) =>
(typeof element === "object" && element.type === "img") ||
(typeof element === "string" && /^[\s\ufe0f]*$/g.test(element))
)
) {
emojiOnly = true; emojiOnly = true;
} }
} }
@ -251,25 +265,29 @@ const MessageBody = React.memo(({
if (!isCustomHTML) { if (!isCustomHTML) {
// If this is a plaintext message, wrap it in a <p> element (automatically applying // If this is a plaintext message, wrap it in a <p> element (automatically applying
// white-space: pre-wrap) in order to preserve newlines // white-space: pre-wrap) in order to preserve newlines
content = (<p className="message__body-plain">{content}</p>); content = <p className="message__body-plain">{content}</p>;
} }
return ( return (
<div className="message__body"> <div className="message__body">
<div dir="auto" className={`text ${emojiOnly ? 'text-h1' : 'text-b1'}`}> <div dir="auto" className={`text ${emojiOnly ? "text-h1" : "text-b1"}`}>
{ msgType === 'm.emote' && ( {msgType === "m.emote" && (
<> <>
{'* '} {"* "}
{twemojify(senderName)} {twemojify(senderName)}{" "}
{' '}
</> </>
)} )}
{content} {content}
</div> </div>
{ isEdited && <Text className="message__body-edited" variant="b3">(edited)</Text>} {isEdited && (
<Text className="message__body-edited" variant="b3">
(edited)
</Text>
)}
</div> </div>
); );
}); }
);
MessageBody.defaultProps = { MessageBody.defaultProps = {
isCustomHTML: false, isCustomHTML: false,
isEdited: false, isEdited: false,
@ -288,24 +306,30 @@ function MessageEdit({ body, onSave, onCancel }) {
useEffect(() => { useEffect(() => {
// makes the cursor end up at the end of the line instead of the beginning // makes the cursor end up at the end of the line instead of the beginning
editInputRef.current.value = ''; editInputRef.current.value = "";
editInputRef.current.value = body; editInputRef.current.value = body;
}, []); }, []);
const handleKeyDown = (e) => { const handleKeyDown = (e) => {
if (e.key === 'Escape') { if (e.key === "Escape") {
e.preventDefault(); e.preventDefault();
onCancel(); onCancel();
} }
if (e.key === 'Enter' && e.shiftKey === false) { if (e.key === "Enter" && e.shiftKey === false) {
e.preventDefault(); e.preventDefault();
onSave(editInputRef.current.value, body); onSave(editInputRef.current.value, body);
} }
}; };
return ( return (
<form className="message__edit" onSubmit={(e) => { e.preventDefault(); onSave(editInputRef.current.value, body); }}> <form
className="message__edit"
onSubmit={(e) => {
e.preventDefault();
onSave(editInputRef.current.value, body);
}}
>
<Input <Input
forwardRef={editInputRef} forwardRef={editInputRef}
onKeyDown={handleKeyDown} onKeyDown={handleKeyDown}
@ -316,7 +340,9 @@ function MessageEdit({ body, onSave, onCancel }) {
autoFocus autoFocus
/> />
<div className="message__edit-btns"> <div className="message__edit-btns">
<Button type="submit" variant="primary">Save</Button> <Button type="submit" variant="primary">
Save
</Button>
<Button onClick={onCancel}>Cancel</Button> <Button onClick={onCancel}>Cancel</Button>
</div> </div>
</form> </form>
@ -334,7 +360,10 @@ function getMyEmojiEvent(emojiKey, eventId, roomTimeline) {
let rEvent = null; let rEvent = null;
rEvents?.find((rE) => { rEvents?.find((rE) => {
if (rE.getRelation() === null) return false; if (rE.getRelation() === null) return false;
if (rE.getRelation().key === emojiKey && rE.getSender() === mx.getUserId()) { if (
rE.getRelation().key === emojiKey &&
rE.getSender() === mx.getUserId()
) {
rEvent = rE; rEvent = rE;
return true; return true;
} }
@ -347,7 +376,7 @@ function toggleEmoji(roomId, eventId, emojiKey, shortcode, roomTimeline) {
const myAlreadyReactEvent = getMyEmojiEvent(emojiKey, eventId, roomTimeline); const myAlreadyReactEvent = getMyEmojiEvent(emojiKey, eventId, roomTimeline);
if (myAlreadyReactEvent) { if (myAlreadyReactEvent) {
const rId = myAlreadyReactEvent.getId(); const rId = myAlreadyReactEvent.getId();
if (rId.startsWith('~')) return; if (rId.startsWith("~")) return;
redactEvent(roomId, rId); redactEvent(roomId, rId);
return; return;
} }
@ -356,7 +385,13 @@ function toggleEmoji(roomId, eventId, emojiKey, shortcode, roomTimeline) {
function pickEmoji(e, roomId, eventId, roomTimeline) { function pickEmoji(e, roomId, eventId, roomTimeline) {
openEmojiBoard(getEventCords(e), (emoji) => { openEmojiBoard(getEventCords(e), (emoji) => {
toggleEmoji(roomId, eventId, emoji.mxc ?? emoji.unicode, emoji.shortcodes[0], roomTimeline); toggleEmoji(
roomId,
eventId,
emoji.mxc ?? emoji.unicode,
emoji.shortcodes[0],
roomTimeline
);
e.target.click(); e.target.click();
}); });
} }
@ -368,20 +403,27 @@ function genReactionMsg(userIds, reaction, shortcode) {
<React.Fragment key={userId}> <React.Fragment key={userId}>
{twemojify(getUsername(userId))} {twemojify(getUsername(userId))}
{index < userIds.length - 1 && ( {index < userIds.length - 1 && (
<span style={{ opacity: '.6' }}> <span style={{ opacity: ".6" }}>
{index === userIds.length - 2 ? ' and ' : ', '} {index === userIds.length - 2 ? " and " : ", "}
</span> </span>
)} )}
</React.Fragment> </React.Fragment>
))} ))}
<span style={{ opacity: '.6' }}>{' reacted with '}</span> <span style={{ opacity: ".6" }}>{" reacted with "}</span>
{twemojify(shortcode ? `:${shortcode}:` : reaction, { className: 'react-emoji' })} {twemojify(shortcode ? `:${shortcode}:` : reaction, {
className: "react-emoji",
})}
</> </>
); );
} }
function MessageReaction({ function MessageReaction({
reaction, shortcode, count, users, isActive, onClick, reaction,
shortcode,
count,
users,
isActive,
onClick,
}) { }) {
let customEmojiUrl = null; let customEmojiUrl = null;
if (reaction.match(/^mxc:\/\/\S+$/)) { if (reaction.match(/^mxc:\/\/\S+$/)) {
@ -390,19 +432,32 @@ function MessageReaction({
return ( return (
<Tooltip <Tooltip
className="msg__reaction-tooltip" className="msg__reaction-tooltip"
content={<Text variant="b2">{users.length > 0 ? genReactionMsg(users, reaction, shortcode) : 'Unable to load who has reacted'}</Text>} content={
<Text variant="b2">
{users.length > 0
? genReactionMsg(users, reaction, shortcode)
: "Unable to load who has reacted"}
</Text>
}
> >
<button <button
onClick={onClick} onClick={onClick}
type="button" type="button"
className={`msg__reaction${isActive ? ' msg__reaction--active' : ''}`} className={`msg__reaction${isActive ? " msg__reaction--active" : ""}`}
> >
{ {customEmojiUrl ? (
customEmojiUrl <img
? <img className="react-emoji" draggable="false" alt={shortcode ?? reaction} src={customEmojiUrl} /> className="react-emoji"
: twemojify(reaction, { className: 'react-emoji' }) draggable="false"
} alt={shortcode ?? reaction}
<Text variant="b3" className="msg__reaction-count">{count}</Text> src={customEmojiUrl}
/>
) : (
twemojify(reaction, { className: "react-emoji" })
)}
<Text variant="b3" className="msg__reaction-count">
{count}
</Text>
</button> </button>
</Tooltip> </Tooltip>
); );
@ -423,7 +478,10 @@ function MessageReactionGroup({ roomTimeline, mEvent }) {
const { roomId, room, reactionTimeline } = roomTimeline; const { roomId, room, reactionTimeline } = roomTimeline;
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const reactions = {}; const reactions = {};
const canSendReaction = room.currentState.maySendEvent('m.reaction', mx.getUserId()); const canSendReaction = room.currentState.maySendEvent(
"m.reaction",
mx.getUserId()
);
const eventReactions = reactionTimeline.get(mEvent.getId()); const eventReactions = reactionTimeline.get(mEvent.getId());
const addReaction = (key, shortcode, count, senderId, isActive) => { const addReaction = (key, shortcode, count, senderId, isActive) => {
@ -458,18 +516,18 @@ function MessageReactionGroup({ roomTimeline, mEvent }) {
}); });
} else { } else {
// Use aggregated reactions // Use aggregated reactions
const aggregatedReaction = mEvent.getServerAggregatedRelation('m.annotation')?.chunk; const aggregatedReaction =
mEvent.getServerAggregatedRelation("m.annotation")?.chunk;
if (!aggregatedReaction) return null; if (!aggregatedReaction) return null;
aggregatedReaction.forEach((reaction) => { aggregatedReaction.forEach((reaction) => {
if (reaction.type !== 'm.reaction') return; if (reaction.type !== "m.reaction") return;
addReaction(reaction.key, undefined, reaction.count, undefined, false); addReaction(reaction.key, undefined, reaction.count, undefined, false);
}); });
} }
return ( return (
<div className="message__reactions text text-b3 noselect"> <div className="message__reactions text text-b3 noselect">
{ {Object.keys(reactions).map((key) => (
Object.keys(reactions).map((key) => (
<MessageReaction <MessageReaction
key={key} key={key}
reaction={key} reaction={key}
@ -478,11 +536,16 @@ function MessageReactionGroup({ roomTimeline, mEvent }) {
users={reactions[key].users} users={reactions[key].users}
isActive={reactions[key].isActive} isActive={reactions[key].isActive}
onClick={() => { onClick={() => {
toggleEmoji(roomId, mEvent.getId(), key, reactions[key].shortcode, roomTimeline); toggleEmoji(
roomId,
mEvent.getId(),
key,
reactions[key].shortcode,
roomTimeline
);
}} }}
/> />
)) ))}
}
{canSendReaction && ( {canSendReaction && (
<IconButton <IconButton
onClick={(e) => { onClick={(e) => {
@ -503,11 +566,11 @@ MessageReactionGroup.propTypes = {
function isMedia(mE) { function isMedia(mE) {
return ( return (
mE.getContent()?.msgtype === 'm.file' mE.getContent()?.msgtype === "m.file" ||
|| mE.getContent()?.msgtype === 'm.image' mE.getContent()?.msgtype === "m.image" ||
|| mE.getContent()?.msgtype === 'm.audio' mE.getContent()?.msgtype === "m.audio" ||
|| mE.getContent()?.msgtype === 'm.video' mE.getContent()?.msgtype === "m.video" ||
|| mE.getType() === 'm.sticker' mE.getType() === "m.sticker"
); );
} }
@ -523,16 +586,20 @@ function handleOpenViewSource(mEvent, roomTimeline) {
openViewSource(editedMEvent !== undefined ? editedMEvent : mEvent); openViewSource(editedMEvent !== undefined ? editedMEvent : mEvent);
} }
const MessageOptions = React.memo(({ const MessageOptions = React.memo(({ roomTimeline, mEvent, edit, reply }) => {
roomTimeline, mEvent, edit, reply,
}) => {
const { roomId, room } = roomTimeline; const { roomId, room } = roomTimeline;
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const senderId = mEvent.getSender(); const senderId = mEvent.getSender();
const myPowerlevel = room.getMember(mx.getUserId())?.powerLevel; const myPowerlevel = room.getMember(mx.getUserId())?.powerLevel;
const canIRedact = room.currentState.hasSufficientPowerLevelFor('redact', myPowerlevel); const canIRedact = room.currentState.hasSufficientPowerLevelFor(
const canSendReaction = room.currentState.maySendEvent('m.reaction', mx.getUserId()); "redact",
myPowerlevel
);
const canSendReaction = room.currentState.maySendEvent(
"m.reaction",
mx.getUserId()
);
return ( return (
<div className="message__options"> <div className="message__options">
@ -550,7 +617,7 @@ const MessageOptions = React.memo(({
size="extra-small" size="extra-small"
tooltip="Reply" tooltip="Reply"
/> />
{(senderId === mx.getUserId() && !isMedia(mEvent)) && ( {senderId === mx.getUserId() && !isMedia(mEvent) && (
<IconButton <IconButton
onClick={() => edit(true)} onClick={() => edit(true)}
src={PencilIC} src={PencilIC}
@ -564,7 +631,9 @@ const MessageOptions = React.memo(({
<MenuHeader>Options</MenuHeader> <MenuHeader>Options</MenuHeader>
<MenuItem <MenuItem
iconSrc={TickMarkIC} iconSrc={TickMarkIC}
onClick={() => openReadReceipts(roomId, roomTimeline.getEventReaders(mEvent))} onClick={() =>
openReadReceipts(roomId, roomTimeline.getEventReaders(mEvent))
}
> >
Read receipts Read receipts
</MenuItem> </MenuItem>
@ -582,10 +651,10 @@ const MessageOptions = React.memo(({
iconSrc={BinIC} iconSrc={BinIC}
onClick={async () => { onClick={async () => {
const isConfirmed = await confirmDialog( const isConfirmed = await confirmDialog(
'Delete message', "Delete message",
'Are you sure that you want to delete this message?', "Are you sure that you want to delete this message?",
'Delete', "Delete",
'danger', "danger"
); );
if (!isConfirmed) return; if (!isConfirmed) return;
redactEvent(roomId, mEvent.getId()); redactEvent(roomId, mEvent.getId());
@ -619,28 +688,30 @@ MessageOptions.propTypes = {
function genMediaContent(mE) { function genMediaContent(mE) {
const mx = initMatrix.matrixClient; const mx = initMatrix.matrixClient;
const mContent = mE.getContent(); const mContent = mE.getContent();
if (!mContent || !mContent.body) return <span style={{ color: 'var(--bg-danger)' }}>Malformed event</span>; if (!mContent || !mContent.body)
return <span style={{ color: "var(--bg-danger)" }}>Malformed event</span>;
let mediaMXC = mContent?.url; let mediaMXC = mContent?.url;
const isEncryptedFile = typeof mediaMXC === 'undefined'; const isEncryptedFile = typeof mediaMXC === "undefined";
if (isEncryptedFile) mediaMXC = mContent?.file?.url; if (isEncryptedFile) mediaMXC = mContent?.file?.url;
let thumbnailMXC = mContent?.info?.thumbnail_url; let thumbnailMXC = mContent?.info?.thumbnail_url;
if (typeof mediaMXC === 'undefined' || mediaMXC === '') return <span style={{ color: 'var(--bg-danger)' }}>Malformed event</span>; if (typeof mediaMXC === "undefined" || mediaMXC === "")
return <span style={{ color: "var(--bg-danger)" }}>Malformed event</span>;
let msgType = mE.getContent()?.msgtype; let msgType = mE.getContent()?.msgtype;
const safeMimetype = getBlobSafeMimeType(mContent.info?.mimetype); const safeMimetype = getBlobSafeMimeType(mContent.info?.mimetype);
if (mE.getType() === 'm.sticker') { if (mE.getType() === "m.sticker") {
msgType = 'm.sticker'; msgType = "m.sticker";
} else if (safeMimetype === 'application/octet-stream') { } else if (safeMimetype === "application/octet-stream") {
msgType = 'm.file'; msgType = "m.file";
} }
const blurhash = mContent?.info?.['xyz.amorgan.blurhash']; const blurhash = mContent?.info?.["xyz.amorgan.blurhash"];
switch (msgType) { switch (msgType) {
case 'm.file': case "m.file":
return ( return (
<Media.File <Media.File
name={mContent.body} name={mContent.body}
@ -649,30 +720,34 @@ function genMediaContent(mE) {
file={mContent.file || null} file={mContent.file || null}
/> />
); );
case 'm.image': case "m.image":
return ( return (
<Media.Image <Media.Image
name={mContent.body} name={mContent.body}
width={typeof mContent.info?.w === 'number' ? mContent.info?.w : null} width={typeof mContent.info?.w === "number" ? mContent.info?.w : null}
height={typeof mContent.info?.h === 'number' ? mContent.info?.h : null} height={
typeof mContent.info?.h === "number" ? mContent.info?.h : null
}
link={mx.mxcUrlToHttp(mediaMXC)} link={mx.mxcUrlToHttp(mediaMXC)}
file={isEncryptedFile ? mContent.file : null} file={isEncryptedFile ? mContent.file : null}
type={mContent.info?.mimetype} type={mContent.info?.mimetype}
blurhash={blurhash} blurhash={blurhash}
/> />
); );
case 'm.sticker': case "m.sticker":
return ( return (
<Media.Sticker <Media.Sticker
name={mContent.body} name={mContent.body}
width={typeof mContent.info?.w === 'number' ? mContent.info?.w : null} width={typeof mContent.info?.w === "number" ? mContent.info?.w : null}
height={typeof mContent.info?.h === 'number' ? mContent.info?.h : null} height={
typeof mContent.info?.h === "number" ? mContent.info?.h : null
}
link={mx.mxcUrlToHttp(mediaMXC)} link={mx.mxcUrlToHttp(mediaMXC)}
file={isEncryptedFile ? mContent.file : null} file={isEncryptedFile ? mContent.file : null}
type={mContent.info?.mimetype} type={mContent.info?.mimetype}
/> />
); );
case 'm.audio': case "m.audio":
return ( return (
<Media.Audio <Media.Audio
name={mContent.body} name={mContent.body}
@ -681,34 +756,38 @@ function genMediaContent(mE) {
file={mContent.file || null} file={mContent.file || null}
/> />
); );
case 'm.video': case "m.video":
if (typeof thumbnailMXC === 'undefined') { if (typeof thumbnailMXC === "undefined") {
thumbnailMXC = mContent.info?.thumbnail_file?.url || null; thumbnailMXC = mContent.info?.thumbnail_file?.url || null;
} }
return ( return (
<Media.Video <Media.Video
name={mContent.body} name={mContent.body}
link={mx.mxcUrlToHttp(mediaMXC)} link={mx.mxcUrlToHttp(mediaMXC)}
thumbnail={thumbnailMXC === null ? null : mx.mxcUrlToHttp(thumbnailMXC)} thumbnail={
thumbnailMXC === null ? null : mx.mxcUrlToHttp(thumbnailMXC)
}
thumbnailFile={isEncryptedFile ? mContent.info?.thumbnail_file : null} thumbnailFile={isEncryptedFile ? mContent.info?.thumbnail_file : null}
thumbnailType={mContent.info?.thumbnail_info?.mimetype || null} thumbnailType={mContent.info?.thumbnail_info?.mimetype || null}
width={typeof mContent.info?.w === 'number' ? mContent.info?.w : null} width={typeof mContent.info?.w === "number" ? mContent.info?.w : null}
height={typeof mContent.info?.h === 'number' ? mContent.info?.h : null} height={
typeof mContent.info?.h === "number" ? mContent.info?.h : null
}
file={isEncryptedFile ? mContent.file : null} file={isEncryptedFile ? mContent.file : null}
type={mContent.info?.mimetype} type={mContent.info?.mimetype}
blurhash={blurhash} blurhash={blurhash}
/> />
); );
default: default:
return <span style={{ color: 'var(--bg-danger)' }}>Malformed event</span>; return <span style={{ color: "var(--bg-danger)" }}>Malformed event</span>;
} }
} }
function getEditedBody(editedMEvent) { function getEditedBody(editedMEvent) {
const newContent = editedMEvent.getContent()['m.new_content']; const newContent = editedMEvent.getContent()["m.new_content"];
if (typeof newContent === 'undefined') return [null, false, null]; if (typeof newContent === "undefined") return [null, false, null];
const isCustomHTML = newContent.format === 'org.matrix.custom.html'; const isCustomHTML = newContent.format === "org.matrix.custom.html";
const parsedContent = parseReply(newContent.body); const parsedContent = parseReply(newContent.body);
if (parsedContent === null) { if (parsedContent === null) {
return [newContent.body, isCustomHTML, newContent.formatted_body ?? null]; return [newContent.body, isCustomHTML, newContent.formatted_body ?? null];
@ -717,22 +796,39 @@ function getEditedBody(editedMEvent) {
} }
function Message({ function Message({
mEvent, isBodyOnly, roomTimeline, mEvent,
focus, fullTime, isEdit, setEdit, cancelEdit, isBodyOnly,
roomTimeline,
focus,
fullTime,
isEdit,
setEdit,
cancelEdit,
}) { }) {
const roomId = mEvent.getRoomId(); const roomId = mEvent.getRoomId();
const { editedTimeline, reactionTimeline } = roomTimeline ?? {}; const { editedTimeline, reactionTimeline } = roomTimeline ?? {};
const className = ['message', (isBodyOnly ? 'message--body-only' : 'message--full')]; const className = [
if (focus) className.push('message--focus'); "message",
isBodyOnly ? "message--body-only" : "message--full",
];
if (focus) className.push("message--focus");
const content = mEvent.getContent(); const content = mEvent.getContent();
const eventId = mEvent.getId(); const eventId = mEvent.getId();
const msgType = content?.msgtype; const msgType = content?.msgtype;
const senderId = mEvent.getSender(); const senderId = mEvent.getSender();
let { body } = content; let { body } = content;
const username = mEvent.sender ? getUsernameOfRoomMember(mEvent.sender) : getUsername(senderId); const username = mEvent.sender
const avatarSrc = mEvent.sender?.getAvatarUrl(initMatrix.matrixClient.baseUrl, 36, 36, 'crop') ?? null; ? getUsernameOfRoomMember(mEvent.sender)
let isCustomHTML = content.format === 'org.matrix.custom.html'; : getUsername(senderId);
const avatarSrc =
mEvent.sender?.getAvatarUrl(
initMatrix.matrixClient.baseUrl,
36,
36,
"crop"
) ?? null;
let isCustomHTML = content.format === "org.matrix.custom.html";
let customHTML = isCustomHTML ? content.formatted_body : null; let customHTML = isCustomHTML ? content.formatted_body : null;
const edit = useCallback(() => { const edit = useCallback(() => {
@ -742,11 +838,12 @@ function Message({
replyTo(senderId, mEvent.getId(), body, customHTML); replyTo(senderId, mEvent.getId(), body, customHTML);
}, [body, customHTML]); }, [body, customHTML]);
if (msgType === 'm.emote') className.push('message--type-emote'); if (msgType === "m.emote") className.push("message--type-emote");
const isEdited = roomTimeline ? editedTimeline.has(eventId) : false; const isEdited = roomTimeline ? editedTimeline.has(eventId) : false;
const haveReactions = roomTimeline const haveReactions = roomTimeline
? reactionTimeline.has(eventId) || !!mEvent.getServerAggregatedRelation('m.annotation') ? reactionTimeline.has(eventId) ||
!!mEvent.getServerAggregatedRelation("m.annotation")
: false; : false;
const isReply = !!mEvent.replyEventId; const isReply = !!mEvent.replyEventId;
@ -761,22 +858,20 @@ function Message({
customHTML = trimHTMLReply(customHTML); customHTML = trimHTMLReply(customHTML);
} }
if (typeof body !== 'string') body = ''; if (typeof body !== "string") body = "";
return ( return (
<div className={className.join(' ')}> <div className={className.join(" ")}>
{ {isBodyOnly ? (
isBodyOnly <div className="message__avatar-container" />
? <div className="message__avatar-container" /> ) : (
: (
<MessageAvatar <MessageAvatar
roomId={roomId} roomId={roomId}
avatarSrc={avatarSrc} avatarSrc={avatarSrc}
userId={senderId} userId={senderId}
username={username} username={username}
/> />
) )}
}
<div className="message__main-container"> <div className="message__main-container">
{!isBodyOnly && ( {!isBodyOnly && (
<MessageHeader <MessageHeader
@ -796,19 +891,27 @@ function Message({
<MessageBody <MessageBody
senderName={username} senderName={username}
isCustomHTML={isCustomHTML} isCustomHTML={isCustomHTML}
body={isMedia(mEvent) ? genMediaContent(mEvent) : customHTML ?? body} body={
isMedia(mEvent) ? genMediaContent(mEvent) : customHTML ?? body
}
msgType={msgType} msgType={msgType}
isEdited={isEdited} isEdited={isEdited}
/> />
)} )}
{isEdit && ( {isEdit && (
<MessageEdit <MessageEdit
body={(customHTML body={
? html(customHTML, { kind: 'edit', onlyPlain: true }).plain customHTML
: plain(body, { kind: 'edit', onlyPlain: true }).plain)} ? html(customHTML, { kind: "edit", onlyPlain: true }).plain
: plain(body, { kind: "edit", onlyPlain: true }).plain
}
onSave={(newBody, oldBody) => { onSave={(newBody, oldBody) => {
if (newBody !== oldBody) { if (newBody !== oldBody) {
initMatrix.roomsInput.sendEditedMessage(roomId, mEvent, newBody); initMatrix.roomsInput.sendEditedMessage(
roomId,
mEvent,
newBody
);
} }
cancelEdit(); cancelEdit();
}} }}

Some files were not shown because too many files have changed in this diff Show more