Compare commits
70 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d380453a4 | ||
|
|
ba629f1764 | ||
|
|
f2edcaff85 | ||
|
|
6d358d4087 | ||
|
|
46dd50a744 | ||
|
|
3c2058f0e1 | ||
|
|
c22c407ee5 | ||
|
|
1ed1dfc78a | ||
|
|
5797a1d8e5 | ||
|
|
6d5d40b8e3 | ||
|
|
90c6b18cbb | ||
|
|
ecb7d5ef10 | ||
|
|
e2b347c783 | ||
|
|
88a988d876 | ||
|
|
fbeecc0479 | ||
|
|
413188c995 | ||
|
|
77818f9342 | ||
|
|
c9ec161ccc | ||
|
|
20443f8a4d | ||
|
|
299ceac557 | ||
|
|
9365e5bfb9 | ||
|
|
3e75841a83 | ||
|
|
74b8a0f10f | ||
|
|
c291729ed6 | ||
|
|
a70245a3b1 | ||
|
|
dde022d179 | ||
|
|
0d12c64c47 | ||
|
|
27d0a88b36 | ||
|
|
ca55141276 | ||
|
|
e20b9d054d | ||
|
|
c1e3645d57 | ||
|
|
50db137dea | ||
|
|
5b109c2b79 | ||
|
|
25b7093302 | ||
|
|
38cbb87a62 | ||
|
|
0c0a978886 | ||
|
|
fb5f368894 | ||
|
|
9454ffd1af | ||
|
|
16f35d9a34 | ||
|
|
bb6a64790d | ||
|
|
b9378118dd | ||
|
|
b6485f91ae | ||
|
|
e1e8ca9633 | ||
|
|
72f476a750 | ||
|
|
f897809202 | ||
|
|
647d085c5f | ||
|
|
9d0f99c509 | ||
|
|
fd25a23d91 | ||
|
|
7fdf165ff3 | ||
|
|
b3e27da26d | ||
|
|
2479dc4096 | ||
|
|
7e7a5e692e | ||
|
|
f628a6c3d6 | ||
|
|
5b0f95fed9 | ||
|
|
6aa98d5eac | ||
|
|
8e1fe9558e | ||
|
|
38c3e53ce7 | ||
|
|
9627766f7d | ||
|
|
57697142a2 | ||
|
|
beb32755a3 | ||
|
|
cb6e71e544 | ||
|
|
1487dcbadc | ||
|
|
a4b27fdeab | ||
|
|
1137c11c59 | ||
|
|
14cd84dab7 | ||
|
|
b5c5cd9586 | ||
|
|
85cc4cb8f7 | ||
|
|
cf6732fb29 | ||
|
|
1207f5abad | ||
|
|
6e9394ec7a |
32
.github/workflows/build-pull-request.yml
vendored
Normal file
32
.github/workflows/build-pull-request.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
name: 'Build PR'
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: ['opened', 'synchronize']
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
PR_NUMBER: ${{github.event.number}}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build
|
||||||
|
run: npm install && npm run build
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: previewbuild
|
||||||
|
path: dist
|
||||||
|
retention-days: 1
|
||||||
|
- uses: actions/github-script@v3.1.0
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
var fs = require('fs');
|
||||||
|
fs.writeFileSync('${{github.workspace}}/pr.json', JSON.stringify(context.payload.pull_request));
|
||||||
|
- name: Upload PR Info
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pr.json
|
||||||
|
path: pr.json
|
||||||
|
retention-days: 1
|
||||||
78
.github/workflows/deploy-pull-request.yml
vendored
Normal file
78
.github/workflows/deploy-pull-request.yml
vendored
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
name: Upload Preview Build to Netlify
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Build PR"]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: >
|
||||||
|
${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
|
steps:
|
||||||
|
# There's a 'download artifact' action but it hasn't been updated for the
|
||||||
|
# workflow_run action (https://github.com/actions/download-artifact/issues/60)
|
||||||
|
# so instead we get this mess:
|
||||||
|
- name: 'Download artifact'
|
||||||
|
uses: actions/github-script@v3.1.0
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
var artifacts = await github.actions.listWorkflowRunArtifacts({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
run_id: ${{github.event.workflow_run.id }},
|
||||||
|
});
|
||||||
|
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
||||||
|
return artifact.name == "previewbuild"
|
||||||
|
})[0];
|
||||||
|
var download = await github.actions.downloadArtifact({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
artifact_id: matchArtifact.id,
|
||||||
|
archive_format: 'zip',
|
||||||
|
});
|
||||||
|
var fs = require('fs');
|
||||||
|
fs.writeFileSync('${{github.workspace}}/previewbuild.zip', Buffer.from(download.data));
|
||||||
|
var prInfoArtifact = artifacts.data.artifacts.filter((artifact) => {
|
||||||
|
return artifact.name == "pr.json"
|
||||||
|
})[0];
|
||||||
|
var download = await github.actions.downloadArtifact({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
artifact_id: prInfoArtifact.id,
|
||||||
|
archive_format: 'zip',
|
||||||
|
});
|
||||||
|
var fs = require('fs');
|
||||||
|
fs.writeFileSync('${{github.workspace}}/pr.json.zip', Buffer.from(download.data));
|
||||||
|
- name: Extract Artifacts
|
||||||
|
run: unzip -d dist previewbuild.zip && rm previewbuild.zip && unzip pr.json.zip && rm pr.json.zip
|
||||||
|
- name: 'Read PR Info'
|
||||||
|
id: readctx
|
||||||
|
uses: actions/github-script@v3.1.0
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
var fs = require('fs');
|
||||||
|
var pr = JSON.parse(fs.readFileSync('${{github.workspace}}/pr.json'));
|
||||||
|
console.log(`::set-output name=prnumber::${pr.number}`);
|
||||||
|
- name: Deploy to Netlify
|
||||||
|
id: netlify
|
||||||
|
uses: nwtgck/actions-netlify@v1.2
|
||||||
|
with:
|
||||||
|
publish-dir: dist
|
||||||
|
deploy-message: "Deploy from GitHub Actions"
|
||||||
|
# These don't work because we're in workflow_run
|
||||||
|
enable-pull-request-comment: false
|
||||||
|
enable-commit-comment: false
|
||||||
|
env:
|
||||||
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE3_ID }}
|
||||||
|
timeout-minutes: 1
|
||||||
|
- name: Edit PR Description
|
||||||
|
uses: velas/pr-description@v1.0.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
pull-request-number: ${{ steps.readctx.outputs.prnumber }}
|
||||||
|
description-message: |
|
||||||
|
Preview: ${{ steps.netlify.outputs.deploy-url }}
|
||||||
|
⚠️ Do you trust the author of this PR? Maybe this build will steal your keys or give you malware. Exercise caution. Use test accounts.
|
||||||
2
.github/workflows/netlify-dev.yaml
vendored
2
.github/workflows/netlify-dev.yaml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: jsmrcaga/action-netlify-deploy@master
|
- uses: jsmrcaga/action-netlify-deploy@9cc40dcd499dd1511b3cc99912444f8970411cc6
|
||||||
with:
|
with:
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE2_ID }}
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE2_ID }}
|
||||||
|
|||||||
2
.github/workflows/netlify-prod.yaml
vendored
2
.github/workflows/netlify-prod.yaml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: jsmrcaga/action-netlify-deploy@master
|
- uses: jsmrcaga/action-netlify-deploy@9cc40dcd499dd1511b3cc99912444f8970411cc6
|
||||||
with:
|
with:
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||||
|
|||||||
30
.github/workflows/pull-request.yml
vendored
30
.github/workflows/pull-request.yml
vendored
@@ -1,30 +0,0 @@
|
|||||||
name: 'Netlify Preview Deploy'
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types: ['opened', 'synchronize']
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
name: "Deploy to Netlify"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- uses: jsmrcaga/action-netlify-deploy@master
|
|
||||||
with:
|
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE3_ID }}
|
|
||||||
BUILD_DIRECTORY: "dist"
|
|
||||||
- name: Post on PR
|
|
||||||
uses: nwtgck/actions-netlify@v1.1
|
|
||||||
with:
|
|
||||||
publish-dir: "dist"
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
deploy-message: "Deploy from GitHub Actions"
|
|
||||||
enable-pull-request-comment: true
|
|
||||||
enable-commit-comment: false
|
|
||||||
overwrites-pull-request-comment: true
|
|
||||||
env:
|
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE3_ID }}
|
|
||||||
@@ -10,7 +10,7 @@ All types of contributions are encouraged and valued. See the [Table of Contents
|
|||||||
> - 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
|
||||||
> - Mention the project at local meetups and tell your friends/colleagues
|
> - Mention the project at local meetups and tell your friends/colleagues
|
||||||
> - [Donate to us](https://liberapay.com/ajbura/donate)
|
> - [Donate to us](https://cinny.in/#sponsor)
|
||||||
|
|
||||||
<!-- omit in toc -->
|
<!-- omit in toc -->
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ To set default Homeserver on login and register page, place a customized [`confi
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright (c) 2021 Ajay Bura (ajbura) and other contributors
|
Copyright (c) 2021 Ajay Bura (ajbura) and contributors
|
||||||
|
|
||||||
Code licensed under the MIT License: <http://opensource.org/licenses/MIT>
|
Code licensed under the MIT License: <http://opensource.org/licenses/MIT>
|
||||||
|
|
||||||
|
|||||||
2347
package-lock.json
generated
2347
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
15
package.json
15
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cinny",
|
"name": "cinny",
|
||||||
"version": "1.5.0",
|
"version": "1.6.0",
|
||||||
"description": "Yet another matrix client",
|
"description": "Yet another matrix client",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -15,18 +15,18 @@
|
|||||||
"author": "Ajay Bura",
|
"author": "Ajay Bura",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.4.tgz",
|
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.8.tgz",
|
||||||
"@tippyjs/react": "^4.2.5",
|
"@tippyjs/react": "^4.2.5",
|
||||||
"babel-polyfill": "^6.26.0",
|
"babel-polyfill": "^6.26.0",
|
||||||
"browser-encrypt-attachment": "^0.3.0",
|
"browser-encrypt-attachment": "^0.3.0",
|
||||||
"dateformat": "^4.5.1",
|
"dateformat": "^4.5.1",
|
||||||
"emojibase-data": "^6.2.0",
|
"emojibase-data": "^6.2.0",
|
||||||
|
"file-saver": "^2.0.5",
|
||||||
"flux": "^4.0.1",
|
"flux": "^4.0.1",
|
||||||
"formik": "^2.2.9",
|
"formik": "^2.2.9",
|
||||||
"html-react-parser": "^1.2.7",
|
"html-react-parser": "^1.2.7",
|
||||||
"linkify-react": "^3.0.3",
|
"linkifyjs": "^2.1.9",
|
||||||
"linkifyjs": "^3.0.3",
|
"matrix-js-sdk": "^15.2.1",
|
||||||
"matrix-js-sdk": "^12.4.1",
|
|
||||||
"micromark": "^3.0.3",
|
"micromark": "^3.0.3",
|
||||||
"micromark-extension-gfm": "^1.0.0",
|
"micromark-extension-gfm": "^1.0.0",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
@@ -34,11 +34,8 @@
|
|||||||
"react-autosize-textarea": "^7.1.0",
|
"react-autosize-textarea": "^7.1.0",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
"react-google-recaptcha": "^2.1.0",
|
"react-google-recaptcha": "^2.1.0",
|
||||||
"react-markdown": "^6.0.1",
|
|
||||||
"react-modal": "^3.13.1",
|
"react-modal": "^3.13.1",
|
||||||
"react-router-dom": "^5.2.0",
|
"sanitize-html": "^2.5.3",
|
||||||
"react-syntax-highlighter": "^15.4.3",
|
|
||||||
"remark-gfm": "^1.0.0",
|
|
||||||
"tippy.js": "^6.3.1",
|
"tippy.js": "^6.3.1",
|
||||||
"twemoji": "^13.1.0"
|
"twemoji": "^13.1.0"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0 user-scalable=no">
|
||||||
<link href="https://api.fontshare.com/css?f[]=supreme@300,301,400,401,500,501,700,701&display=swap" rel="stylesheet">
|
<link href="https://api.fontshare.com/css?f[]=supreme@300,301,400,401,500,501,700,701&display=swap" rel="stylesheet">
|
||||||
<title>Cinny</title>
|
<title>Cinny</title>
|
||||||
<meta name="name" content="Cinny">
|
<meta name="name" content="Cinny">
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import React, { useState, useEffect } from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './Avatar.scss';
|
import './Avatar.scss';
|
||||||
|
|
||||||
|
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';
|
||||||
|
|
||||||
@@ -29,7 +31,11 @@ function Avatar({
|
|||||||
{
|
{
|
||||||
iconSrc !== null
|
iconSrc !== null
|
||||||
? <RawIcon size={size} src={iconSrc} />
|
? <RawIcon size={size} src={iconSrc} />
|
||||||
: text !== null && <Text variant={textSize}>{text}</Text>
|
: text !== null && (
|
||||||
|
<Text variant={textSize}>
|
||||||
|
{twemojify([...text][0])}
|
||||||
|
</Text>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
height: var(--av-extra-small);
|
height: var(--av-extra-small);
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
> img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import Text from '../text/Text';
|
|||||||
|
|
||||||
const IconButton = React.forwardRef(({
|
const IconButton = React.forwardRef(({
|
||||||
variant, size, type,
|
variant, size, type,
|
||||||
tooltip, tooltipPlacement, src, onClick,
|
tooltip, tooltipPlacement, src, onClick, tabIndex,
|
||||||
}, ref) => {
|
}, ref) => {
|
||||||
const btn = (
|
const btn = (
|
||||||
<button
|
<button
|
||||||
@@ -19,6 +19,7 @@ const IconButton = React.forwardRef(({
|
|||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
// eslint-disable-next-line react/button-has-type
|
// eslint-disable-next-line react/button-has-type
|
||||||
type={type}
|
type={type}
|
||||||
|
tabIndex={tabIndex}
|
||||||
>
|
>
|
||||||
<RawIcon size={size} src={src} />
|
<RawIcon size={size} src={src} />
|
||||||
</button>
|
</button>
|
||||||
@@ -41,16 +42,18 @@ IconButton.defaultProps = {
|
|||||||
tooltip: null,
|
tooltip: null,
|
||||||
tooltipPlacement: 'top',
|
tooltipPlacement: 'top',
|
||||||
onClick: null,
|
onClick: null,
|
||||||
|
tabIndex: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
IconButton.propTypes = {
|
IconButton.propTypes = {
|
||||||
variant: PropTypes.oneOf(['surface', 'positive', 'caution', 'danger']),
|
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']),
|
||||||
size: PropTypes.oneOf(['normal', 'small', 'extra-small']),
|
size: PropTypes.oneOf(['normal', 'small', 'extra-small']),
|
||||||
type: PropTypes.oneOf(['button', 'submit', 'reset']),
|
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,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default IconButton;
|
export default IconButton;
|
||||||
|
|||||||
@@ -29,6 +29,13 @@
|
|||||||
@include focus(var(--bg-surface-hover));
|
@include focus(var(--bg-surface-hover));
|
||||||
@include state.active(var(--bg-surface-active));
|
@include state.active(var(--bg-surface-active));
|
||||||
}
|
}
|
||||||
|
.ic-btn-primary {
|
||||||
|
@include color(var(--ic-primary-normal));
|
||||||
|
@include state.hover(var(--bg-primary-hover));
|
||||||
|
@include focus(var(--bg-primary-hover));
|
||||||
|
@include state.active(var(--bg-primary-active));
|
||||||
|
background-color: var(--bg-primary);
|
||||||
|
}
|
||||||
.ic-btn-positive {
|
.ic-btn-positive {
|
||||||
@include color(var(--ic-positive-normal));
|
@include color(var(--ic-positive-normal));
|
||||||
@include state.hover(var(--bg-positive-hover));
|
@include state.hover(var(--bg-positive-hover));
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ function MenuHeader({ children }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
MenuHeader.propTypes = {
|
MenuHeader.propTypes = {
|
||||||
children: PropTypes.string.isRequired,
|
children: PropTypes.node.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function MenuItem({
|
function MenuItem({
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
.context-menu__item {
|
.context-menu__item {
|
||||||
button[class^="btn"] {
|
button[class^="btn"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: start;
|
justify-content: flex-start;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|||||||
@@ -4,26 +4,25 @@ import './Divider.scss';
|
|||||||
|
|
||||||
import Text from '../text/Text';
|
import Text from '../text/Text';
|
||||||
|
|
||||||
function Divider({ text, variant }) {
|
function Divider({ text, variant, align }) {
|
||||||
const dividerClass = ` divider--${variant}`;
|
const dividerClass = ` divider--${variant} divider--${align}`;
|
||||||
return (
|
return (
|
||||||
<div className={`divider${dividerClass}`}>
|
<div className={`divider${dividerClass}`}>
|
||||||
{text !== false && <Text className="divider__text" variant="b3">{text}</Text>}
|
{text !== null && <Text className="divider__text" variant="b3">{text}</Text>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Divider.defaultProps = {
|
Divider.defaultProps = {
|
||||||
text: false,
|
text: null,
|
||||||
variant: 'surface',
|
variant: 'surface',
|
||||||
|
align: 'center',
|
||||||
};
|
};
|
||||||
|
|
||||||
Divider.propTypes = {
|
Divider.propTypes = {
|
||||||
text: PropTypes.oneOfType([
|
text: PropTypes.string,
|
||||||
PropTypes.string,
|
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']),
|
||||||
PropTypes.bool,
|
align: PropTypes.oneOf(['left', 'center', 'right']),
|
||||||
]),
|
|
||||||
variant: PropTypes.oneOf(['surface', 'primary', 'caution', 'danger']),
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Divider;
|
export default Divider;
|
||||||
|
|||||||
@@ -1,68 +1,69 @@
|
|||||||
.divider {
|
.divider-line {
|
||||||
--local-divider-color: var(--bg-surface-border);
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
flex: 1;
|
||||||
|
border-bottom: 1px solid var(--local-divider-color);
|
||||||
|
opacity: var(--local-divider-opacity);
|
||||||
|
}
|
||||||
|
|
||||||
margin: var(--sp-extra-tight) var(--sp-normal);
|
.divider {
|
||||||
margin-right: var(--sp-extra-tight);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: relative;
|
|
||||||
|
|
||||||
&::before {
|
&--center::before,
|
||||||
content: "";
|
&--right::before {
|
||||||
display: inline-block;
|
@extend .divider-line;
|
||||||
flex: 1;
|
}
|
||||||
margin-left: calc(var(--av-small) + var(--sp-tight));
|
&--center::after,
|
||||||
border-bottom: 1px solid var(--local-divider-color);
|
&--left::after {
|
||||||
opacity: 0.18;
|
@extend .divider-line;
|
||||||
|
|
||||||
[dir=rtl] & {
|
|
||||||
margin: {
|
|
||||||
left: 0;
|
|
||||||
right: calc(var(--av-small) + var(--sp-tight));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
margin-left: var(--sp-normal);
|
padding: 2px var(--sp-extra-tight);
|
||||||
}
|
border-radius: calc(var(--bo-radius) / 2);
|
||||||
|
font-weight: 500;
|
||||||
[dir=rtl] & {
|
|
||||||
margin: {
|
|
||||||
left: var(--sp-extra-tight);
|
|
||||||
right: var(--sp-normal);
|
|
||||||
}
|
|
||||||
|
|
||||||
&__text {
|
|
||||||
margin: {
|
|
||||||
left: 0;
|
|
||||||
right: var(--sp-normal);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.divider--surface {
|
.divider--surface {
|
||||||
--local-divider-color: var(--tc-surface-low);
|
--local-divider-color: var(--bg-divider);
|
||||||
|
--local-divider-opacity: 1;
|
||||||
|
|
||||||
.divider__text {
|
.divider__text {
|
||||||
color: var(--tc-surface-low);
|
color: var(--tc-surface-low);
|
||||||
|
border: 1px solid var(--bg-divider);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.divider--primary {
|
.divider--primary {
|
||||||
--local-divider-color: var(--bg-primary);
|
--local-divider-color: var(--bg-primary);
|
||||||
|
--local-divider-opacity: .8;
|
||||||
.divider__text {
|
.divider__text {
|
||||||
color: var(--bg-primary);
|
color: var(--tc-primary-high);
|
||||||
|
background-color: var(--bg-primary);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.divider--positive {
|
||||||
|
--local-divider-color: var(--bg-positive);
|
||||||
|
--local-divider-opacity: .8;
|
||||||
|
.divider__text {
|
||||||
|
color: var(--bg-surface);
|
||||||
|
background-color: var(--bg-positive);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.divider--danger {
|
.divider--danger {
|
||||||
--local-divider-color: var(--bg-danger);
|
--local-divider-color: var(--bg-danger);
|
||||||
|
--local-divider-opacity: .8;
|
||||||
.divider__text {
|
.divider__text {
|
||||||
color: var(--bg-danger);
|
color: var(--bg-surface);
|
||||||
|
background-color: var(--bg-danger);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.divider--caution {
|
.divider--caution {
|
||||||
--local-divider-color: var(--bg-caution);
|
--local-divider-color: var(--bg-caution);
|
||||||
|
--local-divider-opacity: .8;
|
||||||
.divider__text {
|
.divider__text {
|
||||||
color: var(--bg-caution);
|
color: var(--bg-surface);
|
||||||
|
background-color: var(--bg-caution);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ import './RawModal.scss';
|
|||||||
|
|
||||||
import Modal from 'react-modal';
|
import Modal from 'react-modal';
|
||||||
|
|
||||||
|
import navigation from '../../../client/state/navigation';
|
||||||
|
|
||||||
Modal.setAppElement('#root');
|
Modal.setAppElement('#root');
|
||||||
|
|
||||||
function RawModal({
|
function RawModal({
|
||||||
@@ -23,6 +25,9 @@ function RawModal({
|
|||||||
default:
|
default:
|
||||||
modalClass += 'raw-modal__small ';
|
modalClass += 'raw-modal__small ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
navigation.setIsRawModalVisible(isOpen);
|
||||||
|
|
||||||
const modalOverlayClass = (overlayClassName !== null) ? `${overlayClassName} ` : '';
|
const modalOverlayClass = (overlayClassName !== null) ? `${overlayClassName} ` : '';
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
|
|||||||
@@ -32,7 +32,8 @@
|
|||||||
|
|
||||||
@mixin scroll {
|
@mixin scroll {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
overscroll-behavior: none;
|
// Below code stop scroll when x-scrollable content come in timeline
|
||||||
|
// overscroll-behavior: none;
|
||||||
@extend .firefox-scrollbar;
|
@extend .firefox-scrollbar;
|
||||||
@extend .webkit-scrollbar;
|
@extend .webkit-scrollbar;
|
||||||
@extend .webkit-scrollbar-track;
|
@extend .webkit-scrollbar-track;
|
||||||
|
|||||||
@@ -4,12 +4,26 @@
|
|||||||
font-weight: $weight;
|
font-weight: $weight;
|
||||||
letter-spacing: var(--ls-#{$type});
|
letter-spacing: var(--ls-#{$type});
|
||||||
line-height: var(--lh-#{$type});
|
line-height: var(--lh-#{$type});
|
||||||
|
|
||||||
|
& img.emoji,
|
||||||
|
& img[data-mx-emoticon] {
|
||||||
|
height: var(--fs-#{$type});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
%text {
|
%text {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color: var(--tc-surface-high);
|
color: var(--tc-surface-high);
|
||||||
|
|
||||||
|
& img.emoji,
|
||||||
|
& img[data-mx-emoticon] {
|
||||||
|
margin: 0 !important;
|
||||||
|
margin-right: 2px !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-h1 {
|
.text-h1 {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import './Tooltip.scss';
|
|||||||
import Tippy from '@tippyjs/react';
|
import Tippy from '@tippyjs/react';
|
||||||
|
|
||||||
function Tooltip({
|
function Tooltip({
|
||||||
className, placement, content, children,
|
className, placement, content, delay, children,
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<Tippy
|
<Tippy
|
||||||
@@ -14,7 +14,7 @@ function Tooltip({
|
|||||||
arrow={false}
|
arrow={false}
|
||||||
maxWidth={250}
|
maxWidth={250}
|
||||||
placement={placement}
|
placement={placement}
|
||||||
delay={[0, 0]}
|
delay={delay}
|
||||||
duration={[100, 0]}
|
duration={[100, 0]}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
@@ -25,12 +25,14 @@ function Tooltip({
|
|||||||
Tooltip.defaultProps = {
|
Tooltip.defaultProps = {
|
||||||
placement: 'top',
|
placement: 'top',
|
||||||
className: '',
|
className: '',
|
||||||
|
delay: [200, 0],
|
||||||
};
|
};
|
||||||
|
|
||||||
Tooltip.propTypes = {
|
Tooltip.propTypes = {
|
||||||
className: PropTypes.string,
|
className: PropTypes.string,
|
||||||
placement: PropTypes.string,
|
placement: PropTypes.string,
|
||||||
content: PropTypes.node.isRequired,
|
content: PropTypes.node.isRequired,
|
||||||
|
delay: PropTypes.arrayOf(PropTypes.number),
|
||||||
children: PropTypes.node.isRequired,
|
children: PropTypes.node.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
10
src/app/hooks/useForceUpdate.js
Normal file
10
src/app/hooks/useForceUpdate.js
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* eslint-disable import/prefer-default-export */
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
|
export function useForceUpdate() {
|
||||||
|
const [data, setData] = useState(null);
|
||||||
|
|
||||||
|
return [data, function forceUpdateHook() {
|
||||||
|
setData({});
|
||||||
|
}];
|
||||||
|
}
|
||||||
22
src/app/hooks/useStore.js
Normal file
22
src/app/hooks/useStore.js
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/* eslint-disable import/prefer-default-export */
|
||||||
|
import { useEffect, useRef } from 'react';
|
||||||
|
|
||||||
|
export function useStore(...args) {
|
||||||
|
const itemRef = useRef(null);
|
||||||
|
|
||||||
|
const getItem = () => itemRef.current;
|
||||||
|
|
||||||
|
const setItem = (event) => {
|
||||||
|
itemRef.current = event;
|
||||||
|
return itemRef.current;
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
itemRef.current = null;
|
||||||
|
return () => {
|
||||||
|
itemRef.current = null;
|
||||||
|
};
|
||||||
|
}, args);
|
||||||
|
|
||||||
|
return { getItem, setItem };
|
||||||
|
}
|
||||||
@@ -2,6 +2,8 @@ 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 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';
|
||||||
@@ -22,7 +24,7 @@ function Dialog({
|
|||||||
<div className="dialog__content">
|
<div className="dialog__content">
|
||||||
<Header>
|
<Header>
|
||||||
<TitleWrapper>
|
<TitleWrapper>
|
||||||
<Text variant="h2">{title}</Text>
|
<Text variant="h2">{twemojify(title)}</Text>
|
||||||
</TitleWrapper>
|
</TitleWrapper>
|
||||||
{contentOptions}
|
{contentOptions}
|
||||||
</Header>
|
</Header>
|
||||||
|
|||||||
59
src/app/molecules/following-members/FollowingMembers.jsx
Normal file
59
src/app/molecules/following-members/FollowingMembers.jsx
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
/* eslint-disable react/prop-types */
|
||||||
|
import React, { useState, useEffect } from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import './FollowingMembers.scss';
|
||||||
|
|
||||||
|
import initMatrix from '../../../client/initMatrix';
|
||||||
|
import cons from '../../../client/state/cons';
|
||||||
|
import { openReadReceipts } from '../../../client/action/navigation';
|
||||||
|
|
||||||
|
import Text from '../../atoms/text/Text';
|
||||||
|
import RawIcon from '../../atoms/system-icons/RawIcon';
|
||||||
|
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
||||||
|
|
||||||
|
import { getUsersActionJsx } from '../../organisms/room/common';
|
||||||
|
|
||||||
|
function FollowingMembers({ roomTimeline }) {
|
||||||
|
const [followingMembers, setFollowingMembers] = useState([]);
|
||||||
|
const { roomId } = roomTimeline;
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const { roomsInput } = initMatrix;
|
||||||
|
const myUserId = mx.getUserId();
|
||||||
|
|
||||||
|
const handleOnMessageSent = () => setFollowingMembers([]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const updateFollowingMembers = () => {
|
||||||
|
setFollowingMembers(roomTimeline.getLiveReaders());
|
||||||
|
};
|
||||||
|
updateFollowingMembers();
|
||||||
|
roomTimeline.on(cons.events.roomTimeline.LIVE_RECEIPT, updateFollowingMembers);
|
||||||
|
roomsInput.on(cons.events.roomsInput.MESSAGE_SENT, handleOnMessageSent);
|
||||||
|
return () => {
|
||||||
|
roomTimeline.removeListener(cons.events.roomTimeline.LIVE_RECEIPT, updateFollowingMembers);
|
||||||
|
roomsInput.removeListener(cons.events.roomsInput.MESSAGE_SENT, handleOnMessageSent);
|
||||||
|
};
|
||||||
|
}, [roomTimeline]);
|
||||||
|
|
||||||
|
const filteredM = followingMembers.filter((userId) => userId !== myUserId);
|
||||||
|
|
||||||
|
return filteredM.length !== 0 && (
|
||||||
|
<button
|
||||||
|
className="following-members"
|
||||||
|
onClick={() => openReadReceipts(roomId, followingMembers)}
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<RawIcon
|
||||||
|
size="extra-small"
|
||||||
|
src={TickMarkIC}
|
||||||
|
/>
|
||||||
|
<Text variant="b2">{getUsersActionJsx(roomId, filteredM, 'following the conversation.')}</Text>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
FollowingMembers.propTypes = {
|
||||||
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default FollowingMembers;
|
||||||
32
src/app/molecules/following-members/FollowingMembers.scss
Normal file
32
src/app/molecules/following-members/FollowingMembers.scss
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
.following-members {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 var(--sp-normal);
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
& .ic-raw {
|
||||||
|
min-width: var(--ic-extra-small);
|
||||||
|
opacity: 0.4;
|
||||||
|
margin: 0 var(--sp-extra-tight);
|
||||||
|
}
|
||||||
|
& .text {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
color: var(--tc-surface-low);
|
||||||
|
b {
|
||||||
|
color: var(--tc-surface-normal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
background-color: var(--bg-surface-hover);
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
background-color: var(--bg-surface-active);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -48,7 +48,7 @@ function ImageUpload({
|
|||||||
>
|
>
|
||||||
<Avatar
|
<Avatar
|
||||||
imageSrc={imageSrc}
|
imageSrc={imageSrc}
|
||||||
text={text.slice(0, 1)}
|
text={text}
|
||||||
bgColor={bgColor}
|
bgColor={bgColor}
|
||||||
size="large"
|
size="large"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,108 +0,0 @@
|
|||||||
import React, { useState, useEffect, useRef } from 'react';
|
|
||||||
import './ImportE2ERoomKeys.scss';
|
|
||||||
import EventEmitter from 'events';
|
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
|
||||||
import decryptMegolmKeyFile from '../../../util/decryptE2ERoomKeys';
|
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
|
||||||
import IconButton from '../../atoms/button/IconButton';
|
|
||||||
import Button from '../../atoms/button/Button';
|
|
||||||
import Input from '../../atoms/input/Input';
|
|
||||||
import Spinner from '../../atoms/spinner/Spinner';
|
|
||||||
|
|
||||||
import CirclePlusIC from '../../../../public/res/ic/outlined/circle-plus.svg';
|
|
||||||
|
|
||||||
const viewEvent = new EventEmitter();
|
|
||||||
|
|
||||||
async function tryDecrypt(file, password) {
|
|
||||||
try {
|
|
||||||
const arrayBuffer = await file.arrayBuffer();
|
|
||||||
viewEvent.emit('importing', true);
|
|
||||||
viewEvent.emit('status', 'Decrypting file...');
|
|
||||||
const keys = await decryptMegolmKeyFile(arrayBuffer, password);
|
|
||||||
|
|
||||||
viewEvent.emit('status', 'Decrypting messages...');
|
|
||||||
await initMatrix.matrixClient.importRoomKeys(JSON.parse(keys));
|
|
||||||
|
|
||||||
viewEvent.emit('status', null);
|
|
||||||
viewEvent.emit('importing', false);
|
|
||||||
} catch (e) {
|
|
||||||
viewEvent.emit('status', e.friendlyText || 'Something went wrong!');
|
|
||||||
viewEvent.emit('importing', false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function ImportE2ERoomKeys() {
|
|
||||||
const [keyFile, setKeyFile] = useState(null);
|
|
||||||
const [status, setStatus] = useState(null);
|
|
||||||
const [isImporting, setIsImporting] = useState(false);
|
|
||||||
const inputRef = useRef(null);
|
|
||||||
const passwordRef = useRef(null);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const handleIsImporting = (isImp) => setIsImporting(isImp);
|
|
||||||
const handleStatus = (msg) => setStatus(msg);
|
|
||||||
viewEvent.on('importing', handleIsImporting);
|
|
||||||
viewEvent.on('status', handleStatus);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
viewEvent.removeListener('importing', handleIsImporting);
|
|
||||||
viewEvent.removeListener('status', handleStatus);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
function importE2ERoomKeys() {
|
|
||||||
const password = passwordRef.current.value;
|
|
||||||
if (password === '' || keyFile === null) return;
|
|
||||||
if (isImporting) return;
|
|
||||||
|
|
||||||
tryDecrypt(keyFile, password);
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleFileChange(e) {
|
|
||||||
const file = e.target.files.item(0);
|
|
||||||
passwordRef.current.value = '';
|
|
||||||
setKeyFile(file);
|
|
||||||
setStatus(null);
|
|
||||||
}
|
|
||||||
function removeImportKeysFile() {
|
|
||||||
inputRef.current.value = null;
|
|
||||||
passwordRef.current.value = null;
|
|
||||||
setKeyFile(null);
|
|
||||||
setStatus(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!isImporting && status === null) {
|
|
||||||
removeImportKeysFile();
|
|
||||||
}
|
|
||||||
}, [isImporting, status]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="import-e2e-room-keys">
|
|
||||||
<input ref={inputRef} onChange={handleFileChange} style={{ display: 'none' }} type="file" />
|
|
||||||
|
|
||||||
<form className="import-e2e-room-keys__form" onSubmit={(e) => { e.preventDefault(); importE2ERoomKeys(); }}>
|
|
||||||
{ keyFile !== null && (
|
|
||||||
<div className="import-e2e-room-keys__file">
|
|
||||||
<IconButton onClick={removeImportKeysFile} src={CirclePlusIC} tooltip="Remove file" />
|
|
||||||
<Text>{keyFile.name}</Text>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{keyFile === null && <Button onClick={() => inputRef.current.click()}>Import keys</Button>}
|
|
||||||
<Input forwardRef={passwordRef} type="password" placeholder="Password" required />
|
|
||||||
<Button disabled={isImporting} variant="primary" type="submit">Decrypt</Button>
|
|
||||||
</form>
|
|
||||||
{ isImporting && status !== null && (
|
|
||||||
<div className="import-e2e-room-keys__process">
|
|
||||||
<Spinner size="small" />
|
|
||||||
<Text variant="b2">{status}</Text>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{!isImporting && status !== null && <Text className="import-e2e-room-keys__error" variant="b2">{status}</Text>}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default ImportE2ERoomKeys;
|
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
|
import './ExportE2ERoomKeys.scss';
|
||||||
|
|
||||||
|
import FileSaver from 'file-saver';
|
||||||
|
|
||||||
|
import initMatrix from '../../../client/initMatrix';
|
||||||
|
import cons from '../../../client/state/cons';
|
||||||
|
import { encryptMegolmKeyFile } from '../../../util/cryptE2ERoomKeys';
|
||||||
|
|
||||||
|
import Text from '../../atoms/text/Text';
|
||||||
|
import Button from '../../atoms/button/Button';
|
||||||
|
import Input from '../../atoms/input/Input';
|
||||||
|
import Spinner from '../../atoms/spinner/Spinner';
|
||||||
|
|
||||||
|
import { useStore } from '../../hooks/useStore';
|
||||||
|
|
||||||
|
function ExportE2ERoomKeys() {
|
||||||
|
const isMountStore = useStore();
|
||||||
|
const [status, setStatus] = useState({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: null,
|
||||||
|
type: cons.status.PRE_FLIGHT,
|
||||||
|
});
|
||||||
|
const passwordRef = useRef(null);
|
||||||
|
const confirmPasswordRef = useRef(null);
|
||||||
|
|
||||||
|
const exportE2ERoomKeys = async () => {
|
||||||
|
const password = passwordRef.current.value;
|
||||||
|
if (password !== confirmPasswordRef.current.value) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: 'Password does not match.',
|
||||||
|
type: cons.status.ERROR,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setStatus({
|
||||||
|
isOngoing: true,
|
||||||
|
msg: 'Getting keys...',
|
||||||
|
type: cons.status.IN_FLIGHT,
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
const keys = await initMatrix.matrixClient.exportRoomKeys();
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: true,
|
||||||
|
msg: 'Encrypting keys...',
|
||||||
|
type: cons.status.IN_FLIGHT,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const encKeys = await encryptMegolmKeyFile(JSON.stringify(keys), password);
|
||||||
|
const blob = new Blob([encKeys], {
|
||||||
|
type: 'text/plain;charset=us-ascii',
|
||||||
|
});
|
||||||
|
FileSaver.saveAs(blob, 'cinny-keys.txt');
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: 'Successfully exported all keys.',
|
||||||
|
type: cons.status.SUCCESS,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: e.friendlyText || 'Failed to export keys. Please try again.',
|
||||||
|
type: cons.status.ERROR,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
isMountStore.setItem(true);
|
||||||
|
return () => {
|
||||||
|
isMountStore.setItem(false);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="export-e2e-room-keys">
|
||||||
|
<form className="export-e2e-room-keys__form" onSubmit={(e) => { 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>
|
||||||
|
{ status.type === cons.status.IN_FLIGHT && (
|
||||||
|
<div className="import-e2e-room-keys__process">
|
||||||
|
<Spinner size="small" />
|
||||||
|
<Text variant="b2">{status.msg}</Text>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{status.type === cons.status.SUCCESS && <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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ExportE2ERoomKeys;
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
.export-e2e-room-keys {
|
||||||
|
margin-top: var(--sp-extra-tight);
|
||||||
|
&__form {
|
||||||
|
display: flex;
|
||||||
|
& > .input-container {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
& > *:nth-child(2) {
|
||||||
|
margin: 0 var(--sp-tight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__process {
|
||||||
|
margin-top: var(--sp-tight);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
& .text {
|
||||||
|
margin: 0 var(--sp-tight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__error {
|
||||||
|
margin-top: var(--sp-tight);
|
||||||
|
color: var(--tc-danger-high);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,133 @@
|
|||||||
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
|
import './ImportE2ERoomKeys.scss';
|
||||||
|
|
||||||
|
import initMatrix from '../../../client/initMatrix';
|
||||||
|
import cons from '../../../client/state/cons';
|
||||||
|
import { decryptMegolmKeyFile } from '../../../util/cryptE2ERoomKeys';
|
||||||
|
|
||||||
|
import Text from '../../atoms/text/Text';
|
||||||
|
import IconButton from '../../atoms/button/IconButton';
|
||||||
|
import Button from '../../atoms/button/Button';
|
||||||
|
import Input from '../../atoms/input/Input';
|
||||||
|
import Spinner from '../../atoms/spinner/Spinner';
|
||||||
|
|
||||||
|
import CirclePlusIC from '../../../../public/res/ic/outlined/circle-plus.svg';
|
||||||
|
|
||||||
|
import { useStore } from '../../hooks/useStore';
|
||||||
|
|
||||||
|
function ImportE2ERoomKeys() {
|
||||||
|
const isMountStore = useStore();
|
||||||
|
const [keyFile, setKeyFile] = useState(null);
|
||||||
|
const [status, setStatus] = useState({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: null,
|
||||||
|
type: cons.status.PRE_FLIGHT,
|
||||||
|
});
|
||||||
|
const inputRef = useRef(null);
|
||||||
|
const passwordRef = useRef(null);
|
||||||
|
|
||||||
|
async function tryDecrypt(file, password) {
|
||||||
|
try {
|
||||||
|
const arrayBuffer = await file.arrayBuffer();
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: true,
|
||||||
|
msg: 'Decrypting file...',
|
||||||
|
type: cons.status.IN_FLIGHT,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const keys = await decryptMegolmKeyFile(arrayBuffer, password);
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: true,
|
||||||
|
msg: 'Decrypting messages...',
|
||||||
|
type: cons.status.IN_FLIGHT,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
await initMatrix.matrixClient.importRoomKeys(JSON.parse(keys));
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: 'Successfully imported all keys.',
|
||||||
|
type: cons.status.SUCCESS,
|
||||||
|
});
|
||||||
|
inputRef.current.value = null;
|
||||||
|
passwordRef.current.value = null;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
if (isMountStore.getItem()) {
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: e.friendlyText || 'Failed to decrypt keys. Please try again.',
|
||||||
|
type: cons.status.ERROR,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const importE2ERoomKeys = () => {
|
||||||
|
const password = passwordRef.current.value;
|
||||||
|
if (password === '' || keyFile === null) return;
|
||||||
|
if (status.isOngoing) return;
|
||||||
|
|
||||||
|
tryDecrypt(keyFile, password);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleFileChange = (e) => {
|
||||||
|
const file = e.target.files.item(0);
|
||||||
|
passwordRef.current.value = '';
|
||||||
|
setKeyFile(file);
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: null,
|
||||||
|
type: cons.status.PRE_FLIGHT,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const removeImportKeysFile = () => {
|
||||||
|
if (status.isOngoing) return;
|
||||||
|
inputRef.current.value = null;
|
||||||
|
passwordRef.current.value = null;
|
||||||
|
setKeyFile(null);
|
||||||
|
setStatus({
|
||||||
|
isOngoing: false,
|
||||||
|
msg: null,
|
||||||
|
type: cons.status.PRE_FLIGHT,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
isMountStore.setItem(true);
|
||||||
|
return () => {
|
||||||
|
isMountStore.setItem(false);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="import-e2e-room-keys">
|
||||||
|
<input ref={inputRef} onChange={handleFileChange} style={{ display: 'none' }} type="file" />
|
||||||
|
|
||||||
|
<form className="import-e2e-room-keys__form" onSubmit={(e) => { e.preventDefault(); importE2ERoomKeys(); }}>
|
||||||
|
{ keyFile !== null && (
|
||||||
|
<div className="import-e2e-room-keys__file">
|
||||||
|
<IconButton onClick={removeImportKeysFile} src={CirclePlusIC} tooltip="Remove file" />
|
||||||
|
<Text>{keyFile.name}</Text>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{keyFile === null && <Button onClick={() => inputRef.current.click()}>Import keys</Button>}
|
||||||
|
<Input forwardRef={passwordRef} type="password" placeholder="Password" required />
|
||||||
|
<Button disabled={status.isOngoing} variant="primary" type="submit">Decrypt</Button>
|
||||||
|
</form>
|
||||||
|
{ status.type === cons.status.IN_FLIGHT && (
|
||||||
|
<div className="import-e2e-room-keys__process">
|
||||||
|
<Spinner size="small" />
|
||||||
|
<Text variant="b2">{status.msg}</Text>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{status.type === cons.status.SUCCESS && <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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ImportE2ERoomKeys;
|
||||||
@@ -58,6 +58,10 @@
|
|||||||
}
|
}
|
||||||
&__error {
|
&__error {
|
||||||
margin-top: var(--sp-tight);
|
margin-top: var(--sp-tight);
|
||||||
color: var(--bg-danger);
|
color: var(--tc-danger-high);
|
||||||
|
}
|
||||||
|
&__success {
|
||||||
|
margin-top: var(--sp-tight);
|
||||||
|
color: var(--tc-positive-high);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,51 +1,37 @@
|
|||||||
import React, { useRef } from 'react';
|
/* eslint-disable react/prop-types */
|
||||||
|
import React, { useState, useEffect, useCallback, useRef } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './Message.scss';
|
import './Message.scss';
|
||||||
|
|
||||||
import Linkify from 'linkify-react';
|
import dateFormat from 'dateformat';
|
||||||
import ReactMarkdown from 'react-markdown';
|
import { twemojify } from '../../../util/twemojify';
|
||||||
import gfm from 'remark-gfm';
|
|
||||||
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import { coy } from 'react-syntax-highlighter/dist/esm/styles/prism';
|
import { getUsername, getUsernameOfRoomMember, parseReply } from '../../../util/matrixUtil';
|
||||||
import parse from 'html-react-parser';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
import twemoji from 'twemoji';
|
import { getEventCords } from '../../../util/common';
|
||||||
import { getUsername } from '../../../util/matrixUtil';
|
import { redactEvent, sendReaction } from '../../../client/action/roomTimeline';
|
||||||
|
import {
|
||||||
|
openEmojiBoard, openProfileViewer, openReadReceipts, 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 IconButton from '../../atoms/button/IconButton';
|
||||||
|
import ContextMenu, { 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';
|
||||||
const components = {
|
import VerticalMenuIC from '../../../../public/res/ic/outlined/vertical-menu.svg';
|
||||||
code({
|
import PencilIC from '../../../../public/res/ic/outlined/pencil.svg';
|
||||||
// eslint-disable-next-line react/prop-types
|
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
||||||
inline, className, children,
|
import BinIC from '../../../../public/res/ic/outlined/bin.svg';
|
||||||
}) {
|
|
||||||
const match = /language-(\w+)/.exec(className || '');
|
|
||||||
return !inline && match ? (
|
|
||||||
<SyntaxHighlighter
|
|
||||||
style={coy}
|
|
||||||
language={match[1]}
|
|
||||||
PreTag="div"
|
|
||||||
showLineNumbers
|
|
||||||
>
|
|
||||||
{String(children).replace(/\n$/, '')}
|
|
||||||
</SyntaxHighlighter>
|
|
||||||
) : (
|
|
||||||
<code className={className}>{String(children)}</code>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
function linkifyContent(content) {
|
|
||||||
return <Linkify options={{ target: { url: '_blank' } }}>{content}</Linkify>;
|
|
||||||
}
|
|
||||||
function genMarkdown(content) {
|
|
||||||
return <ReactMarkdown remarkPlugins={[gfm]} components={components} linkTarget="_blank">{content}</ReactMarkdown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
function PlaceholderMessage() {
|
function PlaceholderMessage() {
|
||||||
return (
|
return (
|
||||||
@@ -55,7 +41,7 @@ function PlaceholderMessage() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="ph-msg__main-container">
|
<div className="ph-msg__main-container">
|
||||||
<div className="ph-msg__header" />
|
<div className="ph-msg__header" />
|
||||||
<div className="ph-msg__content">
|
<div className="ph-msg__body">
|
||||||
<div />
|
<div />
|
||||||
<div />
|
<div />
|
||||||
<div />
|
<div />
|
||||||
@@ -66,35 +52,46 @@ function PlaceholderMessage() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function MessageHeader({
|
const MessageAvatar = React.memo(({
|
||||||
userId, name, color, time,
|
roomId, mEvent, userId, username,
|
||||||
}) {
|
}) => {
|
||||||
|
const avatarSrc = mEvent.sender.getAvatarUrl(initMatrix.matrixClient.baseUrl, 36, 36, 'crop');
|
||||||
return (
|
return (
|
||||||
<div className="message__header">
|
<div className="message__avatar-container">
|
||||||
<div style={{ color }} className="message__profile">
|
<button type="button" onClick={() => openProfileViewer(userId, roomId)}>
|
||||||
<Text variant="b1">{name}</Text>
|
<Avatar imageSrc={avatarSrc} text={username} bgColor={colorMXID(userId)} size="small" />
|
||||||
<Text variant="b1">{userId}</Text>
|
</button>
|
||||||
</div>
|
|
||||||
<div className="message__time">
|
|
||||||
<Text variant="b3">{time}</Text>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
|
|
||||||
|
const MessageHeader = React.memo(({
|
||||||
|
userId, username, time,
|
||||||
|
}) => (
|
||||||
|
<div className="message__header">
|
||||||
|
<div style={{ color: colorMXID(userId) }} className="message__profile">
|
||||||
|
<Text variant="b1">{twemojify(username)}</Text>
|
||||||
|
<Text variant="b1">{twemojify(userId)}</Text>
|
||||||
|
</div>
|
||||||
|
<div className="message__time">
|
||||||
|
<Text variant="b3">{time}</Text>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
));
|
||||||
MessageHeader.propTypes = {
|
MessageHeader.propTypes = {
|
||||||
userId: PropTypes.string.isRequired,
|
userId: PropTypes.string.isRequired,
|
||||||
name: PropTypes.string.isRequired,
|
username: PropTypes.string.isRequired,
|
||||||
color: PropTypes.string.isRequired,
|
|
||||||
time: PropTypes.string.isRequired,
|
time: PropTypes.string.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function MessageReply({ name, color, content }) {
|
function MessageReply({ name, color, body }) {
|
||||||
return (
|
return (
|
||||||
<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 }}>{name}</span>
|
<span style={{ color }}>{twemojify(name)}</span>
|
||||||
<>{` ${content}`}</>
|
{' '}
|
||||||
|
{twemojify(body)}
|
||||||
</Text>
|
</Text>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -103,45 +100,122 @@ function MessageReply({ name, color, content }) {
|
|||||||
MessageReply.propTypes = {
|
MessageReply.propTypes = {
|
||||||
name: PropTypes.string.isRequired,
|
name: PropTypes.string.isRequired,
|
||||||
color: PropTypes.string.isRequired,
|
color: PropTypes.string.isRequired,
|
||||||
content: PropTypes.string.isRequired,
|
body: PropTypes.string.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function MessageContent({ content, isMarkdown, isEdited }) {
|
const MessageReplyWrapper = React.memo(({ roomTimeline, eventId }) => {
|
||||||
|
const [reply, setReply] = useState(null);
|
||||||
|
const isMountedRef = useRef(true);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const timelineSet = roomTimeline.getUnfilteredTimelineSet();
|
||||||
|
const loadReply = async () => {
|
||||||
|
const eTimeline = await mx.getEventTimeline(timelineSet, eventId);
|
||||||
|
await roomTimeline.decryptAllEventsOfTimeline(eTimeline);
|
||||||
|
|
||||||
|
const mEvent = eTimeline.getTimelineSet().findEventById(eventId);
|
||||||
|
|
||||||
|
const rawBody = mEvent.getContent().body;
|
||||||
|
const username = getUsernameOfRoomMember(mEvent.sender);
|
||||||
|
|
||||||
|
if (isMountedRef.current === false) return;
|
||||||
|
const fallbackBody = mEvent.isRedacted() ? '*** This message has been deleted ***' : '*** Unable to load reply content ***';
|
||||||
|
setReply({
|
||||||
|
to: username,
|
||||||
|
color: colorMXID(mEvent.getSender()),
|
||||||
|
body: parseReply(rawBody)?.body ?? rawBody ?? fallbackBody,
|
||||||
|
event: mEvent,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
loadReply();
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
isMountedRef.current = false;
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const focusReply = () => {
|
||||||
|
if (reply?.event.isRedacted()) return;
|
||||||
|
roomTimeline.loadEventTimeline(eventId);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="message__content">
|
<div
|
||||||
<div className="text text-b1">
|
className="message__reply-wrapper"
|
||||||
{ isMarkdown ? genMarkdown(content) : linkifyContent(content) }
|
onClick={focusReply}
|
||||||
</div>
|
onKeyDown={focusReply}
|
||||||
{ isEdited && <Text className="message__content-edited" variant="b3">(edited)</Text>}
|
role="button"
|
||||||
|
tabIndex="0"
|
||||||
|
>
|
||||||
|
{reply !== null && <MessageReply name={reply.to} color={reply.color} body={reply.body} />}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
MessageContent.defaultProps = {
|
MessageReplyWrapper.propTypes = {
|
||||||
isMarkdown: false,
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
isEdited: false,
|
eventId: PropTypes.string.isRequired,
|
||||||
};
|
|
||||||
MessageContent.propTypes = {
|
|
||||||
content: PropTypes.node.isRequired,
|
|
||||||
isMarkdown: PropTypes.bool,
|
|
||||||
isEdited: PropTypes.bool,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function MessageEdit({ content, onSave, onCancel }) {
|
const MessageBody = React.memo(({
|
||||||
|
senderName,
|
||||||
|
body,
|
||||||
|
isCustomHTML,
|
||||||
|
isEdited,
|
||||||
|
msgType,
|
||||||
|
}) => {
|
||||||
|
// if body is not string it is a React element.
|
||||||
|
if (typeof body !== 'string') return <div className="message__body">{body}</div>;
|
||||||
|
|
||||||
|
const content = isCustomHTML
|
||||||
|
? twemojify(sanitizeCustomHtml(body), undefined, true, false)
|
||||||
|
: <p>{twemojify(body, undefined, true)}</p>;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="message__body">
|
||||||
|
<div className="text text-b1">
|
||||||
|
{ msgType === 'm.emote' && (
|
||||||
|
<>
|
||||||
|
{'* '}
|
||||||
|
{twemojify(senderName)}
|
||||||
|
{' '}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{ content }
|
||||||
|
</div>
|
||||||
|
{ isEdited && <Text className="message__body-edited" variant="b3">(edited)</Text>}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
MessageBody.defaultProps = {
|
||||||
|
isCustomHTML: false,
|
||||||
|
isEdited: false,
|
||||||
|
msgType: null,
|
||||||
|
};
|
||||||
|
MessageBody.propTypes = {
|
||||||
|
senderName: PropTypes.string.isRequired,
|
||||||
|
body: PropTypes.node.isRequired,
|
||||||
|
isCustomHTML: PropTypes.bool,
|
||||||
|
isEdited: PropTypes.bool,
|
||||||
|
msgType: PropTypes.string,
|
||||||
|
};
|
||||||
|
|
||||||
|
function MessageEdit({ body, onSave, onCancel }) {
|
||||||
const editInputRef = useRef(null);
|
const editInputRef = useRef(null);
|
||||||
|
|
||||||
function handleKeyDown(e) {
|
const handleKeyDown = (e) => {
|
||||||
if (e.keyCode === 13 && e.shiftKey === false) {
|
if (e.keyCode === 13 && e.shiftKey === false) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
onSave(editInputRef.current.value);
|
onSave(editInputRef.current.value);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form className="message__edit" onSubmit={(e) => { e.preventDefault(); onSave(editInputRef.current.value); }}>
|
<form className="message__edit" onSubmit={(e) => { e.preventDefault(); onSave(editInputRef.current.value); }}>
|
||||||
<Input
|
<Input
|
||||||
forwardRef={editInputRef}
|
forwardRef={editInputRef}
|
||||||
onKeyDown={handleKeyDown}
|
onKeyDown={handleKeyDown}
|
||||||
value={content}
|
value={body}
|
||||||
placeholder="Edit message"
|
placeholder="Edit message"
|
||||||
required
|
required
|
||||||
resizable
|
resizable
|
||||||
@@ -154,21 +228,43 @@ function MessageEdit({ content, onSave, onCancel }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
MessageEdit.propTypes = {
|
MessageEdit.propTypes = {
|
||||||
content: PropTypes.string.isRequired,
|
body: PropTypes.string.isRequired,
|
||||||
onSave: PropTypes.func.isRequired,
|
onSave: PropTypes.func.isRequired,
|
||||||
onCancel: PropTypes.func.isRequired,
|
onCancel: PropTypes.func.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function MessageReactionGroup({ children }) {
|
function getMyEmojiEvent(emojiKey, eventId, roomTimeline) {
|
||||||
return (
|
const mx = initMatrix.matrixClient;
|
||||||
<div className="message__reactions text text-b3 noselect">
|
const rEvents = roomTimeline.reactionTimeline.get(eventId);
|
||||||
{ children }
|
let rEvent = null;
|
||||||
</div>
|
rEvents?.find((rE) => {
|
||||||
);
|
if (rE.getRelation() === null) return false;
|
||||||
|
if (rE.getRelation().key === emojiKey && rE.getSender() === mx.getUserId()) {
|
||||||
|
rEvent = rE;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
return rEvent;
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleEmoji(roomId, eventId, emojiKey, roomTimeline) {
|
||||||
|
const myAlreadyReactEvent = getMyEmojiEvent(emojiKey, eventId, roomTimeline);
|
||||||
|
if (myAlreadyReactEvent) {
|
||||||
|
const rId = myAlreadyReactEvent.getId();
|
||||||
|
if (rId.startsWith('~')) return;
|
||||||
|
redactEvent(roomId, rId);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
sendReaction(roomId, eventId, emojiKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
function pickEmoji(e, roomId, eventId, roomTimeline) {
|
||||||
|
openEmojiBoard(getEventCords(e), (emoji) => {
|
||||||
|
toggleEmoji(roomId, eventId, emoji.unicode, roomTimeline);
|
||||||
|
e.target.click();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
MessageReactionGroup.propTypes = {
|
|
||||||
children: PropTypes.node.isRequired,
|
|
||||||
};
|
|
||||||
|
|
||||||
function genReactionMsg(userIds, reaction) {
|
function genReactionMsg(userIds, reaction) {
|
||||||
const genLessContText = (text) => <span style={{ opacity: '.6' }}>{text}</span>;
|
const genLessContText = (text) => <span style={{ opacity: '.6' }}>{text}</span>;
|
||||||
@@ -184,95 +280,390 @@ function genReactionMsg(userIds, reaction) {
|
|||||||
<>
|
<>
|
||||||
{msg}
|
{msg}
|
||||||
{genLessContText(' reacted with')}
|
{genLessContText(' reacted with')}
|
||||||
{parse(twemoji.parse(reaction))}
|
{twemojify(reaction, { className: 'react-emoji' })}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function MessageReaction({
|
function MessageReaction({
|
||||||
reaction, users, isActive, onClick,
|
reaction, count, users, isActive, onClick,
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
className="msg__reaction-tooltip"
|
className="msg__reaction-tooltip"
|
||||||
content={<Text variant="b2">{genReactionMsg(users, reaction)}</Text>}
|
content={<Text variant="b2">{users.length > 0 ? genReactionMsg(users, reaction) : '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' : ''}`}
|
||||||
>
|
>
|
||||||
{ parse(twemoji.parse(reaction)) }
|
{ twemojify(reaction, { className: 'react-emoji' }) }
|
||||||
<Text variant="b3" className="msg__reaction-count">{users.length}</Text>
|
<Text variant="b3" className="msg__reaction-count">{count}</Text>
|
||||||
</button>
|
</button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
MessageReaction.propTypes = {
|
MessageReaction.propTypes = {
|
||||||
reaction: PropTypes.node.isRequired,
|
reaction: PropTypes.node.isRequired,
|
||||||
|
count: PropTypes.number.isRequired,
|
||||||
users: PropTypes.arrayOf(PropTypes.string).isRequired,
|
users: PropTypes.arrayOf(PropTypes.string).isRequired,
|
||||||
isActive: PropTypes.bool.isRequired,
|
isActive: PropTypes.bool.isRequired,
|
||||||
onClick: PropTypes.func.isRequired,
|
onClick: PropTypes.func.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function MessageOptions({ children }) {
|
function MessageReactionGroup({ roomTimeline, mEvent }) {
|
||||||
|
const { roomId, reactionTimeline } = roomTimeline;
|
||||||
|
const eventId = mEvent.getId();
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const reactions = {};
|
||||||
|
|
||||||
|
const eventReactions = reactionTimeline.get(eventId);
|
||||||
|
const addReaction = (key, count, senderId, isActive) => {
|
||||||
|
let reaction = reactions[key];
|
||||||
|
if (reaction === undefined) {
|
||||||
|
reaction = {
|
||||||
|
count: 0,
|
||||||
|
users: [],
|
||||||
|
isActive: false,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (count) {
|
||||||
|
reaction.count = count;
|
||||||
|
} else {
|
||||||
|
reaction.users.push(senderId);
|
||||||
|
reaction.count = reaction.users.length;
|
||||||
|
reaction.isActive = isActive;
|
||||||
|
}
|
||||||
|
|
||||||
|
reactions[key] = reaction;
|
||||||
|
};
|
||||||
|
if (eventReactions) {
|
||||||
|
eventReactions.forEach((rEvent) => {
|
||||||
|
if (rEvent.getRelation() === null) return;
|
||||||
|
const reaction = rEvent.getRelation();
|
||||||
|
const senderId = rEvent.getSender();
|
||||||
|
const isActive = senderId === mx.getUserId();
|
||||||
|
|
||||||
|
addReaction(reaction.key, undefined, senderId, isActive);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// Use aggregated reactions
|
||||||
|
const aggregatedReaction = mEvent.getServerAggregatedRelation('m.annotation')?.chunk;
|
||||||
|
if (!aggregatedReaction) return null;
|
||||||
|
aggregatedReaction.forEach((reaction) => {
|
||||||
|
if (reaction.type !== 'm.reaction') return;
|
||||||
|
addReaction(reaction.key, reaction.count, undefined, false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="message__options">
|
<div className="message__reactions text text-b3 noselect">
|
||||||
{children}
|
{
|
||||||
|
Object.keys(reactions).map((key) => (
|
||||||
|
<MessageReaction
|
||||||
|
key={key}
|
||||||
|
reaction={key}
|
||||||
|
count={reactions[key].count}
|
||||||
|
users={reactions[key].users}
|
||||||
|
isActive={reactions[key].isActive}
|
||||||
|
onClick={() => {
|
||||||
|
toggleEmoji(roomId, eventId, key, roomTimeline);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
}
|
||||||
|
<IconButton
|
||||||
|
onClick={(e) => {
|
||||||
|
pickEmoji(e, roomId, eventId, roomTimeline);
|
||||||
|
}}
|
||||||
|
src={EmojiAddIC}
|
||||||
|
size="extra-small"
|
||||||
|
tooltip="Add reaction"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
MessageOptions.propTypes = {
|
MessageReactionGroup.propTypes = {
|
||||||
children: PropTypes.node.isRequired,
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
|
mEvent: PropTypes.shape({}).isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function Message({
|
function isMedia(mE) {
|
||||||
avatar, header, reply, content, editContent, reactions, options,
|
|
||||||
}) {
|
|
||||||
const msgClass = header === null ? ' message--content-only' : ' message--full';
|
|
||||||
return (
|
return (
|
||||||
<div className={`message${msgClass}`}>
|
mE.getContent()?.msgtype === 'm.file'
|
||||||
<div className="message__avatar-container">
|
|| mE.getContent()?.msgtype === 'm.image'
|
||||||
{avatar !== null && avatar}
|
|| mE.getContent()?.msgtype === 'm.audio'
|
||||||
</div>
|
|| mE.getContent()?.msgtype === 'm.video'
|
||||||
|
|| mE.getType() === 'm.sticker'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const MessageOptions = React.memo(({
|
||||||
|
roomTimeline, mEvent, edit, reply,
|
||||||
|
}) => {
|
||||||
|
const { roomId, room } = roomTimeline;
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const eventId = mEvent.getId();
|
||||||
|
const senderId = mEvent.getSender();
|
||||||
|
|
||||||
|
const myPowerlevel = room.getMember(mx.getUserId())?.powerLevel;
|
||||||
|
const canIRedact = room.currentState.hasSufficientPowerLevelFor('redact', myPowerlevel);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="message__options">
|
||||||
|
<IconButton
|
||||||
|
onClick={(e) => pickEmoji(e, roomId, eventId, roomTimeline)}
|
||||||
|
src={EmojiAddIC}
|
||||||
|
size="extra-small"
|
||||||
|
tooltip="Add reaction"
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
onClick={() => reply()}
|
||||||
|
src={ReplyArrowIC}
|
||||||
|
size="extra-small"
|
||||||
|
tooltip="Reply"
|
||||||
|
/>
|
||||||
|
{(senderId === mx.getUserId() && !isMedia(mEvent)) && (
|
||||||
|
<IconButton
|
||||||
|
onClick={() => edit(true)}
|
||||||
|
src={PencilIC}
|
||||||
|
size="extra-small"
|
||||||
|
tooltip="Edit"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<ContextMenu
|
||||||
|
content={() => (
|
||||||
|
<>
|
||||||
|
<MenuHeader>Options</MenuHeader>
|
||||||
|
<MenuItem
|
||||||
|
iconSrc={TickMarkIC}
|
||||||
|
onClick={() => openReadReceipts(roomId, roomTimeline.getEventReaders(eventId))}
|
||||||
|
>
|
||||||
|
Read receipts
|
||||||
|
</MenuItem>
|
||||||
|
{(canIRedact || senderId === mx.getUserId()) && (
|
||||||
|
<>
|
||||||
|
<MenuBorder />
|
||||||
|
<MenuItem
|
||||||
|
variant="danger"
|
||||||
|
iconSrc={BinIC}
|
||||||
|
onClick={() => {
|
||||||
|
if (window.confirm('Are you sure you want to delete this event')) {
|
||||||
|
redactEvent(roomId, eventId);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Delete
|
||||||
|
</MenuItem>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
render={(toggleMenu) => (
|
||||||
|
<IconButton
|
||||||
|
onClick={toggleMenu}
|
||||||
|
src={VerticalMenuIC}
|
||||||
|
size="extra-small"
|
||||||
|
tooltip="Options"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
MessageOptions.propTypes = {
|
||||||
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
|
mEvent: PropTypes.shape({}).isRequired,
|
||||||
|
edit: PropTypes.func.isRequired,
|
||||||
|
reply: PropTypes.func.isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
function genMediaContent(mE) {
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const mContent = mE.getContent();
|
||||||
|
if (!mContent || !mContent.body) return <span style={{ color: 'var(--bg-danger)' }}>Malformed event</span>;
|
||||||
|
|
||||||
|
let mediaMXC = mContent?.url;
|
||||||
|
const isEncryptedFile = typeof mediaMXC === 'undefined';
|
||||||
|
if (isEncryptedFile) mediaMXC = mContent?.file?.url;
|
||||||
|
|
||||||
|
let thumbnailMXC = mContent?.info?.thumbnail_url;
|
||||||
|
|
||||||
|
if (typeof mediaMXC === 'undefined' || mediaMXC === '') return <span style={{ color: 'var(--bg-danger)' }}>Malformed event</span>;
|
||||||
|
|
||||||
|
let msgType = mE.getContent()?.msgtype;
|
||||||
|
if (mE.getType() === 'm.sticker') msgType = 'm.image';
|
||||||
|
|
||||||
|
switch (msgType) {
|
||||||
|
case 'm.file':
|
||||||
|
return (
|
||||||
|
<Media.File
|
||||||
|
name={mContent.body}
|
||||||
|
link={mx.mxcUrlToHttp(mediaMXC)}
|
||||||
|
type={mContent.info?.mimetype}
|
||||||
|
file={mContent.file || null}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
case 'm.image':
|
||||||
|
return (
|
||||||
|
<Media.Image
|
||||||
|
name={mContent.body}
|
||||||
|
width={typeof mContent.info?.w === 'number' ? mContent.info?.w : null}
|
||||||
|
height={typeof mContent.info?.h === 'number' ? mContent.info?.h : null}
|
||||||
|
link={mx.mxcUrlToHttp(mediaMXC)}
|
||||||
|
file={isEncryptedFile ? mContent.file : null}
|
||||||
|
type={mContent.info?.mimetype}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
case 'm.audio':
|
||||||
|
return (
|
||||||
|
<Media.Audio
|
||||||
|
name={mContent.body}
|
||||||
|
link={mx.mxcUrlToHttp(mediaMXC)}
|
||||||
|
type={mContent.info?.mimetype}
|
||||||
|
file={mContent.file || null}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
case 'm.video':
|
||||||
|
if (typeof thumbnailMXC === 'undefined') {
|
||||||
|
thumbnailMXC = mContent.info?.thumbnail_file?.url || null;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<Media.Video
|
||||||
|
name={mContent.body}
|
||||||
|
link={mx.mxcUrlToHttp(mediaMXC)}
|
||||||
|
thumbnail={thumbnailMXC === null ? null : mx.mxcUrlToHttp(thumbnailMXC)}
|
||||||
|
thumbnailFile={isEncryptedFile ? mContent.info?.thumbnail_file : null}
|
||||||
|
thumbnailType={mContent.info?.thumbnail_info?.mimetype || null}
|
||||||
|
width={typeof mContent.info?.w === 'number' ? mContent.info?.w : null}
|
||||||
|
height={typeof mContent.info?.h === 'number' ? mContent.info?.h : null}
|
||||||
|
file={isEncryptedFile ? mContent.file : null}
|
||||||
|
type={mContent.info?.mimetype}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
default:
|
||||||
|
return <span style={{ color: 'var(--bg-danger)' }}>Malformed event</span>;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getEditedBody(editedMEvent) {
|
||||||
|
const newContent = editedMEvent.getContent()['m.new_content'];
|
||||||
|
if (typeof newContent === 'undefined') return [null, false, null];
|
||||||
|
|
||||||
|
const isCustomHTML = newContent.format === 'org.matrix.custom.html';
|
||||||
|
const parsedContent = parseReply(newContent.body);
|
||||||
|
if (parsedContent === null) {
|
||||||
|
return [newContent.body, isCustomHTML, newContent.formatted_body ?? null];
|
||||||
|
}
|
||||||
|
return [parsedContent.body, isCustomHTML, newContent.formatted_body ?? null];
|
||||||
|
}
|
||||||
|
|
||||||
|
function Message({
|
||||||
|
mEvent, isBodyOnly, roomTimeline, focus, time,
|
||||||
|
}) {
|
||||||
|
const [isEditing, setIsEditing] = useState(false);
|
||||||
|
const { roomId, editedTimeline, reactionTimeline } = roomTimeline;
|
||||||
|
|
||||||
|
const className = ['message', (isBodyOnly ? 'message--body-only' : 'message--full')];
|
||||||
|
if (focus) className.push('message--focus');
|
||||||
|
const content = mEvent.getContent();
|
||||||
|
const eventId = mEvent.getId();
|
||||||
|
const msgType = content?.msgtype;
|
||||||
|
const senderId = mEvent.getSender();
|
||||||
|
let { body } = content;
|
||||||
|
const username = getUsernameOfRoomMember(mEvent.sender);
|
||||||
|
|
||||||
|
const edit = useCallback(() => {
|
||||||
|
setIsEditing(true);
|
||||||
|
}, []);
|
||||||
|
const reply = useCallback(() => {
|
||||||
|
replyTo(senderId, eventId, body);
|
||||||
|
}, [body]);
|
||||||
|
|
||||||
|
if (body === undefined) return null;
|
||||||
|
if (msgType === 'm.emote') className.push('message--type-emote');
|
||||||
|
|
||||||
|
let isCustomHTML = content.format === 'org.matrix.custom.html';
|
||||||
|
const isEdited = editedTimeline.has(eventId);
|
||||||
|
const haveReactions = reactionTimeline.has(eventId) || !!mEvent.getServerAggregatedRelation('m.annotation');
|
||||||
|
const isReply = !!mEvent.replyEventId;
|
||||||
|
let customHTML = isCustomHTML ? content.formatted_body : null;
|
||||||
|
|
||||||
|
if (isEdited) {
|
||||||
|
const editedList = editedTimeline.get(eventId);
|
||||||
|
const editedMEvent = editedList[editedList.length - 1];
|
||||||
|
[body, isCustomHTML, customHTML] = getEditedBody(editedMEvent);
|
||||||
|
if (typeof body !== 'string') return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isReply) {
|
||||||
|
body = parseReply(body)?.body ?? body;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={className.join(' ')}>
|
||||||
|
{
|
||||||
|
isBodyOnly
|
||||||
|
? <div className="message__avatar-container" />
|
||||||
|
: <MessageAvatar roomId={roomId} mEvent={mEvent} userId={senderId} username={username} />
|
||||||
|
}
|
||||||
<div className="message__main-container">
|
<div className="message__main-container">
|
||||||
{header !== null && header}
|
{!isBodyOnly && (
|
||||||
{reply !== null && reply}
|
<MessageHeader userId={senderId} username={username} time={time} />
|
||||||
{content !== null && content}
|
)}
|
||||||
{editContent !== null && editContent}
|
{isReply && (
|
||||||
{reactions !== null && reactions}
|
<MessageReplyWrapper
|
||||||
{options !== null && options}
|
roomTimeline={roomTimeline}
|
||||||
|
eventId={mEvent.replyEventId}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{!isEditing && (
|
||||||
|
<MessageBody
|
||||||
|
senderName={username}
|
||||||
|
isCustomHTML={isCustomHTML}
|
||||||
|
body={isMedia(mEvent) ? genMediaContent(mEvent) : customHTML ?? body}
|
||||||
|
msgType={msgType}
|
||||||
|
isEdited={isEdited}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{isEditing && (
|
||||||
|
<MessageEdit
|
||||||
|
body={body}
|
||||||
|
onSave={(newBody) => {
|
||||||
|
if (newBody !== body) {
|
||||||
|
initMatrix.roomsInput.sendEditedMessage(roomId, mEvent, newBody);
|
||||||
|
}
|
||||||
|
setIsEditing(false);
|
||||||
|
}}
|
||||||
|
onCancel={() => setIsEditing(false)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{haveReactions && (
|
||||||
|
<MessageReactionGroup roomTimeline={roomTimeline} mEvent={mEvent} />
|
||||||
|
)}
|
||||||
|
{!isEditing && (
|
||||||
|
<MessageOptions
|
||||||
|
roomTimeline={roomTimeline}
|
||||||
|
mEvent={mEvent}
|
||||||
|
edit={edit}
|
||||||
|
reply={reply}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Message.defaultProps = {
|
Message.defaultProps = {
|
||||||
avatar: null,
|
isBodyOnly: false,
|
||||||
header: null,
|
focus: false,
|
||||||
reply: null,
|
|
||||||
content: null,
|
|
||||||
editContent: null,
|
|
||||||
reactions: null,
|
|
||||||
options: null,
|
|
||||||
};
|
};
|
||||||
Message.propTypes = {
|
Message.propTypes = {
|
||||||
avatar: PropTypes.node,
|
mEvent: PropTypes.shape({}).isRequired,
|
||||||
header: PropTypes.node,
|
isBodyOnly: PropTypes.bool,
|
||||||
reply: PropTypes.node,
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
content: PropTypes.node,
|
focus: PropTypes.bool,
|
||||||
editContent: PropTypes.node,
|
time: PropTypes.string.isRequired,
|
||||||
reactions: PropTypes.node,
|
|
||||||
options: PropTypes.node,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export {
|
export { Message, MessageReply, PlaceholderMessage };
|
||||||
Message,
|
|
||||||
MessageHeader,
|
|
||||||
MessageReply,
|
|
||||||
MessageContent,
|
|
||||||
MessageEdit,
|
|
||||||
MessageReactionGroup,
|
|
||||||
MessageReaction,
|
|
||||||
MessageOptions,
|
|
||||||
PlaceholderMessage,
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -23,9 +23,16 @@
|
|||||||
&__avatar-container {
|
&__avatar-container {
|
||||||
padding-top: 6px;
|
padding-top: 6px;
|
||||||
margin-right: var(--sp-tight);
|
margin-right: var(--sp-tight);
|
||||||
|
& .avatar-container {
|
||||||
|
transition: transform 200ms var(--fluid-push);
|
||||||
|
&:hover {
|
||||||
|
transform: translateY(-4px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
& button {
|
& button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
[dir=rtl] & {
|
[dir=rtl] & {
|
||||||
@@ -46,7 +53,7 @@
|
|||||||
|
|
||||||
.message {
|
.message {
|
||||||
&--full + &--full,
|
&--full + &--full,
|
||||||
&--content-only + &--full,
|
&--body-only + &--full,
|
||||||
& + .timeline-change,
|
& + .timeline-change,
|
||||||
.timeline-change + & {
|
.timeline-change + & {
|
||||||
margin-top: var(--sp-normal);
|
margin-top: var(--sp-normal);
|
||||||
@@ -54,6 +61,10 @@
|
|||||||
&__avatar-container {
|
&__avatar-container {
|
||||||
width: var(--av-small);
|
width: var(--av-small);
|
||||||
}
|
}
|
||||||
|
&--focus {
|
||||||
|
box-shadow: inset 2px 0 0 var(--bg-caution);
|
||||||
|
background-color: var(--bg-caution-hover);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ph-msg {
|
.ph-msg {
|
||||||
@@ -65,7 +76,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__header,
|
&__header,
|
||||||
&__content > div {
|
&__body > div {
|
||||||
margin: var(--sp-ultra-tight) 0;
|
margin: var(--sp-ultra-tight) 0;
|
||||||
margin-right: var(--sp-extra-tight);
|
margin-right: var(--sp-extra-tight);
|
||||||
height: var(--fs-b1);
|
height: var(--fs-b1);
|
||||||
@@ -81,23 +92,24 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&__content {
|
&__body {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
&__content > div:nth-child(1n) {
|
&__body > div:nth-child(1n) {
|
||||||
max-width: 10%;
|
max-width: 10%;
|
||||||
}
|
}
|
||||||
&__content > div:nth-child(2n) {
|
&__body > div:nth-child(2n) {
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.message__reply,
|
.message__reply,
|
||||||
.message__content,
|
.message__body,
|
||||||
|
.message__body__wrapper,
|
||||||
.message__edit,
|
.message__edit,
|
||||||
.message__reactions {
|
.message__reactions {
|
||||||
max-width: 640px;
|
max-width: calc(100% - 88px);
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -141,6 +153,19 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.message__reply {
|
.message__reply {
|
||||||
|
&-wrapper {
|
||||||
|
min-height: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
&:empty {
|
||||||
|
border-radius: calc(var(--bo-radius) / 2);
|
||||||
|
background-color: var(--bg-surface-hover);
|
||||||
|
max-width: 200px;
|
||||||
|
cursor: auto;
|
||||||
|
}
|
||||||
|
&:hover .text {
|
||||||
|
color: var(--tc-surface-high);
|
||||||
|
}
|
||||||
|
}
|
||||||
.text {
|
.text {
|
||||||
color: var(--tc-surface-low);
|
color: var(--tc-surface-low);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@@ -152,9 +177,9 @@
|
|||||||
height: 14px;
|
height: 14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.message__content {
|
.message__body {
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
|
||||||
& > .text > * {
|
& > .text > * {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
@@ -162,6 +187,48 @@
|
|||||||
& a {
|
& a {
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
& span[data-mx-pill] {
|
||||||
|
background-color: hsla(0, 0%, 64%, 0.15);
|
||||||
|
padding: 0 2px;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: 500;
|
||||||
|
&:hover {
|
||||||
|
background-color: hsla(0, 0%, 64%, 0.3);
|
||||||
|
color: var(--tc-surface-high);
|
||||||
|
}
|
||||||
|
|
||||||
|
&[data-mx-ping] {
|
||||||
|
background-color: var(--bg-ping);
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--bg-ping-hover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
& span[data-mx-spoiler] {
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: rgba(124, 124, 124, 0.5);
|
||||||
|
color:transparent;
|
||||||
|
cursor: pointer;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
& > * {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.data-mx-spoiler--visible {
|
||||||
|
background-color: var(--bg-surface-active) !important;
|
||||||
|
color: inherit !important;
|
||||||
|
user-select: initial !important;
|
||||||
|
& > * {
|
||||||
|
opacity: inherit !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
&-edited {
|
&-edited {
|
||||||
color: var(--tc-surface-low);
|
color: var(--tc-surface-low);
|
||||||
}
|
}
|
||||||
@@ -200,7 +267,7 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
& .emoji {
|
& .react-emoji {
|
||||||
width: 14px;
|
width: 14px;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
@@ -209,7 +276,7 @@
|
|||||||
margin: 0 var(--sp-ultra-tight);
|
margin: 0 var(--sp-ultra-tight);
|
||||||
color: var(--tc-surface-normal)
|
color: var(--tc-surface-normal)
|
||||||
}
|
}
|
||||||
&-tooltip .emoji {
|
&-tooltip .react-emoji {
|
||||||
width: 14px;
|
width: 14px;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
margin: 0 var(--sp-ultra-tight);
|
margin: 0 var(--sp-ultra-tight);
|
||||||
@@ -249,7 +316,7 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 60px;
|
right: 60px;
|
||||||
z-index: 999;
|
z-index: 99;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
|
|
||||||
border-radius: var(--bo-radius);
|
border-radius: var(--bo-radius);
|
||||||
@@ -262,39 +329,29 @@
|
|||||||
right: unset;
|
right: unset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1620px) {
|
|
||||||
.message__options {
|
|
||||||
right: unset;
|
|
||||||
left: 770px;
|
|
||||||
[dir=rtl] {
|
|
||||||
left: unset;
|
|
||||||
right: 770px
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// markdown formating
|
// markdown formating
|
||||||
.message__content {
|
.message__body {
|
||||||
& h1,
|
& h1,
|
||||||
& h2 {
|
& h2 {
|
||||||
color: var(--tc-surface-high);
|
color: var(--tc-surface-high);
|
||||||
margin: var(--sp-extra-loose) 0 var(--sp-normal);
|
margin: var(--sp-loose) 0 var(--sp-normal);
|
||||||
line-height: var(--lh-h1);
|
line-height: var(--lh-h1);
|
||||||
}
|
}
|
||||||
& h3,
|
& h3,
|
||||||
& h4 {
|
& h4 {
|
||||||
color: var(--tc-surface-high);
|
color: var(--tc-surface-high);
|
||||||
margin: var(--sp-loose) 0 var(--sp-tight);
|
margin: var(--sp-normal) 0 var(--sp-tight);
|
||||||
line-height: var(--lh-h2);
|
line-height: var(--lh-h2);
|
||||||
}
|
}
|
||||||
& h5,
|
& h5,
|
||||||
& h6 {
|
& h6 {
|
||||||
color: var(--tc-surface-high);
|
color: var(--tc-surface-high);
|
||||||
margin: var(--sp-normal) 0 var(--sp-extra-tight);
|
margin: var(--sp-tight) 0 var(--sp-extra-tight);
|
||||||
line-height: var(--lh-s1);
|
line-height: var(--lh-s1);
|
||||||
}
|
}
|
||||||
& hr {
|
& hr {
|
||||||
border-color: var(--bg-surface-border);
|
border-color: var(--bg-divider);
|
||||||
}
|
}
|
||||||
|
|
||||||
.text img {
|
.text img {
|
||||||
@@ -336,10 +393,20 @@
|
|||||||
@include scrollbar.scroll__h;
|
@include scrollbar.scroll__h;
|
||||||
@include scrollbar.scroll--auto-hide;
|
@include scrollbar.scroll--auto-hide;
|
||||||
}
|
}
|
||||||
& pre code {
|
& pre {
|
||||||
color: var(--tc-surface-normal) !important;
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
@include scrollbar.scroll;
|
||||||
|
@include scrollbar.scroll__h;
|
||||||
|
@include scrollbar.scroll--auto-hide;
|
||||||
|
& code {
|
||||||
|
color: var(--tc-surface-normal) !important;
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
& blockquote {
|
& blockquote {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
padding-left: var(--sp-extra-tight);
|
padding-left: var(--sp-extra-tight);
|
||||||
border-left: 4px solid var(--bg-surface-active);
|
border-left: 4px solid var(--bg-surface-active);
|
||||||
white-space: initial !important;
|
white-space: initial !important;
|
||||||
@@ -381,15 +448,22 @@
|
|||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
& table {
|
& table {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
white-space: normal !important;
|
||||||
background-color: var(--bg-surface-hover);
|
background-color: var(--bg-surface-hover);
|
||||||
border-radius: calc(var(--bo-radius) / 2);
|
border-radius: calc(var(--bo-radius) / 2);
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
border: 1px solid var(--bg-surface-border);
|
border: 1px solid var(--bg-surface-border);
|
||||||
|
@include scrollbar.scroll;
|
||||||
|
@include scrollbar.scroll__h;
|
||||||
|
@include scrollbar.scroll--auto-hide;
|
||||||
|
|
||||||
& td, & th {
|
& td, & th {
|
||||||
padding: var(--sp-extra-tight);
|
padding: var(--sp-extra-tight);
|
||||||
border: 1px solid var(--bg-surface-border);
|
border: 1px solid var(--bg-surface-border);
|
||||||
border-width: 0 1px 1px 0;
|
border-width: 0 1px 1px 0;
|
||||||
|
white-space: pre;
|
||||||
&:last-child {
|
&:last-child {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
@@ -410,3 +484,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.message.message--type-emote {
|
||||||
|
.message__body {
|
||||||
|
font-style: italic;
|
||||||
|
|
||||||
|
// Remove blockness of first `<p>` so that markdown emotes stay on one line.
|
||||||
|
p:first-of-type {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -10,9 +10,10 @@ import LeaveArraowIC from '../../../../public/res/ic/outlined/leave-arrow.svg';
|
|||||||
import InviteArraowIC from '../../../../public/res/ic/outlined/invite-arrow.svg';
|
import InviteArraowIC from '../../../../public/res/ic/outlined/invite-arrow.svg';
|
||||||
import InviteCancelArraowIC from '../../../../public/res/ic/outlined/invite-cancel-arrow.svg';
|
import InviteCancelArraowIC from '../../../../public/res/ic/outlined/invite-cancel-arrow.svg';
|
||||||
import UserIC from '../../../../public/res/ic/outlined/user.svg';
|
import UserIC from '../../../../public/res/ic/outlined/user.svg';
|
||||||
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
|
||||||
|
|
||||||
function TimelineChange({ variant, content, time, onClick }) {
|
function TimelineChange({
|
||||||
|
variant, content, time, onClick,
|
||||||
|
}) {
|
||||||
let iconSrc;
|
let iconSrc;
|
||||||
|
|
||||||
switch (variant) {
|
switch (variant) {
|
||||||
@@ -31,9 +32,6 @@ function TimelineChange({ variant, content, time, onClick }) {
|
|||||||
case 'avatar':
|
case 'avatar':
|
||||||
iconSrc = UserIC;
|
iconSrc = UserIC;
|
||||||
break;
|
break;
|
||||||
case 'follow':
|
|
||||||
iconSrc = TickMarkIC;
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
iconSrc = JoinArraowIC;
|
iconSrc = JoinArraowIC;
|
||||||
break;
|
break;
|
||||||
@@ -47,7 +45,6 @@ function TimelineChange({ variant, content, time, onClick }) {
|
|||||||
<div className="timeline-change__content">
|
<div className="timeline-change__content">
|
||||||
<Text variant="b2">
|
<Text variant="b2">
|
||||||
{content}
|
{content}
|
||||||
{/* <Linkify options={{ target: { url: '_blank' } }}>{content}</Linkify> */}
|
|
||||||
</Text>
|
</Text>
|
||||||
</div>
|
</div>
|
||||||
<div className="timeline-change__time">
|
<div className="timeline-change__time">
|
||||||
@@ -66,7 +63,6 @@ TimelineChange.propTypes = {
|
|||||||
variant: PropTypes.oneOf([
|
variant: PropTypes.oneOf([
|
||||||
'join', 'leave', 'invite',
|
'join', 'leave', 'invite',
|
||||||
'invite-cancel', 'avatar', 'other',
|
'invite-cancel', 'avatar', 'other',
|
||||||
'follow',
|
|
||||||
]),
|
]),
|
||||||
content: PropTypes.oneOfType([
|
content: PropTypes.oneOfType([
|
||||||
PropTypes.string,
|
PropTypes.string,
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import React from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './PeopleSelector.scss';
|
import './PeopleSelector.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import { blurOnBubbling } from '../../atoms/button/script';
|
import { blurOnBubbling } from '../../atoms/button/script';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
@@ -18,8 +20,8 @@ function PeopleSelector({
|
|||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
<Avatar imageSrc={avatarSrc} text={name.slice(0, 1)} bgColor={color} size="extra-small" />
|
<Avatar imageSrc={avatarSrc} text={name} bgColor={color} size="extra-small" />
|
||||||
<Text className="people-selector__name" variant="b1">{name}</Text>
|
<Text className="people-selector__name" variant="b1">{twemojify(name)}</Text>
|
||||||
{peopleRole !== null && <Text className="people-selector__role" variant="b3">{peopleRole}</Text>}
|
{peopleRole !== null && <Text className="people-selector__role" variant="b3">{peopleRole}</Text>}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import React from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './PopupWindow.scss';
|
import './PopupWindow.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
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 { MenuItem } from '../../atoms/context-menu/ContextMenu';
|
import { MenuItem } from '../../atoms/context-menu/ContextMenu';
|
||||||
@@ -66,7 +68,7 @@ function PopupWindow({
|
|||||||
<Header>
|
<Header>
|
||||||
<IconButton size="small" src={ChevronLeftIC} onClick={onRequestClose} tooltip="Back" />
|
<IconButton size="small" src={ChevronLeftIC} onClick={onRequestClose} tooltip="Back" />
|
||||||
<TitleWrapper>
|
<TitleWrapper>
|
||||||
<Text variant="s1">{title}</Text>
|
<Text variant="s1">{twemojify(title)}</Text>
|
||||||
</TitleWrapper>
|
</TitleWrapper>
|
||||||
{drawerOptions}
|
{drawerOptions}
|
||||||
</Header>
|
</Header>
|
||||||
@@ -82,7 +84,7 @@ function PopupWindow({
|
|||||||
<div className="pw__content">
|
<div className="pw__content">
|
||||||
<Header>
|
<Header>
|
||||||
<TitleWrapper>
|
<TitleWrapper>
|
||||||
<Text variant="h2">{contentTitle !== null ? contentTitle : title}</Text>
|
<Text variant="h2">{twemojify(contentTitle !== null ? contentTitle : title)}</Text>
|
||||||
</TitleWrapper>
|
</TitleWrapper>
|
||||||
{contentOptions}
|
{contentOptions}
|
||||||
</Header>
|
</Header>
|
||||||
|
|||||||
@@ -2,25 +2,21 @@ import React from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './RoomIntro.scss';
|
import './RoomIntro.scss';
|
||||||
|
|
||||||
import Linkify from 'linkify-react';
|
import { twemojify } from '../../../util/twemojify';
|
||||||
import colorMXID from '../../../util/colorMXID';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
import Avatar from '../../atoms/avatar/Avatar';
|
import Avatar from '../../atoms/avatar/Avatar';
|
||||||
|
|
||||||
function linkifyContent(content) {
|
|
||||||
return <Linkify options={{ target: { url: '_blank' } }}>{content}</Linkify>;
|
|
||||||
}
|
|
||||||
|
|
||||||
function RoomIntro({
|
function RoomIntro({
|
||||||
roomId, avatarSrc, name, heading, desc, time,
|
roomId, avatarSrc, name, heading, desc, time,
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<div className="room-intro">
|
<div className="room-intro">
|
||||||
<Avatar imageSrc={avatarSrc} text={name.slice(0, 1)} bgColor={colorMXID(roomId)} size="large" />
|
<Avatar imageSrc={avatarSrc} text={name} bgColor={colorMXID(roomId)} size="large" />
|
||||||
<div className="room-intro__content">
|
<div className="room-intro__content">
|
||||||
<Text className="room-intro__name" variant="h1">{heading}</Text>
|
<Text className="room-intro__name" variant="h1">{twemojify(heading)}</Text>
|
||||||
<Text className="room-intro__desc" variant="b1">{linkifyContent(desc)}</Text>
|
<Text className="room-intro__desc" variant="b1">{twemojify(desc, undefined, true)}</Text>
|
||||||
{ time !== null && <Text className="room-intro__time" variant="b3">{time}</Text>}
|
{ time !== null && <Text className="room-intro__time" variant="b3">{time}</Text>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
.room-intro__content {
|
.room-intro__content {
|
||||||
margin-top: var(--sp-extra-loose);
|
margin-top: var(--sp-extra-loose);
|
||||||
max-width: 640px;
|
width: calc(100% - 88px);
|
||||||
}
|
}
|
||||||
&__name {
|
&__name {
|
||||||
color: var(--tc-surface-high);
|
color: var(--tc-surface-high);
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import React from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './RoomSelector.scss';
|
import './RoomSelector.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
import colorMXID from '../../../util/colorMXID';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
@@ -40,7 +41,7 @@ RoomSelectorWrapper.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function RoomSelector({
|
function RoomSelector({
|
||||||
name, roomId, imageSrc, iconSrc,
|
name, parentName, roomId, imageSrc, iconSrc,
|
||||||
isSelected, isUnread, notificationCount, isAlert,
|
isSelected, isUnread, notificationCount, isAlert,
|
||||||
options, onClick,
|
options, onClick,
|
||||||
}) {
|
}) {
|
||||||
@@ -51,13 +52,21 @@ function RoomSelector({
|
|||||||
content={(
|
content={(
|
||||||
<>
|
<>
|
||||||
<Avatar
|
<Avatar
|
||||||
text={name.slice(0, 1)}
|
text={name}
|
||||||
bgColor={colorMXID(roomId)}
|
bgColor={colorMXID(roomId)}
|
||||||
imageSrc={imageSrc}
|
imageSrc={imageSrc}
|
||||||
iconSrc={iconSrc}
|
iconSrc={iconSrc}
|
||||||
size="extra-small"
|
size="extra-small"
|
||||||
/>
|
/>
|
||||||
<Text variant="b1">{name}</Text>
|
<Text variant="b1">
|
||||||
|
{twemojify(name)}
|
||||||
|
{parentName && (
|
||||||
|
<span className="text text-b3">
|
||||||
|
{' — '}
|
||||||
|
{twemojify(parentName)}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</Text>
|
||||||
{ isUnread && (
|
{ isUnread && (
|
||||||
<NotificationBadge
|
<NotificationBadge
|
||||||
alert={isAlert}
|
alert={isAlert}
|
||||||
@@ -72,6 +81,7 @@ function RoomSelector({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
RoomSelector.defaultProps = {
|
RoomSelector.defaultProps = {
|
||||||
|
parentName: null,
|
||||||
isSelected: false,
|
isSelected: false,
|
||||||
imageSrc: null,
|
imageSrc: null,
|
||||||
iconSrc: null,
|
iconSrc: null,
|
||||||
@@ -79,6 +89,7 @@ RoomSelector.defaultProps = {
|
|||||||
};
|
};
|
||||||
RoomSelector.propTypes = {
|
RoomSelector.propTypes = {
|
||||||
name: PropTypes.string.isRequired,
|
name: PropTypes.string.isRequired,
|
||||||
|
parentName: PropTypes.string,
|
||||||
roomId: PropTypes.string.isRequired,
|
roomId: PropTypes.string.isRequired,
|
||||||
imageSrc: PropTypes.string,
|
imageSrc: PropTypes.string,
|
||||||
iconSrc: PropTypes.string,
|
iconSrc: PropTypes.string,
|
||||||
|
|||||||
@@ -2,16 +2,14 @@ import React from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './RoomTile.scss';
|
import './RoomTile.scss';
|
||||||
|
|
||||||
import Linkify from 'linkify-react';
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
import { sanitizeText } from '../../../util/sanitize';
|
||||||
|
|
||||||
import colorMXID from '../../../util/colorMXID';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
import Avatar from '../../atoms/avatar/Avatar';
|
import Avatar from '../../atoms/avatar/Avatar';
|
||||||
|
|
||||||
function linkifyContent(content) {
|
|
||||||
return <Linkify options={{ target: { url: '_blank' } }}>{content}</Linkify>;
|
|
||||||
}
|
|
||||||
|
|
||||||
function RoomTile({
|
function RoomTile({
|
||||||
avatarSrc, name, id,
|
avatarSrc, name, id,
|
||||||
inviterName, memberCount, desc, options,
|
inviterName, memberCount, desc, options,
|
||||||
@@ -22,11 +20,11 @@ function RoomTile({
|
|||||||
<Avatar
|
<Avatar
|
||||||
imageSrc={avatarSrc}
|
imageSrc={avatarSrc}
|
||||||
bgColor={colorMXID(id)}
|
bgColor={colorMXID(id)}
|
||||||
text={name.slice(0, 1)}
|
text={name}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="room-tile__content">
|
<div className="room-tile__content">
|
||||||
<Text variant="s1">{name}</Text>
|
<Text variant="s1">{twemojify(name)}</Text>
|
||||||
<Text variant="b3">
|
<Text variant="b3">
|
||||||
{
|
{
|
||||||
inviterName !== null
|
inviterName !== null
|
||||||
@@ -36,7 +34,7 @@ function RoomTile({
|
|||||||
</Text>
|
</Text>
|
||||||
{
|
{
|
||||||
desc !== null && (typeof desc === 'string')
|
desc !== null && (typeof desc === 'string')
|
||||||
? <Text className="room-tile__content__desc" variant="b2">{linkifyContent(desc)}</Text>
|
? <Text className="room-tile__content__desc" variant="b2">{twemojify(desc, undefined, true)}</Text>
|
||||||
: desc
|
: desc
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import React from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './SidebarAvatar.scss';
|
import './SidebarAvatar.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
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 Tooltip from '../../atoms/tooltip/Tooltip';
|
import Tooltip from '../../atoms/tooltip/Tooltip';
|
||||||
@@ -16,7 +18,7 @@ const SidebarAvatar = React.forwardRef(({
|
|||||||
if (active) activeClass = ' sidebar-avatar--active';
|
if (active) activeClass = ' sidebar-avatar--active';
|
||||||
return (
|
return (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
content={<Text variant="b1">{tooltip}</Text>}
|
content={<Text variant="b1">{twemojify(tooltip)}</Text>}
|
||||||
placement="right"
|
placement="right"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
|
|||||||
@@ -14,6 +14,16 @@
|
|||||||
|
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
& .avatar-container,
|
||||||
|
& .notification-badge {
|
||||||
|
transition: transform 200ms var(--fluid-push);
|
||||||
|
}
|
||||||
|
&:hover .avatar-container {
|
||||||
|
transform: translateX(4px)
|
||||||
|
}
|
||||||
|
&:hover .notification-badge {
|
||||||
|
transform: translate(calc(20% + 4px), -20%);
|
||||||
|
}
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
@@ -33,7 +43,7 @@
|
|||||||
|
|
||||||
width: 3px;
|
width: 3px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background-color: var(--ic-surface-normal);
|
background-color: var(--tc-surface-high);
|
||||||
border-radius: 0 4px 4px 0;
|
border-radius: 0 4px 4px 0;
|
||||||
transition: height 200ms linear;
|
transition: height 200ms linear;
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
import React, { useState, useRef } from 'react';
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './CreateRoom.scss';
|
import './CreateRoom.scss';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
|
import cons from '../../../client/state/cons';
|
||||||
import { isRoomAliasAvailable } from '../../../util/matrixUtil';
|
import { isRoomAliasAvailable } from '../../../util/matrixUtil';
|
||||||
import * as roomActions from '../../../client/action/room';
|
import * as roomActions from '../../../client/action/room';
|
||||||
import { selectRoom } from '../../../client/action/navigation';
|
import { selectRoom } from '../../../client/action/navigation';
|
||||||
@@ -51,6 +52,20 @@ function CreateRoom({ isOpen, onRequestClose }) {
|
|||||||
setRoleIndex(0);
|
setRoleIndex(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const onCreated = (roomId) => {
|
||||||
|
resetForm();
|
||||||
|
selectRoom(roomId);
|
||||||
|
onRequestClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const { roomList } = initMatrix;
|
||||||
|
roomList.on(cons.events.roomList.ROOM_CREATED, onCreated);
|
||||||
|
return () => {
|
||||||
|
roomList.removeListener(cons.events.roomList.ROOM_CREATED, onCreated);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
async function createRoom() {
|
async function createRoom() {
|
||||||
if (isCreatingRoom) return;
|
if (isCreatingRoom) return;
|
||||||
updateIsCreatingRoom(true);
|
updateIsCreatingRoom(true);
|
||||||
@@ -67,13 +82,9 @@ function CreateRoom({ isOpen, onRequestClose }) {
|
|||||||
const powerLevel = roleIndex === 1 ? 101 : undefined;
|
const powerLevel = roleIndex === 1 ? 101 : undefined;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const result = await roomActions.create({
|
await roomActions.create({
|
||||||
name, topic, isPublic, roomAlias, isEncrypted, powerLevel,
|
name, topic, isPublic, roomAlias, isEncrypted, powerLevel,
|
||||||
});
|
});
|
||||||
|
|
||||||
resetForm();
|
|
||||||
selectRoom(result.room_id);
|
|
||||||
onRequestClose();
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message === 'M_UNKNOWN: Invalid characters in room alias') {
|
if (e.message === 'M_UNKNOWN: Invalid characters in room alias') {
|
||||||
updateCreatingError('ERROR: Invalid characters in room address');
|
updateCreatingError('ERROR: Invalid characters in room address');
|
||||||
@@ -82,8 +93,8 @@ function CreateRoom({ isOpen, onRequestClose }) {
|
|||||||
updateCreatingError('ERROR: Room address is already in use');
|
updateCreatingError('ERROR: Room address is already in use');
|
||||||
updateIsValidAddress(false);
|
updateIsValidAddress(false);
|
||||||
} else updateCreatingError(e.message);
|
} else updateCreatingError(e.message);
|
||||||
|
updateIsCreatingRoom(false);
|
||||||
}
|
}
|
||||||
updateIsCreatingRoom(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function validateAddress(e) {
|
function validateAddress(e) {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import './InviteList.scss';
|
|||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import * as roomActions from '../../../client/action/room';
|
import * as roomActions from '../../../client/action/room';
|
||||||
import { selectRoom, selectSpace } from '../../../client/action/navigation';
|
import { selectRoom, selectTab } 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';
|
||||||
@@ -38,7 +38,7 @@ function InviteList({ isOpen, onRequestClose }) {
|
|||||||
const room = initMatrix.matrixClient.getRoom(roomId);
|
const room = initMatrix.matrixClient.getRoom(roomId);
|
||||||
const isRejected = room === null || room?.getMyMembership() !== 'join';
|
const isRejected = room === null || room?.getMyMembership() !== 'join';
|
||||||
if (!isRejected) {
|
if (!isRejected) {
|
||||||
if (room.isSpaceRoom()) selectSpace(roomId);
|
if (room.isSpaceRoom()) selectTab(roomId);
|
||||||
else selectRoom(roomId);
|
else selectRoom(roomId);
|
||||||
onRequestClose();
|
onRequestClose();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
&::before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
z-index: 99;
|
||||||
content: '';
|
content: '';
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import React, { useState, useEffect, useRef } from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './DrawerBreadcrumb.scss';
|
import './DrawerBreadcrumb.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import { selectSpace } from '../../../client/action/navigation';
|
import { selectSpace } from '../../../client/action/navigation';
|
||||||
@@ -101,7 +103,7 @@ function DrawerBreadcrumb({ spaceId }) {
|
|||||||
className={index === spacePath.length - 1 ? 'breadcrumb__btn--selected' : ''}
|
className={index === spacePath.length - 1 ? 'breadcrumb__btn--selected' : ''}
|
||||||
onClick={() => selectSpace(id)}
|
onClick={() => selectSpace(id)}
|
||||||
>
|
>
|
||||||
<Text variant="b2">{id === cons.tabs.HOME ? 'Home' : mx.getRoom(id).name}</Text>
|
<Text variant="b2">{id === cons.tabs.HOME ? 'Home' : twemojify(mx.getRoom(id).name)}</Text>
|
||||||
{ noti !== null && (
|
{ noti !== null && (
|
||||||
<NotificationBadge
|
<NotificationBadge
|
||||||
alert={noti.highlight !== 0}
|
alert={noti.highlight !== 0}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import {
|
import {
|
||||||
@@ -30,7 +32,7 @@ function DrawerHeader({ selectedTab, spaceId }) {
|
|||||||
return (
|
return (
|
||||||
<Header>
|
<Header>
|
||||||
<TitleWrapper>
|
<TitleWrapper>
|
||||||
<Text variant="s1">{spaceName || tabName}</Text>
|
<Text variant="s1">{twemojify(spaceName) || tabName}</Text>
|
||||||
</TitleWrapper>
|
</TitleWrapper>
|
||||||
{spaceName && (
|
{spaceName && (
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import cons from '../../../client/state/cons';
|
|||||||
import colorMXID from '../../../util/colorMXID';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
import logout from '../../../client/action/logout';
|
import logout from '../../../client/action/logout';
|
||||||
import {
|
import {
|
||||||
selectTab, openInviteList, openPublicRooms, openSettings,
|
selectTab, openInviteList, openSearch, openSettings,
|
||||||
} from '../../../client/action/navigation';
|
} from '../../../client/action/navigation';
|
||||||
import navigation from '../../../client/state/navigation';
|
import navigation from '../../../client/state/navigation';
|
||||||
import { abbreviateNumber } from '../../../util/common';
|
import { abbreviateNumber } from '../../../util/common';
|
||||||
@@ -17,7 +17,7 @@ import ContextMenu, { MenuItem, MenuHeader, MenuBorder } from '../../atoms/conte
|
|||||||
|
|
||||||
import HomeIC from '../../../../public/res/ic/outlined/home.svg';
|
import HomeIC from '../../../../public/res/ic/outlined/home.svg';
|
||||||
import UserIC from '../../../../public/res/ic/outlined/user.svg';
|
import UserIC from '../../../../public/res/ic/outlined/user.svg';
|
||||||
import HashSearchIC from '../../../../public/res/ic/outlined/hash-search.svg';
|
import SearchIC from '../../../../public/res/ic/outlined/search.svg';
|
||||||
import InviteIC from '../../../../public/res/ic/outlined/invite.svg';
|
import InviteIC from '../../../../public/res/ic/outlined/invite.svg';
|
||||||
import SettingsIC from '../../../../public/res/ic/outlined/settings.svg';
|
import SettingsIC from '../../../../public/res/ic/outlined/settings.svg';
|
||||||
import PowerIC from '../../../../public/res/ic/outlined/power.svg';
|
import PowerIC from '../../../../public/res/ic/outlined/power.svg';
|
||||||
@@ -70,7 +70,7 @@ function ProfileAvatarMenu() {
|
|||||||
tooltip={profile.displayName}
|
tooltip={profile.displayName}
|
||||||
imageSrc={profile.avatarUrl !== null ? mx.mxcUrlToHttp(profile.avatarUrl, 42, 42, 'crop') : null}
|
imageSrc={profile.avatarUrl !== null ? mx.mxcUrlToHttp(profile.avatarUrl, 42, 42, 'crop') : null}
|
||||||
bgColor={colorMXID(mx.getUserId())}
|
bgColor={colorMXID(mx.getUserId())}
|
||||||
text={profile.displayName.slice(0, 1)}
|
text={profile.displayName}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
@@ -175,7 +175,6 @@ function SideBar() {
|
|||||||
notificationCount={dmsNoti !== null ? abbreviateNumber(dmsNoti.total) : 0}
|
notificationCount={dmsNoti !== null ? abbreviateNumber(dmsNoti.total) : 0}
|
||||||
isAlert={dmsNoti?.highlight > 0}
|
isAlert={dmsNoti?.highlight > 0}
|
||||||
/>
|
/>
|
||||||
<SidebarAvatar onClick={() => openPublicRooms()} tooltip="Public rooms" iconSrc={HashSearchIC} />
|
|
||||||
</div>
|
</div>
|
||||||
<div className="sidebar-divider" />
|
<div className="sidebar-divider" />
|
||||||
<div className="space-container">
|
<div className="space-container">
|
||||||
@@ -190,7 +189,7 @@ function SideBar() {
|
|||||||
tooltip={room.name}
|
tooltip={room.name}
|
||||||
bgColor={colorMXID(room.roomId)}
|
bgColor={colorMXID(room.roomId)}
|
||||||
imageSrc={room.getAvatarUrl(initMatrix.matrixClient.baseUrl, 42, 42, 'crop') || null}
|
imageSrc={room.getAvatarUrl(initMatrix.matrixClient.baseUrl, 42, 42, 'crop') || null}
|
||||||
text={room.name.slice(0, 1)}
|
text={room.name}
|
||||||
isUnread={notifications.hasNoti(sRoomId)}
|
isUnread={notifications.hasNoti(sRoomId)}
|
||||||
notificationCount={abbreviateNumber(notifications.getTotalNoti(sRoomId))}
|
notificationCount={abbreviateNumber(notifications.getTotalNoti(sRoomId))}
|
||||||
isAlert={notifications.getHighlightNoti(sRoomId) !== 0}
|
isAlert={notifications.getHighlightNoti(sRoomId) !== 0}
|
||||||
@@ -206,6 +205,11 @@ function SideBar() {
|
|||||||
<div className="sidebar__sticky">
|
<div className="sidebar__sticky">
|
||||||
<div className="sidebar-divider" />
|
<div className="sidebar-divider" />
|
||||||
<div className="sticky-container">
|
<div className="sticky-container">
|
||||||
|
<SidebarAvatar
|
||||||
|
onClick={() => openSearch()}
|
||||||
|
tooltip="Search"
|
||||||
|
iconSrc={SearchIC}
|
||||||
|
/>
|
||||||
{ totalInvites !== 0 && (
|
{ totalInvites !== 0 && (
|
||||||
<SidebarAvatar
|
<SidebarAvatar
|
||||||
isUnread
|
isUnread
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
width: var(--navigation-sidebar-width);
|
width: var(--navigation-sidebar-width);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border-right: 1px solid var(--bg-surface-border);
|
border-right: 1px solid var(--bg-surface-border);
|
||||||
|
background-color: var(--bg-surface-extra-low);
|
||||||
|
|
||||||
[dir=rtl] & {
|
[dir=rtl] & {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
@@ -41,8 +42,8 @@
|
|||||||
background: transparent;
|
background: transparent;
|
||||||
background-image: linear-gradient(
|
background-image: linear-gradient(
|
||||||
to top,
|
to top,
|
||||||
var(--bg-surface-low),
|
var(--bg-surface-extra-low),
|
||||||
var(--bg-surface-low-transparent));
|
var(--bg-surface-extra-low-transparent));
|
||||||
position: sticky;
|
position: sticky;
|
||||||
bottom: -1px;
|
bottom: -1px;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import React, { useState, useEffect, useRef } from 'react';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './ProfileViewer.scss';
|
import './ProfileViewer.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import navigation from '../../../client/state/navigation';
|
import navigation from '../../../client/state/navigation';
|
||||||
@@ -93,10 +95,23 @@ function ProfileFooter({ roomId, userId, onRequestClose }) {
|
|||||||
const [isInvited, setIsInvited] = useState(member?.membership === 'invite');
|
const [isInvited, setIsInvited] = useState(member?.membership === 'invite');
|
||||||
|
|
||||||
const myPowerlevel = room.getMember(mx.getUserId()).powerLevel;
|
const myPowerlevel = room.getMember(mx.getUserId()).powerLevel;
|
||||||
const canIKick = room.currentState.hasSufficientPowerLevelFor('kick', myPowerlevel);
|
const userPL = room.getMember(userId)?.powerLevel || 0;
|
||||||
|
const canIKick = room.currentState.hasSufficientPowerLevelFor('kick', myPowerlevel) && userPL < myPowerlevel;
|
||||||
|
|
||||||
useEffect(() => () => {
|
const onCreated = (dmRoomId) => {
|
||||||
isMountedRef.current = false;
|
if (isMountedRef.current === false) return;
|
||||||
|
setIsCreatingDM(false);
|
||||||
|
selectRoom(dmRoomId);
|
||||||
|
onRequestClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const { roomList } = initMatrix;
|
||||||
|
roomList.on(cons.events.roomList.ROOM_CREATED, onCreated);
|
||||||
|
return () => {
|
||||||
|
isMountedRef.current = false;
|
||||||
|
roomList.removeListener(cons.events.roomList.ROOM_CREATED, onCreated);
|
||||||
|
};
|
||||||
}, []);
|
}, []);
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setIsUserIgnored(initMatrix.matrixClient.isUserIgnored(userId));
|
setIsUserIgnored(initMatrix.matrixClient.isUserIgnored(userId));
|
||||||
@@ -111,7 +126,7 @@ function ProfileFooter({ roomId, userId, onRequestClose }) {
|
|||||||
for (let i = 0; i < directIds.length; i += 1) {
|
for (let i = 0; i < directIds.length; i += 1) {
|
||||||
const dRoom = mx.getRoom(directIds[i]);
|
const dRoom = mx.getRoom(directIds[i]);
|
||||||
const roomMembers = dRoom.getMembers();
|
const roomMembers = dRoom.getMembers();
|
||||||
if (roomMembers.length <= 2 && dRoom.currentState.members[userId]) {
|
if (roomMembers.length <= 2 && dRoom.getMember(userId)) {
|
||||||
selectRoom(directIds[i]);
|
selectRoom(directIds[i]);
|
||||||
onRequestClose();
|
onRequestClose();
|
||||||
return;
|
return;
|
||||||
@@ -121,17 +136,13 @@ function ProfileFooter({ roomId, userId, onRequestClose }) {
|
|||||||
// Create new DM
|
// Create new DM
|
||||||
try {
|
try {
|
||||||
setIsCreatingDM(true);
|
setIsCreatingDM(true);
|
||||||
const result = await roomActions.create({
|
await roomActions.create({
|
||||||
isEncrypted: true,
|
isEncrypted: true,
|
||||||
isDirect: true,
|
isDirect: true,
|
||||||
invite: [userId],
|
invite: [userId],
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isMountedRef.current === false) return;
|
|
||||||
setIsCreatingDM(false);
|
|
||||||
selectRoom(result.room_id);
|
|
||||||
onRequestClose();
|
|
||||||
} catch {
|
} catch {
|
||||||
|
if (isMountedRef.current === false) return;
|
||||||
setIsCreatingDM(false);
|
setIsCreatingDM(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -249,21 +260,21 @@ function ProfileViewer() {
|
|||||||
}, [isOpen]);
|
}, [isOpen]);
|
||||||
|
|
||||||
function renderProfile() {
|
function renderProfile() {
|
||||||
const member = room.getMember(userId) || mx.getUser(userId);
|
const member = room.getMember(userId) || mx.getUser(userId) || {};
|
||||||
const avatarMxc = member.getMxcAvatarUrl() || member.avatarUrl;
|
const avatarMxc = member.getMxcAvatarUrl?.() || member.avatarUrl;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="profile-viewer">
|
<div className="profile-viewer">
|
||||||
<div className="profile-viewer__user">
|
<div className="profile-viewer__user">
|
||||||
<Avatar
|
<Avatar
|
||||||
imageSrc={!avatarMxc ? null : mx.mxcUrlToHttp(avatarMxc, 80, 80, 'crop')}
|
imageSrc={!avatarMxc ? null : mx.mxcUrlToHttp(avatarMxc, 80, 80, 'crop')}
|
||||||
text={username.slice(0, 1)}
|
text={username}
|
||||||
bgColor={colorMXID(userId)}
|
bgColor={colorMXID(userId)}
|
||||||
size="large"
|
size="large"
|
||||||
/>
|
/>
|
||||||
<div className="profile-viewer__user__info">
|
<div className="profile-viewer__user__info">
|
||||||
<Text variant="s1">{username}</Text>
|
<Text variant="s1">{twemojify(username)}</Text>
|
||||||
<Text variant="b2">{userId}</Text>
|
<Text variant="b2">{twemojify(userId)}</Text>
|
||||||
</div>
|
</div>
|
||||||
<div className="profile-viewer__user__role">
|
<div className="profile-viewer__user__role">
|
||||||
<Text variant="b3">Role</Text>
|
<Text variant="b3">Role</Text>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
border-bottom: 1px solid var(--bg-surface-border);
|
border-bottom: 1px solid var(--bg-surface-border);
|
||||||
|
|
||||||
&__info {
|
&__info {
|
||||||
align-self: end;
|
align-self: flex-end;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
&__role {
|
&__role {
|
||||||
align-self: end;
|
align-self: flex-end;
|
||||||
& > .text {
|
& > .text {
|
||||||
margin-bottom: var(--sp-ultra-tight);
|
margin-bottom: var(--sp-ultra-tight);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,12 +2,14 @@ import React from 'react';
|
|||||||
|
|
||||||
import ReadReceipts from '../read-receipts/ReadReceipts';
|
import ReadReceipts from '../read-receipts/ReadReceipts';
|
||||||
import ProfileViewer from '../profile-viewer/ProfileViewer';
|
import ProfileViewer from '../profile-viewer/ProfileViewer';
|
||||||
|
import Search from '../search/Search';
|
||||||
|
|
||||||
function Dialogs() {
|
function Dialogs() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ReadReceipts />
|
<ReadReceipts />
|
||||||
<ProfileViewer />
|
<ProfileViewer />
|
||||||
|
<Search />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,27 +15,15 @@ import { openProfileViewer } from '../../../client/action/navigation';
|
|||||||
|
|
||||||
function ReadReceipts() {
|
function ReadReceipts() {
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
const [readers, setReaders] = useState([]);
|
||||||
const [roomId, setRoomId] = useState(null);
|
const [roomId, setRoomId] = useState(null);
|
||||||
const [readReceipts, setReadReceipts] = useState([]);
|
|
||||||
|
|
||||||
function loadReadReceipts(myRoomId, eventId) {
|
|
||||||
const mx = initMatrix.matrixClient;
|
|
||||||
const room = mx.getRoom(myRoomId);
|
|
||||||
const { timeline } = room;
|
|
||||||
const myReadReceipts = [];
|
|
||||||
|
|
||||||
const myEventIndex = timeline.findIndex((mEvent) => mEvent.getId() === eventId);
|
|
||||||
|
|
||||||
for (let eventIndex = myEventIndex; eventIndex < timeline.length; eventIndex += 1) {
|
|
||||||
myReadReceipts.push(...room.getReceiptsForEvent(timeline[eventIndex]));
|
|
||||||
}
|
|
||||||
|
|
||||||
setReadReceipts(myReadReceipts);
|
|
||||||
setRoomId(myRoomId);
|
|
||||||
setIsOpen(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
const loadReadReceipts = (rId, userIds) => {
|
||||||
|
setReaders(userIds);
|
||||||
|
setRoomId(rId);
|
||||||
|
setIsOpen(true);
|
||||||
|
};
|
||||||
navigation.on(cons.events.navigation.READRECEIPTS_OPENED, loadReadReceipts);
|
navigation.on(cons.events.navigation.READRECEIPTS_OPENED, loadReadReceipts);
|
||||||
return () => {
|
return () => {
|
||||||
navigation.removeListener(cons.events.navigation.READRECEIPTS_OPENED, loadReadReceipts);
|
navigation.removeListener(cons.events.navigation.READRECEIPTS_OPENED, loadReadReceipts);
|
||||||
@@ -44,28 +32,28 @@ function ReadReceipts() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isOpen === false) {
|
if (isOpen === false) {
|
||||||
|
setReaders([]);
|
||||||
setRoomId(null);
|
setRoomId(null);
|
||||||
setReadReceipts([]);
|
|
||||||
}
|
}
|
||||||
}, [isOpen]);
|
}, [isOpen]);
|
||||||
|
|
||||||
function renderPeople(receipt) {
|
function renderPeople(userId) {
|
||||||
const room = initMatrix.matrixClient.getRoom(roomId);
|
const room = initMatrix.matrixClient.getRoom(roomId);
|
||||||
const member = room.getMember(receipt.userId);
|
const member = room.getMember(userId);
|
||||||
const getUserDisplayName = (userId) => {
|
const getUserDisplayName = () => {
|
||||||
if (room?.getMember(userId)) return getUsernameOfRoomMember(room.getMember(userId));
|
if (room?.getMember(userId)) return getUsernameOfRoomMember(room.getMember(userId));
|
||||||
return getUsername(userId);
|
return getUsername(userId);
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<PeopleSelector
|
<PeopleSelector
|
||||||
key={receipt.userId}
|
key={userId}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setIsOpen(false);
|
setIsOpen(false);
|
||||||
openProfileViewer(receipt.userId, roomId);
|
openProfileViewer(userId, roomId);
|
||||||
}}
|
}}
|
||||||
avatarSrc={member?.getAvatarUrl(initMatrix.matrixClient.baseUrl, 24, 24, 'crop')}
|
avatarSrc={member?.getAvatarUrl(initMatrix.matrixClient.baseUrl, 24, 24, 'crop')}
|
||||||
name={getUserDisplayName(receipt.userId)}
|
name={getUserDisplayName(userId)}
|
||||||
color={colorMXID(receipt.userId)}
|
color={colorMXID(userId)}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -78,7 +66,7 @@ function ReadReceipts() {
|
|||||||
contentOptions={<IconButton src={CrossIC} onClick={() => setIsOpen(false)} tooltip="Close" />}
|
contentOptions={<IconButton src={CrossIC} onClick={() => setIsOpen(false)} tooltip="Close" />}
|
||||||
>
|
>
|
||||||
{
|
{
|
||||||
readReceipts.map(renderPeople)
|
readers.map(renderPeople)
|
||||||
}
|
}
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
import React, { useState, useEffect, useRef } from 'react';
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
import './RoomOptions.scss';
|
import './RoomOptions.scss';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import navigation from '../../../client/state/navigation';
|
import navigation from '../../../client/state/navigation';
|
||||||
@@ -9,6 +11,7 @@ import * as roomActions from '../../../client/action/room';
|
|||||||
|
|
||||||
import ContextMenu, { MenuHeader, MenuItem } from '../../atoms/context-menu/ContextMenu';
|
import ContextMenu, { MenuHeader, MenuItem } from '../../atoms/context-menu/ContextMenu';
|
||||||
|
|
||||||
|
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
||||||
import BellIC from '../../../../public/res/ic/outlined/bell.svg';
|
import BellIC from '../../../../public/res/ic/outlined/bell.svg';
|
||||||
import BellRingIC from '../../../../public/res/ic/outlined/bell-ring.svg';
|
import BellRingIC from '../../../../public/res/ic/outlined/bell-ring.svg';
|
||||||
import BellPingIC from '../../../../public/res/ic/outlined/bell-ping.svg';
|
import BellPingIC from '../../../../public/res/ic/outlined/bell-ping.svg';
|
||||||
@@ -146,9 +149,20 @@ function RoomOptions() {
|
|||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const handleMarkAsRead = () => {
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const room = mx.getRoom(roomId);
|
||||||
|
if (!room) return;
|
||||||
|
const events = room.getLiveTimeline().getEvents();
|
||||||
|
mx.sendReadReceipt(events[events.length - 1]);
|
||||||
|
};
|
||||||
|
|
||||||
const handleInviteClick = () => openInviteUser(roomId);
|
const handleInviteClick = () => openInviteUser(roomId);
|
||||||
const handleLeaveClick = () => {
|
const handleLeaveClick = (toggleMenu) => {
|
||||||
if (confirm('Are you really want to leave this room?')) roomActions.leave(roomId);
|
if (confirm('Are you really want to leave this room?')) {
|
||||||
|
roomActions.leave(roomId);
|
||||||
|
toggleMenu();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function setNotif(nState, currentNState) {
|
function setNotif(nState, currentNState) {
|
||||||
@@ -163,7 +177,15 @@ function RoomOptions() {
|
|||||||
maxWidth={298}
|
maxWidth={298}
|
||||||
content={(toggleMenu) => (
|
content={(toggleMenu) => (
|
||||||
<>
|
<>
|
||||||
<MenuHeader>{`Options for ${initMatrix.matrixClient.getRoom(roomId)?.name}`}</MenuHeader>
|
<MenuHeader>{twemojify(`Options for ${initMatrix.matrixClient.getRoom(roomId)?.name}`)}</MenuHeader>
|
||||||
|
<MenuItem
|
||||||
|
iconSrc={TickMarkIC}
|
||||||
|
onClick={() => {
|
||||||
|
handleMarkAsRead(); toggleMenu();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Mark as read
|
||||||
|
</MenuItem>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
iconSrc={AddUserIC}
|
iconSrc={AddUserIC}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@@ -172,7 +194,7 @@ function RoomOptions() {
|
|||||||
>
|
>
|
||||||
Invite
|
Invite
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem iconSrc={LeaveArrowIC} variant="danger" onClick={handleLeaveClick}>Leave</MenuItem>
|
<MenuItem iconSrc={LeaveArrowIC} variant="danger" onClick={() => handleLeaveClick(toggleMenu)}>Leave</MenuItem>
|
||||||
<MenuHeader>Notification</MenuHeader>
|
<MenuHeader>Notification</MenuHeader>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
variant={notifState === cons.notifs.DEFAULT ? 'positive' : 'surface'}
|
variant={notifState === cons.notifs.DEFAULT ? 'positive' : 'surface'}
|
||||||
|
|||||||
@@ -61,7 +61,6 @@ function PeopleDrawer({ roomId }) {
|
|||||||
const PER_PAGE_MEMBER = 50;
|
const PER_PAGE_MEMBER = 50;
|
||||||
const mx = initMatrix.matrixClient;
|
const mx = initMatrix.matrixClient;
|
||||||
const room = mx.getRoom(roomId);
|
const room = mx.getRoom(roomId);
|
||||||
let isRoomChanged = false;
|
|
||||||
|
|
||||||
const [itemCount, setItemCount] = useState(PER_PAGE_MEMBER);
|
const [itemCount, setItemCount] = useState(PER_PAGE_MEMBER);
|
||||||
const [membership, setMembership] = useState('join');
|
const [membership, setMembership] = useState('join');
|
||||||
@@ -104,9 +103,9 @@ function PeopleDrawer({ roomId }) {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let isGettingMembers = true;
|
let isGettingMembers = true;
|
||||||
|
let isRoomChanged = false;
|
||||||
const updateMemberList = (event) => {
|
const updateMemberList = (event) => {
|
||||||
if (isGettingMembers) return;
|
if (isGettingMembers) return;
|
||||||
console.log(event?.event?.room_id);
|
|
||||||
if (event && event?.event?.room_id !== roomId) return;
|
if (event && event?.event?.room_id !== roomId) return;
|
||||||
setMemberList(
|
setMemberList(
|
||||||
simplyfiMembers(
|
simplyfiMembers(
|
||||||
|
|||||||
@@ -1,38 +1,50 @@
|
|||||||
import React, { useState, useEffect } from 'react';
|
import React, { useState, useEffect } from 'react';
|
||||||
import './Room.scss';
|
import './Room.scss';
|
||||||
|
|
||||||
|
import initMatrix from '../../../client/initMatrix';
|
||||||
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 settings from '../../../client/state/settings';
|
||||||
|
import RoomTimeline from '../../../client/state/RoomTimeline';
|
||||||
|
|
||||||
import Welcome from '../welcome/Welcome';
|
import Welcome from '../welcome/Welcome';
|
||||||
import RoomView from './RoomView';
|
import RoomView from './RoomView';
|
||||||
import PeopleDrawer from './PeopleDrawer';
|
import PeopleDrawer from './PeopleDrawer';
|
||||||
|
|
||||||
function Room() {
|
function Room() {
|
||||||
const [selectedRoomId, changeSelectedRoomId] = useState(null);
|
const [roomTimeline, setRoomTimeline] = useState(null);
|
||||||
const [isDrawerVisible, toggleDrawerVisiblity] = useState(navigation.isPeopleDrawerVisible);
|
const [eventId, setEventId] = useState(null);
|
||||||
useEffect(() => {
|
const [isDrawer, setIsDrawer] = useState(settings.isPeopleDrawer);
|
||||||
const handleRoomSelected = (roomId) => {
|
|
||||||
changeSelectedRoomId(roomId);
|
|
||||||
};
|
|
||||||
const handleDrawerToggling = (visiblity) => {
|
|
||||||
toggleDrawerVisiblity(visiblity);
|
|
||||||
};
|
|
||||||
navigation.on(cons.events.navigation.ROOM_SELECTED, handleRoomSelected);
|
|
||||||
navigation.on(cons.events.navigation.PEOPLE_DRAWER_TOGGLED, handleDrawerToggling);
|
|
||||||
|
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const handleRoomSelected = (rId, pRoomId, eId) => {
|
||||||
|
if (mx.getRoom(rId)) {
|
||||||
|
setRoomTimeline(new RoomTimeline(rId, initMatrix.notifications));
|
||||||
|
setEventId(eId);
|
||||||
|
} else {
|
||||||
|
// TODO: add ability to join room if roomId is invalid
|
||||||
|
setRoomTimeline(null);
|
||||||
|
setEventId(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const handleDrawerToggling = (visiblity) => setIsDrawer(visiblity);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
navigation.on(cons.events.navigation.ROOM_SELECTED, handleRoomSelected);
|
||||||
|
settings.on(cons.events.settings.PEOPLE_DRAWER_TOGGLED, handleDrawerToggling);
|
||||||
return () => {
|
return () => {
|
||||||
navigation.removeListener(cons.events.navigation.ROOM_SELECTED, handleRoomSelected);
|
navigation.removeListener(cons.events.navigation.ROOM_SELECTED, handleRoomSelected);
|
||||||
navigation.removeListener(cons.events.navigation.PEOPLE_DRAWER_TOGGLED, handleDrawerToggling);
|
settings.removeListener(cons.events.settings.PEOPLE_DRAWER_TOGGLED, handleDrawerToggling);
|
||||||
|
roomTimeline?.removeInternalListeners();
|
||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
if (selectedRoomId === null) return <Welcome />;
|
if (roomTimeline === null) return <Welcome />;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="room-container">
|
<div className="room-container">
|
||||||
<RoomView roomId={selectedRoomId} />
|
<RoomView roomTimeline={roomTimeline} eventId={eventId} />
|
||||||
{ isDrawerVisible && <PeopleDrawer roomId={selectedRoomId} />}
|
{ isDrawer && <PeopleDrawer roomId={roomTimeline.roomId} />}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,150 +1,58 @@
|
|||||||
import React, { useState, useEffect, useRef } from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import './RoomView.scss';
|
import './RoomView.scss';
|
||||||
|
|
||||||
import EventEmitter from 'events';
|
import EventEmitter from 'events';
|
||||||
|
|
||||||
import RoomTimeline from '../../../client/state/RoomTimeline';
|
|
||||||
|
|
||||||
import ScrollView from '../../atoms/scroll/ScrollView';
|
|
||||||
|
|
||||||
import RoomViewHeader from './RoomViewHeader';
|
import RoomViewHeader from './RoomViewHeader';
|
||||||
import RoomViewContent from './RoomViewContent';
|
import RoomViewContent from './RoomViewContent';
|
||||||
import RoomViewFloating from './RoomViewFloating';
|
import RoomViewFloating from './RoomViewFloating';
|
||||||
import RoomViewInput from './RoomViewInput';
|
import RoomViewInput from './RoomViewInput';
|
||||||
import RoomViewCmdBar from './RoomViewCmdBar';
|
import RoomViewCmdBar from './RoomViewCmdBar';
|
||||||
|
|
||||||
import { scrollToBottom, isAtBottom, autoScrollToBottom } from './common';
|
|
||||||
|
|
||||||
const viewEvent = new EventEmitter();
|
const viewEvent = new EventEmitter();
|
||||||
|
|
||||||
let lastScrollTop = 0;
|
function RoomView({ roomTimeline, eventId }) {
|
||||||
let lastScrollHeight = 0;
|
// eslint-disable-next-line react/prop-types
|
||||||
let isReachedBottom = true;
|
const { roomId } = roomTimeline;
|
||||||
let isReachedTop = false;
|
|
||||||
function RoomView({ roomId }) {
|
|
||||||
const [roomTimeline, updateRoomTimeline] = useState(null);
|
|
||||||
const timelineSVRef = useRef(null);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
roomTimeline?.removeInternalListeners();
|
|
||||||
updateRoomTimeline(new RoomTimeline(roomId));
|
|
||||||
isReachedBottom = true;
|
|
||||||
isReachedTop = false;
|
|
||||||
}, [roomId]);
|
|
||||||
|
|
||||||
const timelineScroll = {
|
|
||||||
reachBottom() {
|
|
||||||
scrollToBottom(timelineSVRef);
|
|
||||||
},
|
|
||||||
autoReachBottom() {
|
|
||||||
autoScrollToBottom(timelineSVRef);
|
|
||||||
},
|
|
||||||
tryRestoringScroll() {
|
|
||||||
const sv = timelineSVRef.current;
|
|
||||||
const { scrollHeight } = sv;
|
|
||||||
|
|
||||||
if (lastScrollHeight === scrollHeight) return;
|
|
||||||
|
|
||||||
if (lastScrollHeight < scrollHeight) {
|
|
||||||
sv.scrollTop = lastScrollTop + (scrollHeight - lastScrollHeight);
|
|
||||||
} else {
|
|
||||||
timelineScroll.reachBottom();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
enableSmoothScroll() {
|
|
||||||
timelineSVRef.current.style.scrollBehavior = 'smooth';
|
|
||||||
},
|
|
||||||
disableSmoothScroll() {
|
|
||||||
timelineSVRef.current.style.scrollBehavior = 'auto';
|
|
||||||
},
|
|
||||||
isScrollable() {
|
|
||||||
const oHeight = timelineSVRef.current.offsetHeight;
|
|
||||||
const sHeight = timelineSVRef.current.scrollHeight;
|
|
||||||
if (sHeight > oHeight) return true;
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
function onTimelineScroll(e) {
|
|
||||||
const { scrollTop, scrollHeight, offsetHeight } = e.target;
|
|
||||||
const scrollBottom = scrollTop + offsetHeight;
|
|
||||||
lastScrollTop = scrollTop;
|
|
||||||
lastScrollHeight = scrollHeight;
|
|
||||||
|
|
||||||
const PLACEHOLDER_HEIGHT = 96;
|
|
||||||
const PLACEHOLDER_COUNT = 3;
|
|
||||||
|
|
||||||
const topPagKeyPoint = PLACEHOLDER_COUNT * PLACEHOLDER_HEIGHT;
|
|
||||||
const bottomPagKeyPoint = scrollHeight - (offsetHeight / 2);
|
|
||||||
|
|
||||||
if (!isReachedBottom && isAtBottom(timelineSVRef)) {
|
|
||||||
isReachedBottom = true;
|
|
||||||
viewEvent.emit('toggle-reached-bottom', true);
|
|
||||||
}
|
|
||||||
if (isReachedBottom && !isAtBottom(timelineSVRef)) {
|
|
||||||
isReachedBottom = false;
|
|
||||||
viewEvent.emit('toggle-reached-bottom', false);
|
|
||||||
}
|
|
||||||
// TOP of timeline
|
|
||||||
if (scrollTop < topPagKeyPoint && isReachedTop === false) {
|
|
||||||
isReachedTop = true;
|
|
||||||
viewEvent.emit('reached-top');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
isReachedTop = false;
|
|
||||||
|
|
||||||
// BOTTOM of timeline
|
|
||||||
if (scrollBottom > bottomPagKeyPoint) {
|
|
||||||
// TODO:
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="room-view">
|
<div className="room-view">
|
||||||
<RoomViewHeader roomId={roomId} />
|
<RoomViewHeader roomId={roomId} />
|
||||||
<div className="room-view__content-wrapper">
|
<div className="room-view__content-wrapper">
|
||||||
<div className="room-view__scrollable">
|
<div className="room-view__scrollable">
|
||||||
<ScrollView onScroll={onTimelineScroll} ref={timelineSVRef} autoHide>
|
<RoomViewContent
|
||||||
{roomTimeline !== null && (
|
eventId={eventId}
|
||||||
<RoomViewContent
|
roomTimeline={roomTimeline}
|
||||||
roomId={roomId}
|
/>
|
||||||
roomTimeline={roomTimeline}
|
<RoomViewFloating
|
||||||
timelineScroll={timelineScroll}
|
roomId={roomId}
|
||||||
viewEvent={viewEvent}
|
roomTimeline={roomTimeline}
|
||||||
/>
|
/>
|
||||||
)}
|
</div>
|
||||||
</ScrollView>
|
<div className="room-view__sticky">
|
||||||
{roomTimeline !== null && (
|
<RoomViewInput
|
||||||
<RoomViewFloating
|
roomId={roomId}
|
||||||
roomId={roomId}
|
roomTimeline={roomTimeline}
|
||||||
roomTimeline={roomTimeline}
|
viewEvent={viewEvent}
|
||||||
timelineScroll={timelineScroll}
|
/>
|
||||||
viewEvent={viewEvent}
|
<RoomViewCmdBar
|
||||||
/>
|
roomId={roomId}
|
||||||
)}
|
roomTimeline={roomTimeline}
|
||||||
|
viewEvent={viewEvent}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
{roomTimeline !== null && (
|
|
||||||
<div className="room-view__sticky">
|
|
||||||
<RoomViewInput
|
|
||||||
roomId={roomId}
|
|
||||||
roomTimeline={roomTimeline}
|
|
||||||
timelineScroll={timelineScroll}
|
|
||||||
viewEvent={viewEvent}
|
|
||||||
/>
|
|
||||||
<RoomViewCmdBar
|
|
||||||
roomId={roomId}
|
|
||||||
roomTimeline={roomTimeline}
|
|
||||||
viewEvent={viewEvent}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RoomView.defaultProps = {
|
||||||
|
eventId: null,
|
||||||
|
};
|
||||||
RoomView.propTypes = {
|
RoomView.propTypes = {
|
||||||
roomId: PropTypes.string.isRequired,
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
|
eventId: PropTypes.string,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default RoomView;
|
export default RoomView;
|
||||||
|
|||||||
@@ -6,31 +6,19 @@ import parse from 'html-react-parser';
|
|||||||
import twemoji from 'twemoji';
|
import twemoji from 'twemoji';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
|
||||||
import { toggleMarkdown } from '../../../client/action/settings';
|
import { toggleMarkdown } from '../../../client/action/settings';
|
||||||
import * as roomActions from '../../../client/action/room';
|
import * as roomActions from '../../../client/action/room';
|
||||||
import {
|
import {
|
||||||
selectTab,
|
|
||||||
selectRoom,
|
|
||||||
openCreateRoom,
|
openCreateRoom,
|
||||||
openPublicRooms,
|
openPublicRooms,
|
||||||
openInviteUser,
|
openInviteUser,
|
||||||
openReadReceipts,
|
|
||||||
} from '../../../client/action/navigation';
|
} from '../../../client/action/navigation';
|
||||||
import { emojis } from '../emoji-board/emoji';
|
import { emojis } from '../emoji-board/emoji';
|
||||||
import AsyncSearch from '../../../util/AsyncSearch';
|
import AsyncSearch from '../../../util/AsyncSearch';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
import Button from '../../atoms/button/Button';
|
|
||||||
import IconButton from '../../atoms/button/IconButton';
|
|
||||||
import ContextMenu, { MenuHeader } from '../../atoms/context-menu/ContextMenu';
|
|
||||||
import ScrollView from '../../atoms/scroll/ScrollView';
|
import ScrollView from '../../atoms/scroll/ScrollView';
|
||||||
import SettingTile from '../../molecules/setting-tile/SettingTile';
|
import FollowingMembers from '../../molecules/following-members/FollowingMembers';
|
||||||
import TimelineChange from '../../molecules/message/TimelineChange';
|
|
||||||
|
|
||||||
import CmdIC from '../../../../public/res/ic/outlined/cmd.svg';
|
|
||||||
|
|
||||||
import { getUsersActionJsx } from './common';
|
|
||||||
|
|
||||||
const commands = [{
|
const commands = [{
|
||||||
name: 'markdown',
|
name: 'markdown',
|
||||||
@@ -61,128 +49,6 @@ const commands = [{
|
|||||||
exe: (roomId, searchTerm) => openInviteUser(roomId, searchTerm),
|
exe: (roomId, searchTerm) => openInviteUser(roomId, searchTerm),
|
||||||
}];
|
}];
|
||||||
|
|
||||||
function CmdHelp() {
|
|
||||||
return (
|
|
||||||
<ContextMenu
|
|
||||||
placement="top"
|
|
||||||
content={(
|
|
||||||
<>
|
|
||||||
<MenuHeader>General command</MenuHeader>
|
|
||||||
<Text variant="b2">/command_name</Text>
|
|
||||||
<MenuHeader>Go-to commands</MenuHeader>
|
|
||||||
<Text variant="b2">{'>*space_name'}</Text>
|
|
||||||
<Text variant="b2">{'>#room_name'}</Text>
|
|
||||||
<Text variant="b2">{'>@people_name'}</Text>
|
|
||||||
<MenuHeader>Autofill commands</MenuHeader>
|
|
||||||
<Text variant="b2">:emoji_name</Text>
|
|
||||||
<Text variant="b2">@name</Text>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
render={(toggleMenu) => (
|
|
||||||
<IconButton
|
|
||||||
src={CmdIC}
|
|
||||||
size="extra-small"
|
|
||||||
onClick={toggleMenu}
|
|
||||||
tooltip="Commands"
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function ViewCmd() {
|
|
||||||
function renderAllCmds() {
|
|
||||||
return commands.map((command) => (
|
|
||||||
<SettingTile
|
|
||||||
key={command.name}
|
|
||||||
title={command.name}
|
|
||||||
content={(<Text variant="b3">{command.description}</Text>)}
|
|
||||||
/>
|
|
||||||
));
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<ContextMenu
|
|
||||||
maxWidth={250}
|
|
||||||
placement="top"
|
|
||||||
content={(
|
|
||||||
<>
|
|
||||||
<MenuHeader>General commands</MenuHeader>
|
|
||||||
{renderAllCmds()}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
render={(toggleMenu) => (
|
|
||||||
<span>
|
|
||||||
<Button onClick={toggleMenu}><span className="text text-b3">View all</span></Button>
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function FollowingMembers({ roomId, roomTimeline, viewEvent }) {
|
|
||||||
const [followingMembers, setFollowingMembers] = useState([]);
|
|
||||||
const mx = initMatrix.matrixClient;
|
|
||||||
|
|
||||||
function handleOnMessageSent() {
|
|
||||||
setFollowingMembers([]);
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateFollowingMembers() {
|
|
||||||
const room = mx.getRoom(roomId);
|
|
||||||
const { timeline } = room;
|
|
||||||
const userIds = room.getUsersReadUpTo(timeline[timeline.length - 1]);
|
|
||||||
const myUserId = mx.getUserId();
|
|
||||||
setFollowingMembers(userIds.filter((userId) => userId !== myUserId));
|
|
||||||
}
|
|
||||||
|
|
||||||
useEffect(() => updateFollowingMembers(), [roomId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
roomTimeline.on(cons.events.roomTimeline.READ_RECEIPT, updateFollowingMembers);
|
|
||||||
viewEvent.on('message_sent', handleOnMessageSent);
|
|
||||||
return () => {
|
|
||||||
roomTimeline.removeListener(cons.events.roomTimeline.READ_RECEIPT, updateFollowingMembers);
|
|
||||||
viewEvent.removeListener('message_sent', handleOnMessageSent);
|
|
||||||
};
|
|
||||||
}, [roomTimeline]);
|
|
||||||
|
|
||||||
const lastMEvent = roomTimeline.timeline[roomTimeline.timeline.length - 1];
|
|
||||||
return followingMembers.length !== 0 && (
|
|
||||||
<TimelineChange
|
|
||||||
variant="follow"
|
|
||||||
content={getUsersActionJsx(roomId, followingMembers, 'following the conversation.')}
|
|
||||||
time=""
|
|
||||||
onClick={() => openReadReceipts(roomId, lastMEvent.getId())}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
FollowingMembers.propTypes = {
|
|
||||||
roomId: PropTypes.string.isRequired,
|
|
||||||
roomTimeline: PropTypes.shape({}).isRequired,
|
|
||||||
viewEvent: PropTypes.shape({}).isRequired,
|
|
||||||
};
|
|
||||||
|
|
||||||
function getCmdActivationMessage(prefix) {
|
|
||||||
function genMessage(prime, secondary) {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<span>{prime}</span>
|
|
||||||
<span>{secondary}</span>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const cmd = {
|
|
||||||
'/': () => genMessage('General command mode activated. ', 'Type command name for suggestions.'),
|
|
||||||
'>*': () => genMessage('Go-to command mode activated. ', 'Type space name for suggestions.'),
|
|
||||||
'>#': () => genMessage('Go-to command mode activated. ', 'Type room name for suggestions.'),
|
|
||||||
'>@': () => genMessage('Go-to command mode activated. ', 'Type people name for suggestions.'),
|
|
||||||
':': () => genMessage('Emoji autofill command mode activated. ', 'Type emoji shortcut for suggestions.'),
|
|
||||||
'@': () => genMessage('Name autofill command mode activated. ', 'Type name for suggestions.'),
|
|
||||||
};
|
|
||||||
return cmd[prefix]?.();
|
|
||||||
}
|
|
||||||
|
|
||||||
function CmdItem({ onClick, children }) {
|
function CmdItem({ onClick, children }) {
|
||||||
return (
|
return (
|
||||||
<button className="cmd-item" onClick={onClick} type="button">
|
<button className="cmd-item" onClick={onClick} type="button">
|
||||||
@@ -195,8 +61,8 @@ CmdItem.propTypes = {
|
|||||||
children: PropTypes.node.isRequired,
|
children: PropTypes.node.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
function getCmdSuggestions({ prefix, option, suggestions }, fireCmd) {
|
function renderSuggestions({ prefix, option, suggestions }, fireCmd) {
|
||||||
function getGenCmdSuggestions(cmdPrefix, cmds) {
|
function renderCmdSuggestions(cmdPrefix, cmds) {
|
||||||
const cmdOptString = (typeof option === 'string') ? `/${option}` : '/?';
|
const cmdOptString = (typeof option === 'string') ? `/${option}` : '/?';
|
||||||
return cmds.map((cmd) => (
|
return cmds.map((cmd) => (
|
||||||
<CmdItem
|
<CmdItem
|
||||||
@@ -214,23 +80,7 @@ function getCmdSuggestions({ prefix, option, suggestions }, fireCmd) {
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getRoomsSuggestion(cmdPrefix, rooms) {
|
function renderEmojiSuggestion(emPrefix, emos) {
|
||||||
return rooms.map((room) => (
|
|
||||||
<CmdItem
|
|
||||||
key={room.roomId}
|
|
||||||
onClick={() => {
|
|
||||||
fireCmd({
|
|
||||||
prefix: cmdPrefix,
|
|
||||||
result: room,
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Text variant="b2">{room.name}</Text>
|
|
||||||
</CmdItem>
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
function getEmojiSuggestion(emPrefix, emos) {
|
|
||||||
return emos.map((emoji) => (
|
return emos.map((emoji) => (
|
||||||
<CmdItem
|
<CmdItem
|
||||||
key={emoji.hexcode}
|
key={emoji.hexcode}
|
||||||
@@ -255,7 +105,7 @@ function getCmdSuggestions({ prefix, option, suggestions }, fireCmd) {
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getNameSuggestion(namePrefix, members) {
|
function renderNameSuggestion(namePrefix, members) {
|
||||||
return members.map((member) => (
|
return members.map((member) => (
|
||||||
<CmdItem
|
<CmdItem
|
||||||
key={member.userId}
|
key={member.userId}
|
||||||
@@ -272,12 +122,9 @@ function getCmdSuggestions({ prefix, option, suggestions }, fireCmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const cmd = {
|
const cmd = {
|
||||||
'/': (cmds) => getGenCmdSuggestions(prefix, cmds),
|
'/': (cmds) => renderCmdSuggestions(prefix, cmds),
|
||||||
'>*': (spaces) => getRoomsSuggestion(prefix, spaces),
|
':': (emos) => renderEmojiSuggestion(prefix, emos),
|
||||||
'>#': (rooms) => getRoomsSuggestion(prefix, rooms),
|
'@': (members) => renderNameSuggestion(prefix, members),
|
||||||
'>@': (peoples) => getRoomsSuggestion(prefix, peoples),
|
|
||||||
':': (emos) => getEmojiSuggestion(prefix, emos),
|
|
||||||
'@': (members) => getNameSuggestion(prefix, members),
|
|
||||||
};
|
};
|
||||||
return cmd[prefix]?.(suggestions);
|
return cmd[prefix]?.(suggestions);
|
||||||
}
|
}
|
||||||
@@ -326,29 +173,28 @@ function RoomViewCmdBar({ roomId, roomTimeline, viewEvent }) {
|
|||||||
asyncSearch.search(searchTerm);
|
asyncSearch.search(searchTerm);
|
||||||
}
|
}
|
||||||
function activateCmd(prefix) {
|
function activateCmd(prefix) {
|
||||||
setCmd({ prefix });
|
|
||||||
cmdPrefix = prefix;
|
cmdPrefix = prefix;
|
||||||
|
cmdPrefix = undefined;
|
||||||
|
|
||||||
const { roomList, matrixClient } = initMatrix;
|
const mx = initMatrix.matrixClient;
|
||||||
function getRooms(roomIds) {
|
|
||||||
return roomIds.map((rId) => {
|
|
||||||
const room = matrixClient.getRoom(rId);
|
|
||||||
return {
|
|
||||||
name: room.name,
|
|
||||||
roomId: room.roomId,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
const setupSearch = {
|
const setupSearch = {
|
||||||
'/': () => asyncSearch.setup(commands, { keys: ['name'], isContain: true }),
|
'/': () => {
|
||||||
'>*': () => asyncSearch.setup(getRooms([...roomList.spaces]), { keys: ['name'], limit: 20 }),
|
asyncSearch.setup(commands, { keys: ['name'], isContain: true });
|
||||||
'>#': () => asyncSearch.setup(getRooms([...roomList.rooms]), { keys: ['name'], limit: 20 }),
|
setCmd({ prefix, suggestions: commands });
|
||||||
'>@': () => asyncSearch.setup(getRooms([...roomList.directs]), { keys: ['name'], limit: 20 }),
|
},
|
||||||
':': () => asyncSearch.setup(emojis, { keys: ['shortcode'], isContain: true, limit: 20 }),
|
':': () => {
|
||||||
'@': () => asyncSearch.setup(matrixClient.getRoom(roomId).getJoinedMembers().map((member) => ({
|
asyncSearch.setup(emojis, { keys: ['shortcode'], isContain: true, limit: 20 });
|
||||||
name: member.name,
|
setCmd({ prefix, suggestions: emojis.slice(26, 46) });
|
||||||
userId: member.userId.slice(1),
|
},
|
||||||
})), { keys: ['name', 'userId'], limit: 20 }),
|
'@': () => {
|
||||||
|
const members = mx.getRoom(roomId).getJoinedMembers().map((member) => ({
|
||||||
|
name: member.name,
|
||||||
|
userId: member.userId.slice(1),
|
||||||
|
}));
|
||||||
|
asyncSearch.setup(members, { keys: ['name', 'userId'], limit: 20 });
|
||||||
|
const endIndex = members.length > 20 ? 20 : members.length;
|
||||||
|
setCmd({ prefix, suggestions: members.slice(0, endIndex) });
|
||||||
|
},
|
||||||
};
|
};
|
||||||
setupSearch[prefix]?.();
|
setupSearch[prefix]?.();
|
||||||
}
|
}
|
||||||
@@ -358,11 +204,6 @@ function RoomViewCmdBar({ roomId, roomTimeline, viewEvent }) {
|
|||||||
cmdPrefix = undefined;
|
cmdPrefix = undefined;
|
||||||
}
|
}
|
||||||
function fireCmd(myCmd) {
|
function fireCmd(myCmd) {
|
||||||
if (myCmd.prefix.match(/^>[*#@]$/)) {
|
|
||||||
if (cmd.prefix === '>*') selectTab(myCmd.result.roomId);
|
|
||||||
else selectRoom(myCmd.result.roomId);
|
|
||||||
viewEvent.emit('cmd_fired');
|
|
||||||
}
|
|
||||||
if (myCmd.prefix === '/') {
|
if (myCmd.prefix === '/') {
|
||||||
myCmd.result.exe(roomId, myCmd.option);
|
myCmd.result.exe(roomId, myCmd.option);
|
||||||
viewEvent.emit('cmd_fired');
|
viewEvent.emit('cmd_fired');
|
||||||
@@ -379,14 +220,6 @@ function RoomViewCmdBar({ roomId, roomTimeline, viewEvent }) {
|
|||||||
}
|
}
|
||||||
deactivateCmd();
|
deactivateCmd();
|
||||||
}
|
}
|
||||||
function executeCmd() {
|
|
||||||
if (cmd.suggestions.length === 0) return;
|
|
||||||
fireCmd({
|
|
||||||
prefix: cmd.prefix,
|
|
||||||
option: cmd.option,
|
|
||||||
result: cmd.suggestions[0],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function listenKeyboard(event) {
|
function listenKeyboard(event) {
|
||||||
const { activeElement } = document;
|
const { activeElement } = document;
|
||||||
@@ -417,26 +250,20 @@ function RoomViewCmdBar({ roomId, roomTimeline, viewEvent }) {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (cmd !== null) document.body.addEventListener('keydown', listenKeyboard);
|
if (cmd !== null) document.body.addEventListener('keydown', listenKeyboard);
|
||||||
viewEvent.on('cmd_process', processCmd);
|
viewEvent.on('cmd_process', processCmd);
|
||||||
viewEvent.on('cmd_exe', executeCmd);
|
|
||||||
asyncSearch.on(asyncSearch.RESULT_SENT, displaySuggestions);
|
asyncSearch.on(asyncSearch.RESULT_SENT, displaySuggestions);
|
||||||
return () => {
|
return () => {
|
||||||
if (cmd !== null) document.body.removeEventListener('keydown', listenKeyboard);
|
if (cmd !== null) document.body.removeEventListener('keydown', listenKeyboard);
|
||||||
|
|
||||||
viewEvent.removeListener('cmd_process', processCmd);
|
viewEvent.removeListener('cmd_process', processCmd);
|
||||||
viewEvent.removeListener('cmd_exe', executeCmd);
|
|
||||||
asyncSearch.removeListener(asyncSearch.RESULT_SENT, displaySuggestions);
|
asyncSearch.removeListener(asyncSearch.RESULT_SENT, displaySuggestions);
|
||||||
};
|
};
|
||||||
}, [cmd]);
|
}, [cmd]);
|
||||||
|
|
||||||
if (typeof cmd?.error === 'string') {
|
const isError = typeof cmd?.error === 'string';
|
||||||
|
if (cmd === null || isError) {
|
||||||
return (
|
return (
|
||||||
<div className="cmd-bar">
|
<div className="cmd-bar">
|
||||||
<div className="cmd-bar__info">
|
<FollowingMembers roomTimeline={roomTimeline} />
|
||||||
<div className="cmd-bar__info-indicator--error" />
|
|
||||||
</div>
|
|
||||||
<div className="cmd-bar__content">
|
|
||||||
<Text className="cmd-bar__content-error" variant="b2">{cmd.error}</Text>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -444,27 +271,14 @@ function RoomViewCmdBar({ roomId, roomTimeline, viewEvent }) {
|
|||||||
return (
|
return (
|
||||||
<div className="cmd-bar">
|
<div className="cmd-bar">
|
||||||
<div className="cmd-bar__info">
|
<div className="cmd-bar__info">
|
||||||
{cmd === null && <CmdHelp />}
|
<Text variant="b3">TAB</Text>
|
||||||
{cmd !== null && typeof cmd.suggestions === 'undefined' && <div className="cmd-bar__info-indicator" /> }
|
|
||||||
{cmd !== null && typeof cmd.suggestions !== 'undefined' && <Text variant="b3">TAB</Text>}
|
|
||||||
</div>
|
</div>
|
||||||
<div className="cmd-bar__content">
|
<div className="cmd-bar__content">
|
||||||
{cmd === null && (
|
<ScrollView horizontal vertical={false} invisible>
|
||||||
<FollowingMembers
|
<div className="cmd-bar__content-suggestions">
|
||||||
roomId={roomId}
|
{ renderSuggestions(cmd, fireCmd) }
|
||||||
roomTimeline={roomTimeline}
|
</div>
|
||||||
viewEvent={viewEvent}
|
</ScrollView>
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{cmd !== null && typeof cmd.suggestions === 'undefined' && <Text className="cmd-bar__content-help" variant="b2">{getCmdActivationMessage(cmd.prefix)}</Text>}
|
|
||||||
{cmd !== null && typeof cmd.suggestions !== 'undefined' && (
|
|
||||||
<ScrollView horizontal vertical={false} invisible>
|
|
||||||
<div className="cmd-bar__content__suggestions">{getCmdSuggestions(cmd, fireCmd)}</div>
|
|
||||||
</ScrollView>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<div className="cmd-bar__more">
|
|
||||||
{cmd !== null && cmd.prefix === '/' && <ViewCmd />}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -11,37 +11,14 @@
|
|||||||
|
|
||||||
&__info {
|
&__info {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: calc(2 * var(--sp-extra-loose));
|
width: 40px;
|
||||||
padding-left: var(--sp-ultra-tight);
|
margin: 0 10px 0 14px;
|
||||||
[dir=rtl] & {
|
[dir=rtl] & {
|
||||||
padding-left: 0;
|
margin: 0 14px 0 10px;
|
||||||
padding-right: var(--sp-ultra-tight);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
& > * {
|
& > * {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .ic-btn-surface {
|
|
||||||
padding: 0;
|
|
||||||
& .ic-raw {
|
|
||||||
background-color: var(--tc-surface-low);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
& .context-menu .text-b2 {
|
|
||||||
margin: var(--sp-extra-tight) var(--sp-tight);
|
|
||||||
}
|
|
||||||
|
|
||||||
&-indicator,
|
|
||||||
&-indicator--error {
|
|
||||||
width: 8px;
|
|
||||||
height: 8px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: var(--bg-positive);
|
|
||||||
}
|
|
||||||
&-indicator--error {
|
|
||||||
background-color: var(--bg-danger);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
@@ -49,58 +26,14 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
&-help,
|
&-suggestions {
|
||||||
&-error {
|
|
||||||
@extend .overflow-ellipsis;
|
|
||||||
align-self: center;
|
|
||||||
span {
|
|
||||||
color: var(--tc-surface-low);
|
|
||||||
&:first-child {
|
|
||||||
color: var(--tc-surface-normal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&-error {
|
|
||||||
color: var(--bg-danger);
|
|
||||||
}
|
|
||||||
&__suggestions {
|
|
||||||
display: flex;
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
display: flex;
|
||||||
}
|
align-items: center;
|
||||||
&__more {
|
|
||||||
display: flex;
|
|
||||||
& button {
|
|
||||||
min-width: 0;
|
|
||||||
height: 100%;
|
|
||||||
margin: 0 var(--sp-normal);
|
|
||||||
padding: 0 var(--sp-extra-tight);
|
|
||||||
box-shadow: none;
|
|
||||||
border-radius: var(--bo-radius) var(--bo-radius) 0 0;
|
|
||||||
& .text {
|
|
||||||
color: var(--tc-surface-normal);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
& .setting-tile {
|
|
||||||
margin: var(--sp-tight);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
& .timeline-change {
|
|
||||||
width: 100%;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding: var(--sp-ultra-tight) var(--sp-normal);
|
|
||||||
border-radius: var(--bo-radius) var(--bo-radius) 0 0;
|
|
||||||
|
|
||||||
&__content {
|
|
||||||
margin: 0;
|
|
||||||
flex: unset;
|
|
||||||
& > .text {
|
& > .text {
|
||||||
@extend .overflow-ellipsis;
|
@extend .overflow-ellipsis;
|
||||||
& b {
|
|
||||||
color: var(--tc-surface-normal);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -9,5 +9,30 @@
|
|||||||
min-height: 0;
|
min-height: 0;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
padding-bottom: var(--typing-noti-height);
|
padding-bottom: var(--typing-noti-height);
|
||||||
|
|
||||||
|
& .message,
|
||||||
|
& .ph-msg,
|
||||||
|
& .timeline-change {
|
||||||
|
border-radius: 0 var(--bo-radius) var(--bo-radius) 0;
|
||||||
|
[dir=rtl] & {
|
||||||
|
border-radius: var(--bo-radius) 0 0 var(--bo-radius);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
& > .divider {
|
||||||
|
margin: var(--sp-extra-tight) var(--sp-normal);
|
||||||
|
margin-right: var(--sp-extra-tight);
|
||||||
|
padding-left: calc(var(--av-small) + var(--sp-tight));
|
||||||
|
[dir=rtl] & {
|
||||||
|
padding: {
|
||||||
|
left: 0;
|
||||||
|
right: calc(var(--av-small) + var(--sp-tight));
|
||||||
|
}
|
||||||
|
margin: {
|
||||||
|
left: var(--sp-extra-tight);
|
||||||
|
right: var(--sp-normal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -7,63 +7,114 @@ import initMatrix from '../../../client/initMatrix';
|
|||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
|
import Button from '../../atoms/button/Button';
|
||||||
import IconButton from '../../atoms/button/IconButton';
|
import IconButton from '../../atoms/button/IconButton';
|
||||||
|
|
||||||
import ChevronBottomIC from '../../../../public/res/ic/outlined/chevron-bottom.svg';
|
import ChevronBottomIC from '../../../../public/res/ic/outlined/chevron-bottom.svg';
|
||||||
|
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
||||||
|
|
||||||
import { getUsersActionJsx } from './common';
|
import { getUsersActionJsx } from './common';
|
||||||
|
|
||||||
function RoomViewFloating({
|
function useJumpToEvent(roomTimeline) {
|
||||||
roomId, roomTimeline, timelineScroll, viewEvent,
|
const [eventId, setEventId] = useState(null);
|
||||||
}) {
|
|
||||||
const [reachedBottom, setReachedBottom] = useState(true);
|
const jumpToEvent = () => {
|
||||||
|
roomTimeline.loadEventTimeline(eventId);
|
||||||
|
};
|
||||||
|
|
||||||
|
const cancelJumpToEvent = () => {
|
||||||
|
roomTimeline.markAllAsRead();
|
||||||
|
setEventId(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const readEventId = roomTimeline.getReadUpToEventId();
|
||||||
|
// we only show "Jump to unread" btn only if the event is not in timeline.
|
||||||
|
// if event is in timeline
|
||||||
|
// we will automatically open the timeline from that event position
|
||||||
|
if (!readEventId?.startsWith('~') && !roomTimeline.hasEventInTimeline(readEventId)) {
|
||||||
|
setEventId(readEventId);
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleMarkAsRead = () => setEventId(null);
|
||||||
|
roomTimeline.on(cons.events.roomTimeline.MARKED_AS_READ, handleMarkAsRead);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
roomTimeline.removeListener(cons.events.roomTimeline.MARKED_AS_READ, handleMarkAsRead);
|
||||||
|
setEventId(null);
|
||||||
|
};
|
||||||
|
}, [roomTimeline]);
|
||||||
|
|
||||||
|
return [!!eventId, jumpToEvent, cancelJumpToEvent];
|
||||||
|
}
|
||||||
|
|
||||||
|
function useTypingMembers(roomTimeline) {
|
||||||
const [typingMembers, setTypingMembers] = useState(new Set());
|
const [typingMembers, setTypingMembers] = useState(new Set());
|
||||||
const mx = initMatrix.matrixClient;
|
|
||||||
|
|
||||||
function isSomeoneTyping(members) {
|
const updateTyping = (members) => {
|
||||||
const m = members;
|
const mx = initMatrix.matrixClient;
|
||||||
m.delete(mx.getUserId());
|
members.delete(mx.getUserId());
|
||||||
if (m.size === 0) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getTypingMessage(members) {
|
|
||||||
const userIds = members;
|
|
||||||
userIds.delete(mx.getUserId());
|
|
||||||
return getUsersActionJsx(roomId, [...userIds], 'typing...');
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateTyping(members) {
|
|
||||||
setTypingMembers(members);
|
setTypingMembers(members);
|
||||||
}
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setReachedBottom(true);
|
|
||||||
setTypingMembers(new Set());
|
setTypingMembers(new Set());
|
||||||
viewEvent.on('toggle-reached-bottom', setReachedBottom);
|
|
||||||
return () => viewEvent.removeListener('toggle-reached-bottom', setReachedBottom);
|
|
||||||
}, [roomId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
roomTimeline.on(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, updateTyping);
|
roomTimeline.on(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, updateTyping);
|
||||||
return () => {
|
return () => {
|
||||||
roomTimeline?.removeListener(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, updateTyping);
|
roomTimeline?.removeListener(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, updateTyping);
|
||||||
};
|
};
|
||||||
}, [roomTimeline]);
|
}, [roomTimeline]);
|
||||||
|
|
||||||
|
return [typingMembers];
|
||||||
|
}
|
||||||
|
|
||||||
|
function useScrollToBottom(roomTimeline) {
|
||||||
|
const [isAtBottom, setIsAtBottom] = useState(true);
|
||||||
|
const handleAtBottom = (atBottom) => setIsAtBottom(atBottom);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setIsAtBottom(true);
|
||||||
|
roomTimeline.on(cons.events.roomTimeline.AT_BOTTOM, handleAtBottom);
|
||||||
|
return () => roomTimeline.removeListener(cons.events.roomTimeline.AT_BOTTOM, handleAtBottom);
|
||||||
|
}, [roomTimeline]);
|
||||||
|
|
||||||
|
return [isAtBottom, setIsAtBottom];
|
||||||
|
}
|
||||||
|
|
||||||
|
function RoomViewFloating({
|
||||||
|
roomId, roomTimeline,
|
||||||
|
}) {
|
||||||
|
const [isJumpToEvent, jumpToEvent, cancelJumpToEvent] = useJumpToEvent(roomTimeline);
|
||||||
|
const [typingMembers] = useTypingMembers(roomTimeline);
|
||||||
|
const [isAtBottom, setIsAtBottom] = useScrollToBottom(roomTimeline);
|
||||||
|
|
||||||
|
const handleScrollToBottom = () => {
|
||||||
|
roomTimeline.emit(cons.events.roomTimeline.SCROLL_TO_LIVE);
|
||||||
|
setIsAtBottom(true);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className={`room-view__typing${isSomeoneTyping(typingMembers) ? ' room-view__typing--open' : ''}`}>
|
<div className={`room-view__unread ${isJumpToEvent ? 'room-view__unread--open' : ''}`}>
|
||||||
<div className="bouncing-loader"><div /></div>
|
<Button onClick={jumpToEvent} variant="primary">
|
||||||
<Text variant="b2">{getTypingMessage(typingMembers)}</Text>
|
<Text variant="b2">Jump to unread</Text>
|
||||||
</div>
|
</Button>
|
||||||
<div className={`room-view__STB${reachedBottom ? '' : ' room-view__STB--open'}`}>
|
|
||||||
<IconButton
|
<IconButton
|
||||||
onClick={() => {
|
onClick={cancelJumpToEvent}
|
||||||
timelineScroll.enableSmoothScroll();
|
variant="primary"
|
||||||
timelineScroll.reachBottom();
|
size="extra-small"
|
||||||
timelineScroll.disableSmoothScroll();
|
src={TickMarkIC}
|
||||||
}}
|
tooltipPlacement="bottom"
|
||||||
|
tooltip="Mark as read"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className={`room-view__typing${typingMembers.size > 0 ? ' room-view__typing--open' : ''}`}>
|
||||||
|
<div className="bouncing-loader"><div /></div>
|
||||||
|
<Text variant="b2">{getUsersActionJsx(roomId, [...typingMembers], 'typing...')}</Text>
|
||||||
|
</div>
|
||||||
|
<div className={`room-view__STB${isAtBottom ? '' : ' room-view__STB--open'}`}>
|
||||||
|
<IconButton
|
||||||
|
onClick={handleScrollToBottom}
|
||||||
src={ChevronBottomIC}
|
src={ChevronBottomIC}
|
||||||
tooltip="Scroll to Bottom"
|
tooltip="Scroll to Bottom"
|
||||||
/>
|
/>
|
||||||
@@ -74,10 +125,6 @@ function RoomViewFloating({
|
|||||||
RoomViewFloating.propTypes = {
|
RoomViewFloating.propTypes = {
|
||||||
roomId: PropTypes.string.isRequired,
|
roomId: PropTypes.string.isRequired,
|
||||||
roomTimeline: PropTypes.shape({}).isRequired,
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
timelineScroll: PropTypes.shape({
|
|
||||||
reachBottom: PropTypes.func,
|
|
||||||
}).isRequired,
|
|
||||||
viewEvent: PropTypes.shape({}).isRequired,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default RoomViewFloating;
|
export default RoomViewFloating;
|
||||||
|
|||||||
@@ -88,4 +88,35 @@
|
|||||||
transform: translateY(-28px) scale(1);
|
transform: translateY(-28px) scale(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__unread {
|
||||||
|
position: absolute;
|
||||||
|
top: var(--sp-extra-tight);
|
||||||
|
right: var(--sp-extra-tight);
|
||||||
|
z-index: 999;
|
||||||
|
|
||||||
|
display: none;
|
||||||
|
background-color: var(--bg-surface);
|
||||||
|
border-radius: var(--bo-radius);
|
||||||
|
box-shadow: var(--bs-primary-border);
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
&--open {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
& .ic-btn {
|
||||||
|
padding: 6px var(--sp-extra-tight);
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
& .btn-primary {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 0 var(--sp-tight);
|
||||||
|
&:focus {
|
||||||
|
background-color: var(--bg-primary-hover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,11 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import { togglePeopleDrawer, openRoomOptions } from '../../../client/action/navigation';
|
import { openRoomOptions } from '../../../client/action/navigation';
|
||||||
|
import { togglePeopleDrawer } from '../../../client/action/settings';
|
||||||
import colorMXID from '../../../util/colorMXID';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
import { getEventCords } from '../../../util/common';
|
import { getEventCords } from '../../../util/common';
|
||||||
|
|
||||||
@@ -24,10 +27,10 @@ function RoomViewHeader({ roomId }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Header>
|
<Header>
|
||||||
<Avatar imageSrc={avatarSrc} text={roomName.slice(0, 1)} bgColor={colorMXID(roomId)} size="small" />
|
<Avatar imageSrc={avatarSrc} text={roomName} bgColor={colorMXID(roomId)} size="small" />
|
||||||
<TitleWrapper>
|
<TitleWrapper>
|
||||||
<Text variant="h2">{roomName}</Text>
|
<Text variant="h2">{twemojify(roomName)}</Text>
|
||||||
{ typeof roomTopic !== 'undefined' && <p title={roomTopic} className="text text-b3">{roomTopic}</p>}
|
{ typeof roomTopic !== 'undefined' && <p title={roomTopic} className="text text-b3">{twemojify(roomTopic)}</p>}
|
||||||
</TitleWrapper>
|
</TitleWrapper>
|
||||||
<IconButton onClick={togglePeopleDrawer} tooltip="People" src={UserIC} />
|
<IconButton onClick={togglePeopleDrawer} tooltip="People" src={UserIC} />
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import initMatrix from '../../../client/initMatrix';
|
|||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import settings from '../../../client/state/settings';
|
import settings from '../../../client/state/settings';
|
||||||
import { openEmojiBoard } from '../../../client/action/navigation';
|
import { openEmojiBoard } from '../../../client/action/navigation';
|
||||||
|
import navigation from '../../../client/state/navigation';
|
||||||
import { bytesToSize, getEventCords } from '../../../util/common';
|
import { bytesToSize, getEventCords } from '../../../util/common';
|
||||||
import { getUsername } from '../../../util/matrixUtil';
|
import { getUsername } from '../../../util/matrixUtil';
|
||||||
import colorMXID from '../../../util/colorMXID';
|
import colorMXID from '../../../util/colorMXID';
|
||||||
@@ -29,12 +30,12 @@ import MarkdownIC from '../../../../public/res/ic/outlined/markdown.svg';
|
|||||||
import FileIC from '../../../../public/res/ic/outlined/file.svg';
|
import FileIC from '../../../../public/res/ic/outlined/file.svg';
|
||||||
import CrossIC from '../../../../public/res/ic/outlined/cross.svg';
|
import CrossIC from '../../../../public/res/ic/outlined/cross.svg';
|
||||||
|
|
||||||
const CMD_REGEX = /(^\/|^>[#*@]|:|@)(\S*)$/;
|
const CMD_REGEX = /(^\/|:|@)(\S*)$/;
|
||||||
let isTyping = false;
|
let isTyping = false;
|
||||||
let isCmdActivated = false;
|
let isCmdActivated = false;
|
||||||
let cmdCursorPos = null;
|
let cmdCursorPos = null;
|
||||||
function RoomViewInput({
|
function RoomViewInput({
|
||||||
roomId, roomTimeline, timelineScroll, viewEvent,
|
roomId, roomTimeline, viewEvent,
|
||||||
}) {
|
}) {
|
||||||
const [attachment, setAttachment] = useState(null);
|
const [attachment, setAttachment] = useState(null);
|
||||||
const [isMarkdown, setIsMarkdown] = useState(settings.isMarkdown);
|
const [isMarkdown, setIsMarkdown] = useState(settings.isMarkdown);
|
||||||
@@ -45,7 +46,6 @@ function RoomViewInput({
|
|||||||
const uploadInputRef = useRef(null);
|
const uploadInputRef = useRef(null);
|
||||||
const uploadProgressRef = useRef(null);
|
const uploadProgressRef = useRef(null);
|
||||||
const rightOptionsRef = useRef(null);
|
const rightOptionsRef = useRef(null);
|
||||||
const escBtnRef = useRef(null);
|
|
||||||
|
|
||||||
const TYPING_TIMEOUT = 5000;
|
const TYPING_TIMEOUT = 5000;
|
||||||
const mx = initMatrix.matrixClient;
|
const mx = initMatrix.matrixClient;
|
||||||
@@ -92,39 +92,24 @@ function RoomViewInput({
|
|||||||
function rightOptionsA11Y(A11Y) {
|
function rightOptionsA11Y(A11Y) {
|
||||||
const rightOptions = rightOptionsRef.current.children;
|
const rightOptions = rightOptionsRef.current.children;
|
||||||
for (let index = 0; index < rightOptions.length; index += 1) {
|
for (let index = 0; index < rightOptions.length; index += 1) {
|
||||||
rightOptions[index].disabled = !A11Y;
|
rightOptions[index].tabIndex = A11Y ? 0 : -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function activateCmd(prefix) {
|
function activateCmd(prefix) {
|
||||||
isCmdActivated = true;
|
isCmdActivated = true;
|
||||||
requestAnimationFrame(() => {
|
|
||||||
inputBaseRef.current.style.boxShadow = '0 0 0 1px var(--bg-positive)';
|
|
||||||
escBtnRef.current.style.display = 'block';
|
|
||||||
});
|
|
||||||
rightOptionsA11Y(false);
|
rightOptionsA11Y(false);
|
||||||
viewEvent.emit('cmd_activate', prefix);
|
viewEvent.emit('cmd_activate', prefix);
|
||||||
}
|
}
|
||||||
function deactivateCmd() {
|
function deactivateCmd() {
|
||||||
if (inputBaseRef.current !== null) {
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
inputBaseRef.current.style.boxShadow = 'var(--bs-surface-border)';
|
|
||||||
escBtnRef.current.style.display = 'none';
|
|
||||||
});
|
|
||||||
rightOptionsA11Y(true);
|
|
||||||
}
|
|
||||||
isCmdActivated = false;
|
isCmdActivated = false;
|
||||||
cmdCursorPos = null;
|
cmdCursorPos = null;
|
||||||
|
rightOptionsA11Y(true);
|
||||||
}
|
}
|
||||||
function deactivateCmdAndEmit() {
|
function deactivateCmdAndEmit() {
|
||||||
deactivateCmd();
|
deactivateCmd();
|
||||||
viewEvent.emit('cmd_deactivate');
|
viewEvent.emit('cmd_deactivate');
|
||||||
}
|
}
|
||||||
function errorCmd() {
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
inputBaseRef.current.style.boxShadow = '0 0 0 1px var(--bg-danger)';
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function setCursorPosition(pos) {
|
function setCursorPosition(pos) {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
textAreaRef.current.focus();
|
textAreaRef.current.focus();
|
||||||
@@ -152,9 +137,9 @@ function RoomViewInput({
|
|||||||
textAreaRef.current.focus();
|
textAreaRef.current.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
function setUpReply(userId, eventId, content) {
|
function setUpReply(userId, eventId, body) {
|
||||||
setReplyTo({ userId, eventId, content });
|
setReplyTo({ userId, eventId, body });
|
||||||
roomsInput.setReplyTo(roomId, { userId, eventId, content });
|
roomsInput.setReplyTo(roomId, { userId, eventId, body });
|
||||||
focusInput();
|
focusInput();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,9 +147,8 @@ function RoomViewInput({
|
|||||||
roomsInput.on(cons.events.roomsInput.UPLOAD_PROGRESS_CHANGES, uploadingProgress);
|
roomsInput.on(cons.events.roomsInput.UPLOAD_PROGRESS_CHANGES, uploadingProgress);
|
||||||
roomsInput.on(cons.events.roomsInput.ATTACHMENT_CANCELED, clearAttachment);
|
roomsInput.on(cons.events.roomsInput.ATTACHMENT_CANCELED, clearAttachment);
|
||||||
roomsInput.on(cons.events.roomsInput.FILE_UPLOADED, clearAttachment);
|
roomsInput.on(cons.events.roomsInput.FILE_UPLOADED, clearAttachment);
|
||||||
viewEvent.on('cmd_error', errorCmd);
|
|
||||||
viewEvent.on('cmd_fired', firedCmd);
|
viewEvent.on('cmd_fired', firedCmd);
|
||||||
viewEvent.on('reply_to', setUpReply);
|
navigation.on(cons.events.navigation.REPLY_TO_CLICKED, setUpReply);
|
||||||
if (textAreaRef?.current !== null) {
|
if (textAreaRef?.current !== null) {
|
||||||
isTyping = false;
|
isTyping = false;
|
||||||
focusInput();
|
focusInput();
|
||||||
@@ -176,13 +160,13 @@ function RoomViewInput({
|
|||||||
roomsInput.removeListener(cons.events.roomsInput.UPLOAD_PROGRESS_CHANGES, uploadingProgress);
|
roomsInput.removeListener(cons.events.roomsInput.UPLOAD_PROGRESS_CHANGES, uploadingProgress);
|
||||||
roomsInput.removeListener(cons.events.roomsInput.ATTACHMENT_CANCELED, clearAttachment);
|
roomsInput.removeListener(cons.events.roomsInput.ATTACHMENT_CANCELED, clearAttachment);
|
||||||
roomsInput.removeListener(cons.events.roomsInput.FILE_UPLOADED, clearAttachment);
|
roomsInput.removeListener(cons.events.roomsInput.FILE_UPLOADED, clearAttachment);
|
||||||
viewEvent.removeListener('cmd_error', errorCmd);
|
|
||||||
viewEvent.removeListener('cmd_fired', firedCmd);
|
viewEvent.removeListener('cmd_fired', firedCmd);
|
||||||
viewEvent.removeListener('reply_to', setUpReply);
|
navigation.removeListener(cons.events.navigation.REPLY_TO_CLICKED, setUpReply);
|
||||||
if (isCmdActivated) deactivateCmd();
|
if (isCmdActivated) deactivateCmd();
|
||||||
if (textAreaRef?.current === null) return;
|
if (textAreaRef?.current === null) return;
|
||||||
|
|
||||||
const msg = textAreaRef.current.value;
|
const msg = textAreaRef.current.value;
|
||||||
|
textAreaRef.current.style.height = 'unset';
|
||||||
inputBaseRef.current.style.backgroundImage = 'unset';
|
inputBaseRef.current.style.backgroundImage = 'unset';
|
||||||
if (msg.trim() === '') {
|
if (msg.trim() === '') {
|
||||||
roomsInput.setMessage(roomId, '');
|
roomsInput.setMessage(roomId, '');
|
||||||
@@ -192,7 +176,8 @@ function RoomViewInput({
|
|||||||
};
|
};
|
||||||
}, [roomId]);
|
}, [roomId]);
|
||||||
|
|
||||||
async function sendMessage() {
|
const sendMessage = async () => {
|
||||||
|
requestAnimationFrame(() => deactivateCmdAndEmit());
|
||||||
const msgBody = textAreaRef.current.value;
|
const msgBody = textAreaRef.current.value;
|
||||||
if (roomsInput.isSending(roomId)) return;
|
if (roomsInput.isSending(roomId)) return;
|
||||||
if (msgBody.trim() === '' && attachment === null) return;
|
if (msgBody.trim() === '' && attachment === null) return;
|
||||||
@@ -210,11 +195,10 @@ function RoomViewInput({
|
|||||||
focusInput();
|
focusInput();
|
||||||
|
|
||||||
textAreaRef.current.value = roomsInput.getMessage(roomId);
|
textAreaRef.current.value = roomsInput.getMessage(roomId);
|
||||||
timelineScroll.reachBottom();
|
|
||||||
viewEvent.emit('message_sent');
|
viewEvent.emit('message_sent');
|
||||||
textAreaRef.current.style.height = 'unset';
|
textAreaRef.current.style.height = 'unset';
|
||||||
if (replyTo !== null) setReplyTo(null);
|
if (replyTo !== null) setReplyTo(null);
|
||||||
}
|
};
|
||||||
|
|
||||||
function processTyping(msg) {
|
function processTyping(msg) {
|
||||||
const isEmptyMsg = msg === '';
|
const isEmptyMsg = msg === '';
|
||||||
@@ -259,33 +243,23 @@ function RoomViewInput({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!isCmdActivated) activateCmd(cmdPrefix);
|
if (!isCmdActivated) activateCmd(cmdPrefix);
|
||||||
requestAnimationFrame(() => {
|
|
||||||
inputBaseRef.current.style.boxShadow = '0 0 0 1px var(--bg-caution)';
|
|
||||||
});
|
|
||||||
viewEvent.emit('cmd_process', cmdPrefix, cmdSlug);
|
viewEvent.emit('cmd_process', cmdPrefix, cmdSlug);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleMsgTyping(e) {
|
const handleMsgTyping = (e) => {
|
||||||
const msg = e.target.value;
|
const msg = e.target.value;
|
||||||
recognizeCmd(e.target.value);
|
recognizeCmd(e.target.value);
|
||||||
if (!isCmdActivated) processTyping(msg);
|
if (!isCmdActivated) processTyping(msg);
|
||||||
}
|
};
|
||||||
|
|
||||||
function handleKeyDown(e) {
|
const handleKeyDown = (e) => {
|
||||||
if (e.keyCode === 13 && e.shiftKey === false) {
|
if (e.keyCode === 13 && e.shiftKey === false) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
sendMessage();
|
||||||
if (isCmdActivated) {
|
|
||||||
viewEvent.emit('cmd_exe');
|
|
||||||
} else sendMessage();
|
|
||||||
}
|
}
|
||||||
if (e.keyCode === 27 && isCmdActivated) {
|
};
|
||||||
deactivateCmdAndEmit();
|
|
||||||
e.preventDefault();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handlePaste(e) {
|
const handlePaste = (e) => {
|
||||||
if (e.clipboardData === false) {
|
if (e.clipboardData === false) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -309,19 +283,19 @@ function RoomViewInput({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
function addEmoji(emoji) {
|
function addEmoji(emoji) {
|
||||||
textAreaRef.current.value += emoji.unicode;
|
textAreaRef.current.value += emoji.unicode;
|
||||||
textAreaRef.current.focus();
|
textAreaRef.current.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleUploadClick() {
|
const handleUploadClick = () => {
|
||||||
if (attachment === null) uploadInputRef.current.click();
|
if (attachment === null) uploadInputRef.current.click();
|
||||||
else {
|
else {
|
||||||
roomsInput.cancelAttachment(roomId);
|
roomsInput.cancelAttachment(roomId);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
function uploadFileChange(e) {
|
function uploadFileChange(e) {
|
||||||
const file = e.target.files.item(0);
|
const file = e.target.files.item(0);
|
||||||
setAttachment(file);
|
setAttachment(file);
|
||||||
@@ -333,7 +307,7 @@ function RoomViewInput({
|
|||||||
function renderInputs() {
|
function renderInputs() {
|
||||||
if (!canISend) {
|
if (!canISend) {
|
||||||
return (
|
return (
|
||||||
<Text className="room-input__disallowed">You do not have permission to post to this room</Text>
|
<Text className="room-input__alert">You do not have permission to post to this room</Text>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
@@ -343,21 +317,20 @@ function RoomViewInput({
|
|||||||
<IconButton onClick={handleUploadClick} tooltip={attachment === null ? 'Upload' : 'Cancel'} src={CirclePlusIC} />
|
<IconButton onClick={handleUploadClick} tooltip={attachment === null ? 'Upload' : 'Cancel'} src={CirclePlusIC} />
|
||||||
</div>
|
</div>
|
||||||
<div ref={inputBaseRef} className="room-input__input-container">
|
<div ref={inputBaseRef} className="room-input__input-container">
|
||||||
{roomTimeline.isEncryptedRoom() && <RawIcon size="extra-small" src={ShieldIC} />}
|
{roomTimeline.isEncrypted() && <RawIcon size="extra-small" src={ShieldIC} />}
|
||||||
<ScrollView autoHide>
|
<ScrollView autoHide>
|
||||||
<Text className="room-input__textarea-wrapper">
|
<Text className="room-input__textarea-wrapper">
|
||||||
<TextareaAutosize
|
<TextareaAutosize
|
||||||
|
id="message-textarea"
|
||||||
ref={textAreaRef}
|
ref={textAreaRef}
|
||||||
onChange={handleMsgTyping}
|
onChange={handleMsgTyping}
|
||||||
onPaste={handlePaste}
|
onPaste={handlePaste}
|
||||||
onResize={() => timelineScroll.autoReachBottom()}
|
|
||||||
onKeyDown={handleKeyDown}
|
onKeyDown={handleKeyDown}
|
||||||
placeholder="Send a message..."
|
placeholder="Send a message..."
|
||||||
/>
|
/>
|
||||||
</Text>
|
</Text>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
{isMarkdown && <RawIcon size="extra-small" src={MarkdownIC} />}
|
{isMarkdown && <RawIcon size="extra-small" src={MarkdownIC} />}
|
||||||
<button ref={escBtnRef} tabIndex="-1" onClick={deactivateCmdAndEmit} className="btn-cmd-esc" type="button"><Text variant="b3">ESC</Text></button>
|
|
||||||
</div>
|
</div>
|
||||||
<div ref={rightOptionsRef} className="room-input__option-container">
|
<div ref={rightOptionsRef} className="room-input__option-container">
|
||||||
<IconButton
|
<IconButton
|
||||||
@@ -410,7 +383,7 @@ function RoomViewInput({
|
|||||||
userId={replyTo.userId}
|
userId={replyTo.userId}
|
||||||
name={getUsername(replyTo.userId)}
|
name={getUsername(replyTo.userId)}
|
||||||
color={colorMXID(replyTo.userId)}
|
color={colorMXID(replyTo.userId)}
|
||||||
content={replyTo.content}
|
body={replyTo.body}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -422,9 +395,7 @@ function RoomViewInput({
|
|||||||
{ attachment !== null && attachFile() }
|
{ attachment !== null && attachFile() }
|
||||||
<form className="room-input" onSubmit={(e) => { e.preventDefault(); }}>
|
<form className="room-input" onSubmit={(e) => { e.preventDefault(); }}>
|
||||||
{
|
{
|
||||||
roomTimeline.room.isSpaceRoom()
|
renderInputs()
|
||||||
? <Text className="room-input__space" variant="b1">Spaces are yet to be implemented</Text>
|
|
||||||
: renderInputs()
|
|
||||||
}
|
}
|
||||||
</form>
|
</form>
|
||||||
</>
|
</>
|
||||||
@@ -433,13 +404,6 @@ function RoomViewInput({
|
|||||||
RoomViewInput.propTypes = {
|
RoomViewInput.propTypes = {
|
||||||
roomId: PropTypes.string.isRequired,
|
roomId: PropTypes.string.isRequired,
|
||||||
roomTimeline: PropTypes.shape({}).isRequired,
|
roomTimeline: PropTypes.shape({}).isRequired,
|
||||||
timelineScroll: PropTypes.shape({
|
|
||||||
reachBottom: PropTypes.func,
|
|
||||||
autoReachBottom: PropTypes.func,
|
|
||||||
tryRestoringScroll: PropTypes.func,
|
|
||||||
enableSmoothScroll: PropTypes.func,
|
|
||||||
disableSmoothScroll: PropTypes.func,
|
|
||||||
}).isRequired,
|
|
||||||
viewEvent: PropTypes.shape({}).isRequired,
|
viewEvent: PropTypes.shape({}).isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,12 @@
|
|||||||
.room-input {
|
.room-input {
|
||||||
padding: var(--sp-extra-tight) calc(var(--sp-normal) - 2px);
|
padding: var(--sp-extra-tight) calc(var(--sp-normal) - 2px);
|
||||||
display: flex;
|
display: flex;
|
||||||
min-height: 48px;
|
min-height: 56px;
|
||||||
|
|
||||||
&__disallowed {
|
&__alert {
|
||||||
flex: 1;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__space {
|
|
||||||
min-width: 0;
|
|
||||||
align-self: center;
|
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 0 var(--sp-tight);
|
padding: 0 var(--sp-tight);
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__input-container {
|
&__input-container {
|
||||||
@@ -30,17 +24,6 @@
|
|||||||
transform: scale(0.8);
|
transform: scale(0.8);
|
||||||
margin: 0 var(--sp-extra-tight);
|
margin: 0 var(--sp-extra-tight);
|
||||||
}
|
}
|
||||||
|
|
||||||
& .btn-cmd-esc {
|
|
||||||
display: none;
|
|
||||||
margin: 0 var(--sp-extra-tight);
|
|
||||||
padding: var(--sp-ultra-tight) var(--sp-extra-tight);
|
|
||||||
background-color: var(--bg-surface);
|
|
||||||
border-radius: calc(var(--bo-radius) / 2);
|
|
||||||
box-shadow: var(--bs-surface-border);
|
|
||||||
cursor: pointer;
|
|
||||||
& .text { color: var(--tc-surface-normal); }
|
|
||||||
}
|
|
||||||
|
|
||||||
& .scrollbar {
|
& .scrollbar {
|
||||||
max-height: 50vh;
|
max-height: 50vh;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
import { twemojify } from '../../../util/twemojify';
|
||||||
|
|
||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import { getUsername, getUsernameOfRoomMember } from '../../../util/matrixUtil';
|
import { getUsername, getUsernameOfRoomMember } from '../../../util/matrixUtil';
|
||||||
|
|
||||||
@@ -8,7 +10,7 @@ function getTimelineJSXMessages() {
|
|||||||
join(user) {
|
join(user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' joined the room'}
|
{' joined the room'}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -17,27 +19,27 @@ function getTimelineJSXMessages() {
|
|||||||
const reasonMsg = (typeof reason === 'string') ? `: ${reason}` : '';
|
const reasonMsg = (typeof reason === 'string') ? `: ${reason}` : '';
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' left the room'}
|
{' left the room'}
|
||||||
{reasonMsg}
|
{twemojify(reasonMsg)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
invite(inviter, user) {
|
invite(inviter, user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{inviter}</b>
|
<b>{twemojify(inviter)}</b>
|
||||||
{' invited '}
|
{' invited '}
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
cancelInvite(inviter, user) {
|
cancelInvite(inviter, user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{inviter}</b>
|
<b>{twemojify(inviter)}</b>
|
||||||
{' canceled '}
|
{' canceled '}
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{'\'s invite'}
|
{'\'s invite'}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -45,7 +47,7 @@ function getTimelineJSXMessages() {
|
|||||||
rejectInvite(user) {
|
rejectInvite(user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' rejected the invitation'}
|
{' rejected the invitation'}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -54,10 +56,10 @@ function getTimelineJSXMessages() {
|
|||||||
const reasonMsg = (typeof reason === 'string') ? `: ${reason}` : '';
|
const reasonMsg = (typeof reason === 'string') ? `: ${reason}` : '';
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{actor}</b>
|
<b>{twemojify(actor)}</b>
|
||||||
{' kicked '}
|
{' kicked '}
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{reasonMsg}
|
{twemojify(reasonMsg)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@@ -65,26 +67,26 @@ function getTimelineJSXMessages() {
|
|||||||
const reasonMsg = (typeof reason === 'string') ? `: ${reason}` : '';
|
const reasonMsg = (typeof reason === 'string') ? `: ${reason}` : '';
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{actor}</b>
|
<b>{twemojify(actor)}</b>
|
||||||
{' banned '}
|
{' banned '}
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{reasonMsg}
|
{twemojify(reasonMsg)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
unban(actor, user) {
|
unban(actor, user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{actor}</b>
|
<b>{twemojify(actor)}</b>
|
||||||
{' unbanned '}
|
{' unbanned '}
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
avatarSets(user) {
|
avatarSets(user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' set the avatar'}
|
{' set the avatar'}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -92,7 +94,7 @@ function getTimelineJSXMessages() {
|
|||||||
avatarChanged(user) {
|
avatarChanged(user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' changed the avatar'}
|
{' changed the avatar'}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -100,7 +102,7 @@ function getTimelineJSXMessages() {
|
|||||||
avatarRemoved(user) {
|
avatarRemoved(user) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' removed the avatar'}
|
{' removed the avatar'}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
@@ -108,27 +110,27 @@ function getTimelineJSXMessages() {
|
|||||||
nameSets(user, newName) {
|
nameSets(user, newName) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' set the display name to '}
|
{' set the display name to '}
|
||||||
<b>{newName}</b>
|
<b>{twemojify(newName)}</b>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
nameChanged(user, newName) {
|
nameChanged(user, newName) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' changed the display name to '}
|
{' changed the display name to '}
|
||||||
<b>{newName}</b>
|
<b>{twemojify(newName)}</b>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
nameRemoved(user, lastName) {
|
nameRemoved(user, lastName) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<b>{user}</b>
|
<b>{twemojify(user)}</b>
|
||||||
{' removed the display name '}
|
{' removed the display name '}
|
||||||
<b>{lastName}</b>
|
<b>{twemojify(lastName)}</b>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@@ -141,7 +143,7 @@ function getUsersActionJsx(roomId, userIds, actionStr) {
|
|||||||
if (room?.getMember(userId)) return getUsernameOfRoomMember(room.getMember(userId));
|
if (room?.getMember(userId)) return getUsernameOfRoomMember(room.getMember(userId));
|
||||||
return getUsername(userId);
|
return getUsername(userId);
|
||||||
};
|
};
|
||||||
const getUserJSX = (userId) => <b>{getUserDisplayName(userId)}</b>;
|
const getUserJSX = (userId) => <b>{twemojify(getUserDisplayName(userId))}</b>;
|
||||||
if (!Array.isArray(userIds)) return 'Idle';
|
if (!Array.isArray(userIds)) return 'Idle';
|
||||||
if (userIds.length === 0) return 'Idle';
|
if (userIds.length === 0) return 'Idle';
|
||||||
const MAX_VISIBLE_COUNT = 3;
|
const MAX_VISIBLE_COUNT = 3;
|
||||||
@@ -165,27 +167,6 @@ function getUsersActionJsx(roomId, userIds, actionStr) {
|
|||||||
return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} other are {actionStr}</>;
|
return <>{u1Jsx}, {u2Jsx}, {u3Jsx} and {othersCount} other are {actionStr}</>;
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseReply(rawContent) {
|
|
||||||
if (rawContent.indexOf('>') !== 0) return null;
|
|
||||||
let content = rawContent.slice(rawContent.indexOf('<') + 1);
|
|
||||||
const user = content.slice(0, content.indexOf('>'));
|
|
||||||
|
|
||||||
content = content.slice(content.indexOf('>') + 2);
|
|
||||||
const replyContent = content.slice(0, content.indexOf('\n\n'));
|
|
||||||
content = content.slice(content.indexOf('\n\n') + 2);
|
|
||||||
|
|
||||||
if (user === '') return null;
|
|
||||||
|
|
||||||
const isUserId = user.match(/^@.+:.+/);
|
|
||||||
|
|
||||||
return {
|
|
||||||
userId: isUserId ? user : null,
|
|
||||||
displayName: isUserId ? null : user,
|
|
||||||
replyContent,
|
|
||||||
content,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseTimelineChange(mEvent) {
|
function parseTimelineChange(mEvent) {
|
||||||
const tJSXMsgs = getTimelineJSXMessages();
|
const tJSXMsgs = getTimelineJSXMessages();
|
||||||
const makeReturnObj = (variant, content) => ({
|
const makeReturnObj = (variant, content) => ({
|
||||||
@@ -234,39 +215,8 @@ function parseTimelineChange(mEvent) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function scrollToBottom(ref) {
|
|
||||||
const maxScrollTop = ref.current.scrollHeight - ref.current.offsetHeight;
|
|
||||||
// eslint-disable-next-line no-param-reassign
|
|
||||||
ref.current.scrollTop = maxScrollTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isAtBottom(ref) {
|
|
||||||
const { scrollHeight, scrollTop, offsetHeight } = ref.current;
|
|
||||||
const scrollUptoBottom = scrollTop + offsetHeight;
|
|
||||||
|
|
||||||
// scroll view have to div inside div which contains messages
|
|
||||||
const lastMessage = ref.current.lastElementChild.lastElementChild.lastElementChild;
|
|
||||||
const lastChildHeight = lastMessage.offsetHeight;
|
|
||||||
|
|
||||||
// auto scroll to bottom even if user has EXTRA_SPACE left to scroll
|
|
||||||
const EXTRA_SPACE = 48;
|
|
||||||
|
|
||||||
if (scrollHeight - scrollUptoBottom <= lastChildHeight + EXTRA_SPACE) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function autoScrollToBottom(ref) {
|
|
||||||
if (isAtBottom(ref)) scrollToBottom(ref);
|
|
||||||
}
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
getTimelineJSXMessages,
|
getTimelineJSXMessages,
|
||||||
getUsersActionJsx,
|
getUsersActionJsx,
|
||||||
parseReply,
|
|
||||||
parseTimelineChange,
|
parseTimelineChange,
|
||||||
scrollToBottom,
|
|
||||||
isAtBottom,
|
|
||||||
autoScrollToBottom,
|
|
||||||
};
|
};
|
||||||
|
|||||||
239
src/app/organisms/search/Search.jsx
Normal file
239
src/app/organisms/search/Search.jsx
Normal file
@@ -0,0 +1,239 @@
|
|||||||
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
|
import './Search.scss';
|
||||||
|
|
||||||
|
import initMatrix from '../../../client/initMatrix';
|
||||||
|
import cons from '../../../client/state/cons';
|
||||||
|
import navigation from '../../../client/state/navigation';
|
||||||
|
import AsyncSearch from '../../../util/AsyncSearch';
|
||||||
|
import { selectRoom, selectTab } from '../../../client/action/navigation';
|
||||||
|
|
||||||
|
import Text from '../../atoms/text/Text';
|
||||||
|
import RawIcon from '../../atoms/system-icons/RawIcon';
|
||||||
|
import IconButton from '../../atoms/button/IconButton';
|
||||||
|
import Input from '../../atoms/input/Input';
|
||||||
|
import RawModal from '../../atoms/modal/RawModal';
|
||||||
|
import ScrollView from '../../atoms/scroll/ScrollView';
|
||||||
|
import RoomSelector from '../../molecules/room-selector/RoomSelector';
|
||||||
|
|
||||||
|
import SearchIC from '../../../../public/res/ic/outlined/search.svg';
|
||||||
|
import HashIC from '../../../../public/res/ic/outlined/hash.svg';
|
||||||
|
import HashLockIC from '../../../../public/res/ic/outlined/hash-lock.svg';
|
||||||
|
import SpaceIC from '../../../../public/res/ic/outlined/space.svg';
|
||||||
|
import SpaceLockIC from '../../../../public/res/ic/outlined/space-lock.svg';
|
||||||
|
import CrossIC from '../../../../public/res/ic/outlined/cross.svg';
|
||||||
|
|
||||||
|
function useVisiblityToggle(setResult) {
|
||||||
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const handleSearchOpen = (term) => {
|
||||||
|
setResult({
|
||||||
|
term,
|
||||||
|
chunk: [],
|
||||||
|
});
|
||||||
|
setIsOpen(true);
|
||||||
|
};
|
||||||
|
navigation.on(cons.events.navigation.SEARCH_OPENED, handleSearchOpen);
|
||||||
|
return () => {
|
||||||
|
navigation.removeListener(cons.events.navigation.SEARCH_OPENED, handleSearchOpen);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isOpen === false) {
|
||||||
|
setResult(undefined);
|
||||||
|
}
|
||||||
|
}, [isOpen]);
|
||||||
|
|
||||||
|
const requestClose = () => setIsOpen(false);
|
||||||
|
|
||||||
|
return [isOpen, requestClose];
|
||||||
|
}
|
||||||
|
|
||||||
|
function mapRoomIds(roomIds, type) {
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
const { directs, roomIdToParents } = initMatrix.roomList;
|
||||||
|
|
||||||
|
return roomIds.map((roomId) => {
|
||||||
|
let roomType = type;
|
||||||
|
|
||||||
|
if (!roomType) {
|
||||||
|
roomType = directs.has(roomId) ? 'direct' : 'room';
|
||||||
|
}
|
||||||
|
|
||||||
|
const room = mx.getRoom(roomId);
|
||||||
|
const parentSet = roomIdToParents.get(roomId);
|
||||||
|
const parentNames = parentSet
|
||||||
|
? [...parentSet].map((parentId) => mx.getRoom(parentId).name)
|
||||||
|
: undefined;
|
||||||
|
|
||||||
|
const parents = parentNames ? parentNames.join(', ') : null;
|
||||||
|
|
||||||
|
return ({
|
||||||
|
type: roomType,
|
||||||
|
name: room.name,
|
||||||
|
parents,
|
||||||
|
roomId,
|
||||||
|
room,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function Search() {
|
||||||
|
const [result, setResult] = useState(null);
|
||||||
|
const [asyncSearch] = useState(new AsyncSearch());
|
||||||
|
const [isOpen, requestClose] = useVisiblityToggle(setResult);
|
||||||
|
const searchRef = useRef(null);
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
|
||||||
|
const handleSearchResults = (chunk, term) => {
|
||||||
|
setResult({
|
||||||
|
term,
|
||||||
|
chunk,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const generateResults = (term) => {
|
||||||
|
const prefix = term.match(/^[#@*]/)?.[0];
|
||||||
|
|
||||||
|
if (term.length === 1) {
|
||||||
|
const { roomList } = initMatrix;
|
||||||
|
const spaces = mapRoomIds([...roomList.spaces], 'space').reverse();
|
||||||
|
const rooms = mapRoomIds([...roomList.rooms], 'room').reverse();
|
||||||
|
const directs = mapRoomIds([...roomList.directs], 'direct').reverse();
|
||||||
|
|
||||||
|
if (prefix === '*') {
|
||||||
|
asyncSearch.setup(spaces, { keys: 'name', isContain: true, limit: 20 });
|
||||||
|
handleSearchResults(spaces, '*');
|
||||||
|
} else if (prefix === '#') {
|
||||||
|
asyncSearch.setup(rooms, { keys: 'name', isContain: true, limit: 20 });
|
||||||
|
handleSearchResults(rooms, '#');
|
||||||
|
} else if (prefix === '@') {
|
||||||
|
asyncSearch.setup(directs, { keys: 'name', isContain: true, limit: 20 });
|
||||||
|
handleSearchResults(directs, '@');
|
||||||
|
} else {
|
||||||
|
const dataList = spaces.concat(rooms, directs);
|
||||||
|
asyncSearch.setup(dataList, { keys: 'name', isContain: true, limit: 20 });
|
||||||
|
asyncSearch.search(term);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
asyncSearch.search(prefix ? term.slice(1) : term);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadRecentRooms = () => {
|
||||||
|
const { recentRooms } = navigation;
|
||||||
|
handleSearchResults(mapRoomIds(recentRooms).reverse(), '');
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAfterOpen = () => {
|
||||||
|
searchRef.current.focus();
|
||||||
|
loadRecentRooms();
|
||||||
|
asyncSearch.on(asyncSearch.RESULT_SENT, handleSearchResults);
|
||||||
|
|
||||||
|
if (typeof result.term === 'string') {
|
||||||
|
generateResults(result.term);
|
||||||
|
searchRef.current.value = result.term;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAfterClose = () => {
|
||||||
|
asyncSearch.removeListener(asyncSearch.RESULT_SENT, handleSearchResults);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleOnChange = () => {
|
||||||
|
const { value } = searchRef.current;
|
||||||
|
if (value.length === 0) {
|
||||||
|
loadRecentRooms();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
generateResults(value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCross = (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
const { value } = searchRef.current;
|
||||||
|
if (value.length === 0) requestClose();
|
||||||
|
else {
|
||||||
|
searchRef.current.value = '';
|
||||||
|
searchRef.current.focus();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const openItem = (roomId, type) => {
|
||||||
|
if (type === 'space') selectTab(roomId);
|
||||||
|
else selectRoom(roomId);
|
||||||
|
requestClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
const openFirstResult = () => {
|
||||||
|
const { chunk } = result;
|
||||||
|
if (chunk?.length > 0) {
|
||||||
|
const item = chunk[0];
|
||||||
|
openItem(item.roomId, item.type);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const notifs = initMatrix.notifications;
|
||||||
|
const renderRoomSelector = (item) => {
|
||||||
|
const isPrivate = item.room.getJoinRule() === 'invite';
|
||||||
|
let imageSrc = null;
|
||||||
|
let iconSrc = null;
|
||||||
|
if (item.type === 'room') iconSrc = isPrivate ? HashLockIC : HashIC;
|
||||||
|
if (item.type === 'space') iconSrc = isPrivate ? SpaceLockIC : SpaceIC;
|
||||||
|
if (item.type === 'direct') imageSrc = item.room.getAvatarFallbackMember()?.getAvatarUrl(mx.baseUrl, 24, 24, 'crop') || null;
|
||||||
|
|
||||||
|
const isUnread = notifs.hasNoti(item.roomId);
|
||||||
|
const noti = notifs.getNoti(item.roomId);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<RoomSelector
|
||||||
|
key={item.roomId}
|
||||||
|
name={item.name}
|
||||||
|
parentName={item.parents}
|
||||||
|
roomId={item.roomId}
|
||||||
|
imageSrc={imageSrc}
|
||||||
|
iconSrc={iconSrc}
|
||||||
|
isUnread={isUnread}
|
||||||
|
notificationCount={noti.total}
|
||||||
|
isAlert={noti.highlight > 0}
|
||||||
|
onClick={() => openItem(item.roomId, item.type)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<RawModal
|
||||||
|
className="search-dialog__model dialog-model"
|
||||||
|
isOpen={isOpen}
|
||||||
|
onAfterOpen={handleAfterOpen}
|
||||||
|
onAfterClose={handleAfterClose}
|
||||||
|
onRequestClose={requestClose}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div className="search-dialog">
|
||||||
|
<form className="search-dialog__input" onSubmit={(e) => { e.preventDefault(); openFirstResult()}}>
|
||||||
|
<RawIcon src={SearchIC} size="small" />
|
||||||
|
<Input
|
||||||
|
onChange={handleOnChange}
|
||||||
|
forwardRef={searchRef}
|
||||||
|
placeholder="Search"
|
||||||
|
/>
|
||||||
|
<IconButton size="small" src={CrossIC} type="reset" onClick={handleCross} tabIndex={-1} />
|
||||||
|
</form>
|
||||||
|
<div className="search-dialog__content-wrapper">
|
||||||
|
<ScrollView autoHide>
|
||||||
|
<div className="search-dialog__content">
|
||||||
|
{ Array.isArray(result?.chunk) && result.chunk.map(renderRoomSelector) }
|
||||||
|
</div>
|
||||||
|
</ScrollView>
|
||||||
|
</div>
|
||||||
|
<div className="search-dialog__footer">
|
||||||
|
<Text variant="b3">Type # for rooms, @ for DMs and * for spaces. Hotkey: Ctrl + k</Text>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</RawModal>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Search;
|
||||||
86
src/app/organisms/search/Search.scss
Normal file
86
src/app/organisms/search/Search.scss
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
.search-dialog__model {
|
||||||
|
--modal-height: 380px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: var(--bg-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-dialog {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
&__input {
|
||||||
|
padding: var(--sp-normal);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
& > .ic-raw {
|
||||||
|
position: absolute;
|
||||||
|
left: calc(var(--sp-normal) + var(--sp-tight));
|
||||||
|
[dir=rtl] & {
|
||||||
|
left: unset;
|
||||||
|
right: calc(var(--sp-normal) + var(--sp-tight));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
& > .ic-btn {
|
||||||
|
border-radius: calc(var(--bo-radius) / 2);
|
||||||
|
position: absolute;
|
||||||
|
right: calc(var(--sp-normal) + var(--sp-extra-tight));
|
||||||
|
[dir=rtl] & {
|
||||||
|
right: unset;
|
||||||
|
left: calc(var(--sp-normal) + var(--sp-extra-tight));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
& .input-container {
|
||||||
|
min-width: 0;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
& input {
|
||||||
|
padding-left: 40px;
|
||||||
|
padding-right: 40px;
|
||||||
|
font-size: var(--fs-s1);
|
||||||
|
letter-spacing: var(--ls-s1);
|
||||||
|
line-height: var(--lh-s1);
|
||||||
|
color: var(--tc-surface-high);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__content-wrapper {
|
||||||
|
min-height: 0;
|
||||||
|
flex: 1;
|
||||||
|
position: relative;
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
z-index: 99;
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
height: 8px;
|
||||||
|
background-image: linear-gradient(to bottom, var(--bg-surface), var(--bg-surface-transparent));
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
top: unset;
|
||||||
|
bottom: 0;
|
||||||
|
background-image: linear-gradient(to bottom, var(--bg-surface-transparent), var(--bg-surface));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__content {
|
||||||
|
padding: var(--sp-extra-tight) var(--sp-normal);
|
||||||
|
padding-right: var(--sp-extra-tight);
|
||||||
|
|
||||||
|
[dir=rtl] & {
|
||||||
|
padding-left: var(--sp-extra-tight);
|
||||||
|
padding-right: var(--sp-normal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__footer {
|
||||||
|
padding: var(--sp-tight) var(--sp-normal);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@ import './Settings.scss';
|
|||||||
import initMatrix from '../../../client/initMatrix';
|
import initMatrix from '../../../client/initMatrix';
|
||||||
import cons from '../../../client/state/cons';
|
import cons from '../../../client/state/cons';
|
||||||
import settings from '../../../client/state/settings';
|
import settings from '../../../client/state/settings';
|
||||||
import { toggleMarkdown } from '../../../client/action/settings';
|
import { toggleMarkdown, toggleMembershipEvents, toggleNickAvatarEvents } from '../../../client/action/settings';
|
||||||
|
|
||||||
import Text from '../../atoms/text/Text';
|
import Text from '../../atoms/text/Text';
|
||||||
import IconButton from '../../atoms/button/IconButton';
|
import IconButton from '../../atoms/button/IconButton';
|
||||||
@@ -15,7 +15,8 @@ import SegmentedControls from '../../atoms/segmented-controls/SegmentedControls'
|
|||||||
|
|
||||||
import PopupWindow, { PWContentSelector } from '../../molecules/popup-window/PopupWindow';
|
import PopupWindow, { PWContentSelector } from '../../molecules/popup-window/PopupWindow';
|
||||||
import SettingTile from '../../molecules/setting-tile/SettingTile';
|
import SettingTile from '../../molecules/setting-tile/SettingTile';
|
||||||
import ImportE2ERoomKeys from '../../molecules/import-e2e-room-keys/ImportE2ERoomKeys';
|
import ImportE2ERoomKeys from '../../molecules/import-export-e2e-room-keys/ImportE2ERoomKeys';
|
||||||
|
import ExportE2ERoomKeys from '../../molecules/import-export-e2e-room-keys/ExportE2ERoomKeys';
|
||||||
|
|
||||||
import ProfileEditor from '../profile-editor/ProfileEditor';
|
import ProfileEditor from '../profile-editor/ProfileEditor';
|
||||||
|
|
||||||
@@ -65,11 +66,31 @@ function AppearanceSection() {
|
|||||||
options={(
|
options={(
|
||||||
<Toggle
|
<Toggle
|
||||||
isActive={settings.isMarkdown}
|
isActive={settings.isMarkdown}
|
||||||
onToggle={(isMarkdown) => { toggleMarkdown(isMarkdown); updateState({}); }}
|
onToggle={() => { toggleMarkdown(); updateState({}); }}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
content={<Text variant="b3">Format messages with markdown syntax before sending.</Text>}
|
content={<Text variant="b3">Format messages with markdown syntax before sending.</Text>}
|
||||||
/>
|
/>
|
||||||
|
<SettingTile
|
||||||
|
title="Hide membership events"
|
||||||
|
options={(
|
||||||
|
<Toggle
|
||||||
|
isActive={settings.hideMembershipEvents}
|
||||||
|
onToggle={() => { toggleMembershipEvents(); updateState({}); }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
content={<Text variant="b3">Hide membership change messages from room timeline. (Join, Leave, Invite, Kick and Ban)</Text>}
|
||||||
|
/>
|
||||||
|
<SettingTile
|
||||||
|
title="Hide nick/avatar events"
|
||||||
|
options={(
|
||||||
|
<Toggle
|
||||||
|
isActive={settings.hideNickAvatarEvents}
|
||||||
|
onToggle={() => { toggleNickAvatarEvents(); updateState({}); }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
content={<Text variant="b3">Hide nick and avatar change messages from room timeline.</Text>}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -84,6 +105,15 @@ function SecuritySection() {
|
|||||||
title={`Device key: ${initMatrix.matrixClient.getDeviceEd25519Key().match(/.{1,4}/g).join(' ')}`}
|
title={`Device key: ${initMatrix.matrixClient.getDeviceEd25519Key().match(/.{1,4}/g).join(' ')}`}
|
||||||
content={<Text variant="b3">Use this device ID-key combo to verify or manage this session from Element client.</Text>}
|
content={<Text variant="b3">Use this device ID-key combo to verify or manage this session from Element client.</Text>}
|
||||||
/>
|
/>
|
||||||
|
<SettingTile
|
||||||
|
title="Export E2E room keys"
|
||||||
|
content={(
|
||||||
|
<>
|
||||||
|
<Text variant="b3">Export end-to-end encryption room keys to decrypt old messages in other session. In order to encrypt keys you need to set a password, which will be used while importing.</Text>
|
||||||
|
<ExportE2ERoomKeys />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
<SettingTile
|
<SettingTile
|
||||||
title="Import E2E room keys"
|
title="Import E2E room keys"
|
||||||
content={(
|
content={(
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {
|
|
||||||
BrowserRouter,
|
|
||||||
} from 'react-router-dom';
|
|
||||||
|
|
||||||
import { isAuthenticated } from '../../client/state/auth';
|
import { isAuthenticated } from '../../client/state/auth';
|
||||||
|
|
||||||
@@ -9,11 +6,7 @@ import Auth from '../templates/auth/Auth';
|
|||||||
import Client from '../templates/client/Client';
|
import Client from '../templates/client/Client';
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return isAuthenticated() ? <Client /> : <Auth />;
|
||||||
<BrowserRouter>
|
|
||||||
{ isAuthenticated() ? <Client /> : <Auth />}
|
|
||||||
</BrowserRouter>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ function Login({ loginFlow, baseUrl }) {
|
|||||||
const [typeIndex, setTypeIndex] = useState(0);
|
const [typeIndex, setTypeIndex] = useState(0);
|
||||||
const loginTypes = ['Username', 'Email'];
|
const loginTypes = ['Username', 'Email'];
|
||||||
const isPassword = loginFlow?.filter((flow) => flow.type === 'm.login.password')[0];
|
const isPassword = loginFlow?.filter((flow) => flow.type === 'm.login.password')[0];
|
||||||
const ssoProviders = loginFlow?.filter((flow) => flow.type.match(/^m.login.(sso|cas)$/))[0];
|
const ssoProviders = loginFlow?.filter((flow) => flow.type === 'm.login.sso')[0];
|
||||||
|
|
||||||
const initialValues = {
|
const initialValues = {
|
||||||
username: '', password: '', email: '', other: '',
|
username: '', password: '', email: '', other: '',
|
||||||
@@ -248,7 +248,7 @@ function Login({ loginFlow, baseUrl }) {
|
|||||||
{ssoProviders && isPassword && <Text className="sso__divider">OR</Text>}
|
{ssoProviders && isPassword && <Text className="sso__divider">OR</Text>}
|
||||||
{ssoProviders && (
|
{ssoProviders && (
|
||||||
<SSOButtons
|
<SSOButtons
|
||||||
type={ssoProviders.type.match(/^m.login.(sso|cas)$/)[1]}
|
type="sso"
|
||||||
identityProviders={ssoProviders.identity_providers}
|
identityProviders={ssoProviders.identity_providers}
|
||||||
baseUrl={baseUrl}
|
baseUrl={baseUrl}
|
||||||
/>
|
/>
|
||||||
@@ -269,7 +269,7 @@ function Register({ registerInfo, loginFlow, baseUrl }) {
|
|||||||
const [process, setProcess] = useState({});
|
const [process, setProcess] = useState({});
|
||||||
const formRef = useRef();
|
const formRef = useRef();
|
||||||
|
|
||||||
const ssoProviders = loginFlow?.filter((flow) => flow.type.match(/^m.login.(sso|cas)$/))[0];
|
const ssoProviders = loginFlow?.filter((flow) => flow.type === 'm.login.sso')[0];
|
||||||
const isDisabled = registerInfo.errcode !== undefined;
|
const isDisabled = registerInfo.errcode !== undefined;
|
||||||
const { flows, params, session } = registerInfo;
|
const { flows, params, session } = registerInfo;
|
||||||
|
|
||||||
@@ -332,8 +332,8 @@ function Register({ registerInfo, loginFlow, baseUrl }) {
|
|||||||
actions.setSubmitting(false);
|
actions.setSubmitting(false);
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
const msg = err.message || err.error;
|
const msg = err.message || err.error;
|
||||||
if (['M_USER_IN_USE', 'M_INVALID_USERNAME', 'M_EXCLUSIVE'].indexOf(err.errcode) > 0) {
|
if (['M_USER_IN_USE', 'M_INVALID_USERNAME', 'M_EXCLUSIVE'].indexOf(err.errcode) > -1) {
|
||||||
actions.setErrors({ username: err.errCode === 'M_USER_IN_USE' ? 'Username is already taken' : msg });
|
actions.setErrors({ username: err.errcode === 'M_USER_IN_USE' ? 'Username is already taken' : msg });
|
||||||
} else if (msg) actions.setErrors({ other: msg });
|
} else if (msg) actions.setErrors({ other: msg });
|
||||||
|
|
||||||
actions.setSubmitting(false);
|
actions.setSubmitting(false);
|
||||||
@@ -452,7 +452,7 @@ function Register({ registerInfo, loginFlow, baseUrl }) {
|
|||||||
)}
|
)}
|
||||||
{isDisabled && ssoProviders && (
|
{isDisabled && ssoProviders && (
|
||||||
<SSOButtons
|
<SSOButtons
|
||||||
type={ssoProviders.type.match(/^m.login.(sso|cas)$/)[1]}
|
type="sso"
|
||||||
identityProviders={ssoProviders.identity_providers}
|
identityProviders={ssoProviders.identity_providers}
|
||||||
baseUrl={baseUrl}
|
baseUrl={baseUrl}
|
||||||
/>
|
/>
|
||||||
@@ -605,7 +605,7 @@ function Terms({ url, onSubmit }) {
|
|||||||
<div style={{ marginBottom: 'var(--sp-normal)' }} />
|
<div style={{ marginBottom: 'var(--sp-normal)' }} />
|
||||||
<Text variant="b1">In order to complete registration, you need to agree to the terms and conditions.</Text>
|
<Text variant="b1">In order to complete registration, you need to agree to the terms and conditions.</Text>
|
||||||
<div style={{ display: 'flex', alignItems: 'center', margin: 'var(--sp-normal) 0' }}>
|
<div style={{ display: 'flex', alignItems: 'center', margin: 'var(--sp-normal) 0' }}>
|
||||||
<input id="termsCheckbox" type="checkbox" required />
|
<input style={{ marginRight: '8px' }} id="termsCheckbox" type="checkbox" required />
|
||||||
<Text variant="b1">
|
<Text variant="b1">
|
||||||
{'I accept '}
|
{'I accept '}
|
||||||
<a style={{ cursor: 'pointer' }} href={url} rel="noreferrer" target="_blank">Terms and Conditions</a>
|
<a style={{ cursor: 'pointer' }} href={url} rel="noreferrer" target="_blank">Terms and Conditions</a>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
.auth__base {
|
.auth__base {
|
||||||
--pattern-size: 48px;
|
--pattern-size: 48px;
|
||||||
min-height: 100vh;
|
min-height: 100%;
|
||||||
background-color: var(--bg-surface-low);
|
background-color: var(--bg-surface-low);
|
||||||
|
|
||||||
background-image: radial-gradient(rgba(0, 0, 0, 6%) 2px, rgba(0, 0, 0, 0%) 2px);
|
background-image: radial-gradient(rgba(0, 0, 0, 6%) 2px, rgba(0, 0, 0, 0%) 2px);
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100%;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -75,7 +75,10 @@ async function completeRegisterStage(
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
const result = await tempClient.registerRequest({
|
const result = await tempClient.registerRequest({
|
||||||
username, password, auth,
|
username,
|
||||||
|
password,
|
||||||
|
auth,
|
||||||
|
initial_device_display_name: cons.DEVICE_DISPLAY_NAME,
|
||||||
});
|
});
|
||||||
const data = { completed: result.completed || [] };
|
const data = { completed: result.completed || [] };
|
||||||
if (result.access_token) {
|
if (result.access_token) {
|
||||||
|
|||||||
@@ -1,53 +1,48 @@
|
|||||||
import appDispatcher from '../dispatcher';
|
import appDispatcher from '../dispatcher';
|
||||||
import cons from '../state/cons';
|
import cons from '../state/cons';
|
||||||
|
|
||||||
function selectTab(tabId) {
|
export function selectTab(tabId) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.SELECT_TAB,
|
type: cons.actions.navigation.SELECT_TAB,
|
||||||
tabId,
|
tabId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectSpace(roomId) {
|
export function selectSpace(roomId) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.SELECT_SPACE,
|
type: cons.actions.navigation.SELECT_SPACE,
|
||||||
roomId,
|
roomId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectRoom(roomId) {
|
export function selectRoom(roomId, eventId) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.SELECT_ROOM,
|
type: cons.actions.navigation.SELECT_ROOM,
|
||||||
roomId,
|
roomId,
|
||||||
|
eventId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function togglePeopleDrawer() {
|
export function openInviteList() {
|
||||||
appDispatcher.dispatch({
|
|
||||||
type: cons.actions.navigation.TOGGLE_PEOPLE_DRAWER,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function openInviteList() {
|
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_INVITE_LIST,
|
type: cons.actions.navigation.OPEN_INVITE_LIST,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openPublicRooms(searchTerm) {
|
export function openPublicRooms(searchTerm) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_PUBLIC_ROOMS,
|
type: cons.actions.navigation.OPEN_PUBLIC_ROOMS,
|
||||||
searchTerm,
|
searchTerm,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openCreateRoom() {
|
export function openCreateRoom() {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_CREATE_ROOM,
|
type: cons.actions.navigation.OPEN_CREATE_ROOM,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openInviteUser(roomId, searchTerm) {
|
export function openInviteUser(roomId, searchTerm) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_INVITE_USER,
|
type: cons.actions.navigation.OPEN_INVITE_USER,
|
||||||
roomId,
|
roomId,
|
||||||
@@ -55,7 +50,7 @@ function openInviteUser(roomId, searchTerm) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openProfileViewer(userId, roomId) {
|
export function openProfileViewer(userId, roomId) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_PROFILE_VIEWER,
|
type: cons.actions.navigation.OPEN_PROFILE_VIEWER,
|
||||||
userId,
|
userId,
|
||||||
@@ -63,13 +58,13 @@ function openProfileViewer(userId, roomId) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openSettings() {
|
export function openSettings() {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_SETTINGS,
|
type: cons.actions.navigation.OPEN_SETTINGS,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openEmojiBoard(cords, requestEmojiCallback) {
|
export function openEmojiBoard(cords, requestEmojiCallback) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_EMOJIBOARD,
|
type: cons.actions.navigation.OPEN_EMOJIBOARD,
|
||||||
cords,
|
cords,
|
||||||
@@ -77,15 +72,15 @@ function openEmojiBoard(cords, requestEmojiCallback) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openReadReceipts(roomId, eventId) {
|
export function openReadReceipts(roomId, userIds) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_READRECEIPTS,
|
type: cons.actions.navigation.OPEN_READRECEIPTS,
|
||||||
roomId,
|
roomId,
|
||||||
eventId,
|
userIds,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function openRoomOptions(cords, roomId) {
|
export function openRoomOptions(cords, roomId) {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.navigation.OPEN_ROOMOPTIONS,
|
type: cons.actions.navigation.OPEN_ROOMOPTIONS,
|
||||||
cords,
|
cords,
|
||||||
@@ -93,18 +88,18 @@ function openRoomOptions(cords, roomId) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export function replyTo(userId, eventId, body) {
|
||||||
selectTab,
|
appDispatcher.dispatch({
|
||||||
selectSpace,
|
type: cons.actions.navigation.CLICK_REPLY_TO,
|
||||||
selectRoom,
|
userId,
|
||||||
togglePeopleDrawer,
|
eventId,
|
||||||
openInviteList,
|
body,
|
||||||
openPublicRooms,
|
});
|
||||||
openCreateRoom,
|
}
|
||||||
openInviteUser,
|
|
||||||
openProfileViewer,
|
export function openSearch(term) {
|
||||||
openSettings,
|
appDispatcher.dispatch({
|
||||||
openEmojiBoard,
|
type: cons.actions.navigation.OPEN_SEARCH,
|
||||||
openReadReceipts,
|
term,
|
||||||
openRoomOptions,
|
});
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -1,12 +1,26 @@
|
|||||||
import appDispatcher from '../dispatcher';
|
import appDispatcher from '../dispatcher';
|
||||||
import cons from '../state/cons';
|
import cons from '../state/cons';
|
||||||
|
|
||||||
function toggleMarkdown() {
|
export function toggleMarkdown() {
|
||||||
appDispatcher.dispatch({
|
appDispatcher.dispatch({
|
||||||
type: cons.actions.settings.TOGGLE_MARKDOWN,
|
type: cons.actions.settings.TOGGLE_MARKDOWN,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export function togglePeopleDrawer() {
|
||||||
toggleMarkdown,
|
appDispatcher.dispatch({
|
||||||
};
|
type: cons.actions.settings.TOGGLE_PEOPLE_DRAWER,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function toggleMembershipEvents() {
|
||||||
|
appDispatcher.dispatch({
|
||||||
|
type: cons.actions.settings.TOGGLE_MEMBERSHIP_EVENT,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function toggleNickAvatarEvents() {
|
||||||
|
appDispatcher.dispatch({
|
||||||
|
type: cons.actions.settings.TOGGLE_NICKAVATAR_EVENT,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|||||||
37
src/client/event/hotkeys.js
Normal file
37
src/client/event/hotkeys.js
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
import { openSearch } from '../action/navigation';
|
||||||
|
import navigation from '../state/navigation';
|
||||||
|
|
||||||
|
function listenKeyboard(event) {
|
||||||
|
// Ctrl +
|
||||||
|
if (event.ctrlKey) {
|
||||||
|
// k - for search Modal
|
||||||
|
if (event.keyCode === 75) {
|
||||||
|
event.preventDefault();
|
||||||
|
if (navigation.isRawModalVisible) return;
|
||||||
|
openSearch();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!event.ctrlKey && !event.altKey) {
|
||||||
|
if (navigation.isRawModalVisible) return;
|
||||||
|
if (['text', 'textarea'].includes(document.activeElement.type)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (event.keyCode < 48
|
||||||
|
|| (event.keyCode >= 91 && event.keyCode <= 93)
|
||||||
|
|| (event.keyCode >= 112 && event.keyCode <= 183)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const msgTextarea = document.getElementById('message-textarea');
|
||||||
|
msgTextarea?.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function initHotkeys() {
|
||||||
|
document.body.addEventListener('keydown', listenKeyboard);
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeHotkeys() {
|
||||||
|
document.body.removeEventListener('keydown', listenKeyboard);
|
||||||
|
}
|
||||||
|
|
||||||
|
export { initHotkeys, removeHotkeys };
|
||||||
@@ -1,13 +1,17 @@
|
|||||||
import EventEmitter from 'events';
|
import EventEmitter from 'events';
|
||||||
import * as sdk from 'matrix-js-sdk';
|
import * as sdk from 'matrix-js-sdk';
|
||||||
|
// import { logger } from 'matrix-js-sdk/lib/logger';
|
||||||
|
|
||||||
import { secret } from './state/auth';
|
import { secret } from './state/auth';
|
||||||
import RoomList from './state/RoomList';
|
import RoomList from './state/RoomList';
|
||||||
import RoomsInput from './state/RoomsInput';
|
import RoomsInput from './state/RoomsInput';
|
||||||
import Notifications from './state/Notifications';
|
import Notifications from './state/Notifications';
|
||||||
|
import { initHotkeys } from './event/hotkeys';
|
||||||
|
|
||||||
global.Olm = require('@matrix-org/olm');
|
global.Olm = require('@matrix-org/olm');
|
||||||
|
|
||||||
|
// logger.disableAll();
|
||||||
|
|
||||||
class InitMatrix extends EventEmitter {
|
class InitMatrix extends EventEmitter {
|
||||||
async init() {
|
async init() {
|
||||||
await this.startClient();
|
await this.startClient();
|
||||||
@@ -31,6 +35,7 @@ class InitMatrix extends EventEmitter {
|
|||||||
sessionStore: new sdk.WebStorageSessionStore(global.localStorage),
|
sessionStore: new sdk.WebStorageSessionStore(global.localStorage),
|
||||||
cryptoStore: new sdk.IndexedDBCryptoStore(global.indexedDB, 'crypto-store'),
|
cryptoStore: new sdk.IndexedDBCryptoStore(global.indexedDB, 'crypto-store'),
|
||||||
deviceId: secret.deviceId,
|
deviceId: secret.deviceId,
|
||||||
|
timelineSupport: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
await this.matrixClient.initCrypto();
|
await this.matrixClient.initCrypto();
|
||||||
@@ -58,6 +63,7 @@ class InitMatrix extends EventEmitter {
|
|||||||
this.roomList = new RoomList(this.matrixClient);
|
this.roomList = new RoomList(this.matrixClient);
|
||||||
this.roomsInput = new RoomsInput(this.matrixClient);
|
this.roomsInput = new RoomsInput(this.matrixClient);
|
||||||
this.notifications = new Notifications(this.roomList);
|
this.notifications = new Notifications(this.roomList);
|
||||||
|
initHotkeys();
|
||||||
this.emit('init_loading_finished');
|
this.emit('init_loading_finished');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,17 @@
|
|||||||
import EventEmitter from 'events';
|
import EventEmitter from 'events';
|
||||||
import cons from './cons';
|
import cons from './cons';
|
||||||
|
|
||||||
|
function isNotifEvent(mEvent) {
|
||||||
|
const eType = mEvent.getType();
|
||||||
|
if (!cons.supportEventTypes.includes(eType)) return false;
|
||||||
|
if (eType === 'm.room.member') return false;
|
||||||
|
|
||||||
|
if (mEvent.isRedacted()) return false;
|
||||||
|
if (mEvent.getRelation()?.rel_type === 'm.replace') return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
class Notifications extends EventEmitter {
|
class Notifications extends EventEmitter {
|
||||||
constructor(roomList) {
|
constructor(roomList) {
|
||||||
super();
|
super();
|
||||||
@@ -33,23 +44,16 @@ class Notifications extends EventEmitter {
|
|||||||
doesRoomHaveUnread(room) {
|
doesRoomHaveUnread(room) {
|
||||||
const userId = this.matrixClient.getUserId();
|
const userId = this.matrixClient.getUserId();
|
||||||
const readUpToId = room.getEventReadUpTo(userId);
|
const readUpToId = room.getEventReadUpTo(userId);
|
||||||
const supportEvents = ['m.room.message', 'm.room.encrypted', 'm.sticker'];
|
const liveEvents = room.getLiveTimeline().getEvents();
|
||||||
|
|
||||||
if (room.timeline.length
|
if (liveEvents[liveEvents.length - 1]?.getSender() === userId) {
|
||||||
&& room.timeline[room.timeline.length - 1].sender
|
|
||||||
&& room.timeline[room.timeline.length - 1].sender.userId === userId
|
|
||||||
&& room.timeline[room.timeline.length - 1].getType() !== 'm.room.member') {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = room.timeline.length - 1; i >= 0; i -= 1) {
|
for (let i = liveEvents.length - 1; i >= 0; i -= 1) {
|
||||||
const event = room.timeline[i];
|
const event = liveEvents[i];
|
||||||
|
|
||||||
if (event.getId() === readUpToId) return false;
|
if (event.getId() === readUpToId) return false;
|
||||||
|
if (isNotifEvent(event)) return true;
|
||||||
if (supportEvents.includes(event.getType())) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -77,6 +81,13 @@ class Notifications extends EventEmitter {
|
|||||||
return this.roomIdToNoti.has(roomId);
|
return this.roomIdToNoti.has(roomId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
deleteNoti(roomId) {
|
||||||
|
if (this.hasNoti(roomId)) {
|
||||||
|
const noti = this.getNoti(roomId);
|
||||||
|
this._deleteNoti(roomId, noti.total, noti.highlight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
_getAllParentIds(roomId) {
|
_getAllParentIds(roomId) {
|
||||||
let allParentIds = this.roomList.roomIdToParents.get(roomId);
|
let allParentIds = this.roomList.roomIdToParents.get(roomId);
|
||||||
if (allParentIds === undefined) return new Set();
|
if (allParentIds === undefined) return new Set();
|
||||||
@@ -149,10 +160,10 @@ class Notifications extends EventEmitter {
|
|||||||
|
|
||||||
_listenEvents() {
|
_listenEvents() {
|
||||||
this.matrixClient.on('Room.timeline', (mEvent, room) => {
|
this.matrixClient.on('Room.timeline', (mEvent, room) => {
|
||||||
const supportEvents = ['m.room.message', 'm.room.encrypted', 'm.sticker'];
|
if (!isNotifEvent(mEvent)) return;
|
||||||
if (!supportEvents.includes(mEvent.getType())) return;
|
const liveEvents = room.getLiveTimeline().getEvents();
|
||||||
|
|
||||||
const lastTimelineEvent = room.timeline[room.timeline.length - 1];
|
const lastTimelineEvent = liveEvents[liveEvents.length - 1];
|
||||||
if (lastTimelineEvent.getId() !== mEvent.getId()) return;
|
if (lastTimelineEvent.getId() !== mEvent.getId()) return;
|
||||||
if (mEvent.getSender() === this.matrixClient.getUserId()) return;
|
if (mEvent.getSender() === this.matrixClient.getUserId()) return;
|
||||||
|
|
||||||
@@ -170,17 +181,13 @@ class Notifications extends EventEmitter {
|
|||||||
const readerUserId = Object.keys(content[readedEventId]['m.read'])[0];
|
const readerUserId = Object.keys(content[readedEventId]['m.read'])[0];
|
||||||
if (readerUserId !== this.matrixClient.getUserId()) return;
|
if (readerUserId !== this.matrixClient.getUserId()) return;
|
||||||
|
|
||||||
if (this.hasNoti(room.roomId)) {
|
this.deleteNoti(room.roomId);
|
||||||
const noti = this.getNoti(room.roomId);
|
|
||||||
this._deleteNoti(room.roomId, noti.total, noti.highlight);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.matrixClient.on('Room.myMembership', (room, membership) => {
|
this.matrixClient.on('Room.myMembership', (room, membership) => {
|
||||||
if (membership === 'leave' && this.hasNoti(room.roomId)) {
|
if (membership === 'leave' && this.hasNoti(room.roomId)) {
|
||||||
const noti = this.getNoti(room.roomId);
|
this.deleteNoti(room.roomId);
|
||||||
this._deleteNoti(room.roomId, noti.total, noti.highlight);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,53 +2,360 @@ import EventEmitter from 'events';
|
|||||||
import initMatrix from '../initMatrix';
|
import initMatrix from '../initMatrix';
|
||||||
import cons from './cons';
|
import cons from './cons';
|
||||||
|
|
||||||
|
import settings from './settings';
|
||||||
|
|
||||||
|
function isEdited(mEvent) {
|
||||||
|
return mEvent.getRelation()?.rel_type === 'm.replace';
|
||||||
|
}
|
||||||
|
|
||||||
|
function isReaction(mEvent) {
|
||||||
|
return mEvent.getType() === 'm.reaction';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getRelateToId(mEvent) {
|
||||||
|
const relation = mEvent.getRelation();
|
||||||
|
return relation && relation.event_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
function addToMap(myMap, mEvent) {
|
||||||
|
const relateToId = getRelateToId(mEvent);
|
||||||
|
if (relateToId === null) return null;
|
||||||
|
const mEventId = mEvent.getId();
|
||||||
|
|
||||||
|
if (typeof myMap.get(relateToId) === 'undefined') myMap.set(relateToId, []);
|
||||||
|
const mEvents = myMap.get(relateToId);
|
||||||
|
if (mEvents.find((ev) => ev.getId() === mEventId)) return mEvent;
|
||||||
|
mEvents.push(mEvent);
|
||||||
|
return mEvent;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFirstLinkedTimeline(timeline) {
|
||||||
|
let tm = timeline;
|
||||||
|
while (tm.prevTimeline) {
|
||||||
|
tm = tm.prevTimeline;
|
||||||
|
}
|
||||||
|
return tm;
|
||||||
|
}
|
||||||
|
function getLastLinkedTimeline(timeline) {
|
||||||
|
let tm = timeline;
|
||||||
|
while (tm.nextTimeline) {
|
||||||
|
tm = tm.nextTimeline;
|
||||||
|
}
|
||||||
|
return tm;
|
||||||
|
}
|
||||||
|
|
||||||
|
function iterateLinkedTimelines(timeline, backwards, callback) {
|
||||||
|
let tm = timeline;
|
||||||
|
while (tm) {
|
||||||
|
callback(tm);
|
||||||
|
if (backwards) tm = tm.prevTimeline;
|
||||||
|
else tm = tm.nextTimeline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function isTimelineLinked(tm1, tm2) {
|
||||||
|
let tm = getFirstLinkedTimeline(tm1);
|
||||||
|
while (tm) {
|
||||||
|
if (tm === tm2) return true;
|
||||||
|
tm = tm.nextTimeline;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
class RoomTimeline extends EventEmitter {
|
class RoomTimeline extends EventEmitter {
|
||||||
constructor(roomId) {
|
constructor(roomId, notifications) {
|
||||||
super();
|
super();
|
||||||
|
// These are local timelines
|
||||||
|
this.timeline = [];
|
||||||
|
this.editedTimeline = new Map();
|
||||||
|
this.reactionTimeline = new Map();
|
||||||
|
this.typingMembers = new Set();
|
||||||
|
|
||||||
this.matrixClient = initMatrix.matrixClient;
|
this.matrixClient = initMatrix.matrixClient;
|
||||||
this.roomId = roomId;
|
this.roomId = roomId;
|
||||||
this.room = this.matrixClient.getRoom(roomId);
|
this.room = this.matrixClient.getRoom(roomId);
|
||||||
this.timeline = this.room.timeline;
|
this.notifications = notifications;
|
||||||
this.editedTimeline = this.getEditedTimeline();
|
|
||||||
this.reactionTimeline = this.getReactionTimeline();
|
this.liveTimeline = this.room.getLiveTimeline();
|
||||||
|
this.activeTimeline = this.liveTimeline;
|
||||||
|
|
||||||
this.isOngoingPagination = false;
|
this.isOngoingPagination = false;
|
||||||
this.ongoingDecryptionCount = 0;
|
this.ongoingDecryptionCount = 0;
|
||||||
this.typingMembers = new Set();
|
this.initialized = false;
|
||||||
|
|
||||||
this._listenRoomTimeline = (event, room) => {
|
setTimeout(() => this.room.loadMembersIfNeeded());
|
||||||
|
|
||||||
|
// TODO: remove below line
|
||||||
|
window.selectedRoom = this;
|
||||||
|
}
|
||||||
|
|
||||||
|
isServingLiveTimeline() {
|
||||||
|
return getLastLinkedTimeline(this.activeTimeline) === this.liveTimeline;
|
||||||
|
}
|
||||||
|
|
||||||
|
canPaginateBackward() {
|
||||||
|
if (this.timeline[0]?.getType() === 'm.room.create') return false;
|
||||||
|
const tm = getFirstLinkedTimeline(this.activeTimeline);
|
||||||
|
return tm.getPaginationToken('b') !== null;
|
||||||
|
}
|
||||||
|
|
||||||
|
canPaginateForward() {
|
||||||
|
return !this.isServingLiveTimeline();
|
||||||
|
}
|
||||||
|
|
||||||
|
isEncrypted() {
|
||||||
|
return this.matrixClient.isRoomEncrypted(this.roomId);
|
||||||
|
}
|
||||||
|
|
||||||
|
clearLocalTimelines() {
|
||||||
|
this.timeline = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
addToTimeline(mEvent) {
|
||||||
|
if (mEvent.getType() === 'm.room.member' && (settings.hideMembershipEvents || settings.hideNickAvatarEvents)) {
|
||||||
|
const content = mEvent.getContent();
|
||||||
|
const prevContent = mEvent.getPrevContent();
|
||||||
|
const { membership } = content;
|
||||||
|
|
||||||
|
if (settings.hideMembershipEvents) {
|
||||||
|
if (membership === 'invite' || membership === 'ban' || membership === 'leave') return;
|
||||||
|
if (prevContent.membership !== 'join') return;
|
||||||
|
}
|
||||||
|
if (settings.hideNickAvatarEvents) {
|
||||||
|
if (membership === 'join' && prevContent.membership === 'join') return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mEvent.isRedacted()) return;
|
||||||
|
if (isReaction(mEvent)) {
|
||||||
|
addToMap(this.reactionTimeline, mEvent);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!cons.supportEventTypes.includes(mEvent.getType())) return;
|
||||||
|
if (isEdited(mEvent)) {
|
||||||
|
addToMap(this.editedTimeline, mEvent);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.timeline.push(mEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
_populateAllLinkedEvents(timeline) {
|
||||||
|
const firstTimeline = getFirstLinkedTimeline(timeline);
|
||||||
|
iterateLinkedTimelines(firstTimeline, false, (tm) => {
|
||||||
|
tm.getEvents().forEach((mEvent) => this.addToTimeline(mEvent));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
_populateTimelines() {
|
||||||
|
this.clearLocalTimelines();
|
||||||
|
this._populateAllLinkedEvents(this.activeTimeline);
|
||||||
|
}
|
||||||
|
|
||||||
|
async _reset(eventId) {
|
||||||
|
if (this.isEncrypted()) await this.decryptAllEventsOfTimeline(this.activeTimeline);
|
||||||
|
this._populateTimelines();
|
||||||
|
if (!this.initialized) {
|
||||||
|
this.initialized = true;
|
||||||
|
this._listenEvents();
|
||||||
|
}
|
||||||
|
this.emit(cons.events.roomTimeline.READY, eventId ?? null);
|
||||||
|
}
|
||||||
|
|
||||||
|
async loadLiveTimeline() {
|
||||||
|
this.activeTimeline = this.liveTimeline;
|
||||||
|
await this._reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
async loadEventTimeline(eventId) {
|
||||||
|
// we use first unfiltered EventTimelineSet for room pagination.
|
||||||
|
const timelineSet = this.getUnfilteredTimelineSet();
|
||||||
|
try {
|
||||||
|
const eventTimeline = await this.matrixClient.getEventTimeline(timelineSet, eventId);
|
||||||
|
this.activeTimeline = eventTimeline;
|
||||||
|
await this._reset(eventId);
|
||||||
|
return true;
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async paginateTimeline(backwards = false, limit = 30) {
|
||||||
|
if (this.initialized === false) return false;
|
||||||
|
if (this.isOngoingPagination) return false;
|
||||||
|
|
||||||
|
this.isOngoingPagination = true;
|
||||||
|
|
||||||
|
const timelineToPaginate = backwards
|
||||||
|
? getFirstLinkedTimeline(this.activeTimeline)
|
||||||
|
: getLastLinkedTimeline(this.activeTimeline);
|
||||||
|
|
||||||
|
if (timelineToPaginate.getPaginationToken(backwards ? 'b' : 'f') === null) {
|
||||||
|
this.emit(cons.events.roomTimeline.PAGINATED, backwards, 0);
|
||||||
|
this.isOngoingPagination = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const oldSize = this.timeline.length;
|
||||||
|
try {
|
||||||
|
await this.matrixClient.paginateEventTimeline(timelineToPaginate, { backwards, limit });
|
||||||
|
|
||||||
|
if (this.isEncrypted()) await this.decryptAllEventsOfTimeline(this.activeTimeline);
|
||||||
|
this._populateTimelines();
|
||||||
|
|
||||||
|
const loaded = this.timeline.length - oldSize;
|
||||||
|
this.emit(cons.events.roomTimeline.PAGINATED, backwards, loaded);
|
||||||
|
this.isOngoingPagination = false;
|
||||||
|
return true;
|
||||||
|
} catch {
|
||||||
|
this.emit(cons.events.roomTimeline.PAGINATED, backwards, 0);
|
||||||
|
this.isOngoingPagination = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
decryptAllEventsOfTimeline(eventTimeline) {
|
||||||
|
const decryptionPromises = eventTimeline
|
||||||
|
.getEvents()
|
||||||
|
.filter((event) => event.isEncrypted() && !event.clearEvent)
|
||||||
|
.reverse()
|
||||||
|
.map((event) => event.attemptDecryption(this.matrixClient.crypto, { isRetry: true }));
|
||||||
|
|
||||||
|
return Promise.allSettled(decryptionPromises);
|
||||||
|
}
|
||||||
|
|
||||||
|
markAllAsRead() {
|
||||||
|
const readEventId = this.getReadUpToEventId();
|
||||||
|
this.notifications.deleteNoti(this.roomId);
|
||||||
|
if (this.timeline.length === 0) return;
|
||||||
|
const latestEvent = this.timeline[this.timeline.length - 1];
|
||||||
|
if (readEventId === latestEvent.getId()) return;
|
||||||
|
this.matrixClient.sendReadReceipt(latestEvent);
|
||||||
|
this.emit(cons.events.roomTimeline.MARKED_AS_READ, latestEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
hasEventInTimeline(eventId, timeline = this.activeTimeline) {
|
||||||
|
const timelineSet = this.getUnfilteredTimelineSet();
|
||||||
|
const eventTimeline = timelineSet.getTimelineForEvent(eventId);
|
||||||
|
if (!eventTimeline) return false;
|
||||||
|
return isTimelineLinked(eventTimeline, timeline);
|
||||||
|
}
|
||||||
|
|
||||||
|
getUnfilteredTimelineSet() {
|
||||||
|
return this.room.getUnfilteredTimelineSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
getLiveReaders() {
|
||||||
|
const lastEvent = this.timeline[this.timeline.length - 1];
|
||||||
|
const liveEvents = this.liveTimeline.getEvents();
|
||||||
|
const lastLiveEvent = liveEvents[liveEvents.length - 1];
|
||||||
|
|
||||||
|
let readers = [];
|
||||||
|
if (lastEvent) readers = this.room.getUsersReadUpTo(lastEvent);
|
||||||
|
if (lastLiveEvent !== lastEvent) {
|
||||||
|
readers.splice(readers.length, 0, ...this.room.getUsersReadUpTo(lastLiveEvent));
|
||||||
|
}
|
||||||
|
return [...new Set(readers)];
|
||||||
|
}
|
||||||
|
|
||||||
|
getEventReaders(eventId) {
|
||||||
|
const readers = [];
|
||||||
|
let eventIndex = this.getEventIndex(eventId);
|
||||||
|
if (eventIndex < 0) return this.getLiveReaders();
|
||||||
|
for (; eventIndex < this.timeline.length; eventIndex += 1) {
|
||||||
|
readers.splice(readers.length, 0, ...this.room.getUsersReadUpTo(this.timeline[eventIndex]));
|
||||||
|
}
|
||||||
|
return [...new Set(readers)];
|
||||||
|
}
|
||||||
|
|
||||||
|
getUnreadEventIndex(readUpToEventId) {
|
||||||
|
if (!this.hasEventInTimeline(readUpToEventId)) return -1;
|
||||||
|
|
||||||
|
const readUpToEvent = this.findEventByIdInTimelineSet(readUpToEventId);
|
||||||
|
if (!readUpToEvent) return -1;
|
||||||
|
const rTs = readUpToEvent.getTs();
|
||||||
|
|
||||||
|
const tLength = this.timeline.length;
|
||||||
|
|
||||||
|
for (let i = 0; i < tLength; i += 1) {
|
||||||
|
const mEvent = this.timeline[i];
|
||||||
|
if (mEvent.getTs() > rTs) return i;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
getReadUpToEventId() {
|
||||||
|
return this.room.getEventReadUpTo(this.matrixClient.getUserId());
|
||||||
|
}
|
||||||
|
|
||||||
|
getEventIndex(eventId) {
|
||||||
|
return this.timeline.findIndex((mEvent) => mEvent.getId() === eventId);
|
||||||
|
}
|
||||||
|
|
||||||
|
findEventByIdInTimelineSet(eventId, eventTimelineSet = this.getUnfilteredTimelineSet()) {
|
||||||
|
return eventTimelineSet.findEventById(eventId);
|
||||||
|
}
|
||||||
|
|
||||||
|
findEventById(eventId) {
|
||||||
|
return this.timeline[this.getEventIndex(eventId)] ?? null;
|
||||||
|
}
|
||||||
|
|
||||||
|
deleteFromTimeline(eventId) {
|
||||||
|
const i = this.getEventIndex(eventId);
|
||||||
|
if (i === -1) return undefined;
|
||||||
|
return this.timeline.splice(i, 1)[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
_listenEvents() {
|
||||||
|
this._listenRoomTimeline = (event, room, toStartOfTimeline, removed, data) => {
|
||||||
if (room.roomId !== this.roomId) return;
|
if (room.roomId !== this.roomId) return;
|
||||||
|
if (this.isOngoingPagination) return;
|
||||||
|
|
||||||
|
// User is currently viewing the old events probably
|
||||||
|
// no need to add new event and emit changes.
|
||||||
|
// only add reactions and edited messages
|
||||||
|
if (this.isServingLiveTimeline() === false) {
|
||||||
|
if (!isReaction(event) && !isEdited(event)) return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We only process live events here
|
||||||
|
if (!data.liveEvent) return;
|
||||||
|
|
||||||
if (event.isEncrypted()) {
|
if (event.isEncrypted()) {
|
||||||
|
// We will add this event after it is being decrypted.
|
||||||
this.ongoingDecryptionCount += 1;
|
this.ongoingDecryptionCount += 1;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.timeline = this.room.timeline;
|
// FIXME: An unencrypted plain event can come
|
||||||
if (this.isEdited(event)) {
|
// while previous event is still decrypting
|
||||||
this.addToMap(this.editedTimeline, event);
|
// and has not been added to timeline
|
||||||
}
|
// causing unordered timeline view.
|
||||||
if (this.isReaction(event)) {
|
|
||||||
this.addToMap(this.reactionTimeline, event);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.ongoingDecryptionCount !== 0) return;
|
this.addToTimeline(event);
|
||||||
if (this.isOngoingPagination) return;
|
this.emit(cons.events.roomTimeline.EVENT, event);
|
||||||
this.emit(cons.events.roomTimeline.EVENT);
|
|
||||||
};
|
|
||||||
|
|
||||||
this._listenRedaction = (event, room) => {
|
|
||||||
if (room.roomId !== this.roomId) return;
|
|
||||||
this.emit(cons.events.roomTimeline.EVENT);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
this._listenDecryptEvent = (event) => {
|
this._listenDecryptEvent = (event) => {
|
||||||
if (event.getRoomId() !== this.roomId) return;
|
if (event.getRoomId() !== this.roomId) return;
|
||||||
|
if (this.isOngoingPagination) return;
|
||||||
|
|
||||||
if (this.ongoingDecryptionCount > 0) this.ongoingDecryptionCount -= 1;
|
// Not a live event.
|
||||||
this.timeline = this.room.timeline;
|
// so we don't need to process it here
|
||||||
|
if (this.ongoingDecryptionCount === 0) return;
|
||||||
|
|
||||||
if (this.ongoingDecryptionCount !== 0) return;
|
if (this.ongoingDecryptionCount > 0) {
|
||||||
this.emit(cons.events.roomTimeline.EVENT);
|
this.ongoingDecryptionCount -= 1;
|
||||||
|
}
|
||||||
|
this.addToTimeline(event);
|
||||||
|
this.emit(cons.events.roomTimeline.EVENT, event);
|
||||||
|
};
|
||||||
|
|
||||||
|
this._listenRedaction = (mEvent, room) => {
|
||||||
|
if (room.roomId !== this.roomId) return;
|
||||||
|
const rEvent = this.deleteFromTimeline(mEvent.event.redacts);
|
||||||
|
this.editedTimeline.delete(mEvent.event.redacts);
|
||||||
|
this.reactionTimeline.delete(mEvent.event.redacts);
|
||||||
|
this.emit(cons.events.roomTimeline.EVENT_REDACTED, rEvent, mEvent);
|
||||||
};
|
};
|
||||||
|
|
||||||
this._listenTypingEvent = (event, member) => {
|
this._listenTypingEvent = (event, member) => {
|
||||||
@@ -60,15 +367,18 @@ class RoomTimeline extends EventEmitter {
|
|||||||
this.emit(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, new Set([...this.typingMembers]));
|
this.emit(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, new Set([...this.typingMembers]));
|
||||||
};
|
};
|
||||||
this._listenReciptEvent = (event, room) => {
|
this._listenReciptEvent = (event, room) => {
|
||||||
|
// we only process receipt for latest message here.
|
||||||
if (room.roomId !== this.roomId) return;
|
if (room.roomId !== this.roomId) return;
|
||||||
const receiptContent = event.getContent();
|
const receiptContent = event.getContent();
|
||||||
if (this.timeline.length === 0) return;
|
|
||||||
const tmlLastEvent = this.timeline[this.timeline.length - 1];
|
const mEvents = this.liveTimeline.getEvents();
|
||||||
const lastEventId = tmlLastEvent.getId();
|
const lastMEvent = mEvents[mEvents.length - 1];
|
||||||
|
const lastEventId = lastMEvent.getId();
|
||||||
const lastEventRecipt = receiptContent[lastEventId];
|
const lastEventRecipt = receiptContent[lastEventId];
|
||||||
|
|
||||||
if (typeof lastEventRecipt === 'undefined') return;
|
if (typeof lastEventRecipt === 'undefined') return;
|
||||||
if (lastEventRecipt['m.read']) {
|
if (lastEventRecipt['m.read']) {
|
||||||
this.emit(cons.events.roomTimeline.READ_RECEIPT);
|
this.emit(cons.events.roomTimeline.LIVE_RECEIPT);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -77,87 +387,10 @@ class RoomTimeline extends EventEmitter {
|
|||||||
this.matrixClient.on('Event.decrypted', this._listenDecryptEvent);
|
this.matrixClient.on('Event.decrypted', this._listenDecryptEvent);
|
||||||
this.matrixClient.on('RoomMember.typing', this._listenTypingEvent);
|
this.matrixClient.on('RoomMember.typing', this._listenTypingEvent);
|
||||||
this.matrixClient.on('Room.receipt', this._listenReciptEvent);
|
this.matrixClient.on('Room.receipt', this._listenReciptEvent);
|
||||||
|
|
||||||
// TODO: remove below line when release
|
|
||||||
window.selectedRoom = this;
|
|
||||||
|
|
||||||
if (this.isEncryptedRoom()) this.room.decryptAllEvents();
|
|
||||||
}
|
|
||||||
|
|
||||||
isEncryptedRoom() {
|
|
||||||
return this.matrixClient.isRoomEncrypted(this.roomId);
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line class-methods-use-this
|
|
||||||
isEdited(mEvent) {
|
|
||||||
return mEvent.getRelation()?.rel_type === 'm.replace';
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line class-methods-use-this
|
|
||||||
getRelateToId(mEvent) {
|
|
||||||
const relation = mEvent.getRelation();
|
|
||||||
return relation && relation.event_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
addToMap(myMap, mEvent) {
|
|
||||||
const relateToId = this.getRelateToId(mEvent);
|
|
||||||
if (relateToId === null) return null;
|
|
||||||
|
|
||||||
if (typeof myMap.get(relateToId) === 'undefined') myMap.set(relateToId, []);
|
|
||||||
myMap.get(relateToId).push(mEvent);
|
|
||||||
return mEvent;
|
|
||||||
}
|
|
||||||
|
|
||||||
getEditedTimeline() {
|
|
||||||
const mReplace = new Map();
|
|
||||||
this.timeline.forEach((mEvent) => {
|
|
||||||
if (this.isEdited(mEvent)) {
|
|
||||||
this.addToMap(mReplace, mEvent);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return mReplace;
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line class-methods-use-this
|
|
||||||
isReaction(mEvent) {
|
|
||||||
return mEvent.getType() === 'm.reaction';
|
|
||||||
}
|
|
||||||
|
|
||||||
getReactionTimeline() {
|
|
||||||
const mReaction = new Map();
|
|
||||||
this.timeline.forEach((mEvent) => {
|
|
||||||
if (this.isReaction(mEvent)) {
|
|
||||||
this.addToMap(mReaction, mEvent);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return mReaction;
|
|
||||||
}
|
|
||||||
|
|
||||||
paginateBack() {
|
|
||||||
if (this.isOngoingPagination) return;
|
|
||||||
this.isOngoingPagination = true;
|
|
||||||
|
|
||||||
const MSG_LIMIT = 30;
|
|
||||||
this.matrixClient.scrollback(this.room, MSG_LIMIT).then(async (room) => {
|
|
||||||
if (room.oldState.paginationToken === null) {
|
|
||||||
// We have reached start of the timeline
|
|
||||||
this.isOngoingPagination = false;
|
|
||||||
if (this.isEncryptedRoom()) await this.room.decryptAllEvents();
|
|
||||||
this.emit(cons.events.roomTimeline.PAGINATED, false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.editedTimeline = this.getEditedTimeline();
|
|
||||||
this.reactionTimeline = this.getReactionTimeline();
|
|
||||||
|
|
||||||
this.isOngoingPagination = false;
|
|
||||||
if (this.isEncryptedRoom()) await this.room.decryptAllEvents();
|
|
||||||
this.emit(cons.events.roomTimeline.PAGINATED, true);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
removeInternalListeners() {
|
removeInternalListeners() {
|
||||||
|
if (!this.initialized) return;
|
||||||
this.matrixClient.removeListener('Room.timeline', this._listenRoomTimeline);
|
this.matrixClient.removeListener('Room.timeline', this._listenRoomTimeline);
|
||||||
this.matrixClient.removeListener('Room.redaction', this._listenRedaction);
|
this.matrixClient.removeListener('Room.redaction', this._listenRedaction);
|
||||||
this.matrixClient.removeListener('Event.decrypted', this._listenDecryptEvent);
|
this.matrixClient.removeListener('Event.decrypted', this._listenDecryptEvent);
|
||||||
|
|||||||
@@ -95,13 +95,13 @@ function getFormattedBody(markdown) {
|
|||||||
function getReplyFormattedBody(roomId, reply) {
|
function getReplyFormattedBody(roomId, reply) {
|
||||||
const replyToLink = `<a href="https://matrix.to/#/${roomId}/${reply.eventId}">In reply to</a>`;
|
const replyToLink = `<a href="https://matrix.to/#/${roomId}/${reply.eventId}">In reply to</a>`;
|
||||||
const userLink = `<a href="https://matrix.to/#/${reply.userId}">${reply.userId}</a>`;
|
const userLink = `<a href="https://matrix.to/#/${reply.userId}">${reply.userId}</a>`;
|
||||||
const formattedReply = getFormattedBody(reply.content.replaceAll('\n', '\n> '));
|
const formattedReply = getFormattedBody(reply.body.replaceAll('\n', '\n> '));
|
||||||
return `<mx-reply><blockquote>${replyToLink}${userLink}<br />${formattedReply}</blockquote></mx-reply>`;
|
return `<mx-reply><blockquote>${replyToLink}${userLink}<br />${formattedReply}</blockquote></mx-reply>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
function bindReplyToContent(roomId, reply, content) {
|
function bindReplyToContent(roomId, reply, content) {
|
||||||
const newContent = { ...content };
|
const newContent = { ...content };
|
||||||
newContent.body = `> <${reply.userId}> ${reply.content.replaceAll('\n', '\n> ')}`;
|
newContent.body = `> <${reply.userId}> ${reply.body.replaceAll('\n', '\n> ')}`;
|
||||||
newContent.body += `\n\n${content.body}`;
|
newContent.body += `\n\n${content.body}`;
|
||||||
newContent.format = 'org.matrix.custom.html';
|
newContent.format = 'org.matrix.custom.html';
|
||||||
newContent['m.relates_to'] = content['m.relates_to'] || {};
|
newContent['m.relates_to'] = content['m.relates_to'] || {};
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
const cons = {
|
const cons = {
|
||||||
version: '1.5.0',
|
version: '1.6.0',
|
||||||
secretKey: {
|
secretKey: {
|
||||||
ACCESS_TOKEN: 'cinny_access_token',
|
ACCESS_TOKEN: 'cinny_access_token',
|
||||||
DEVICE_ID: 'cinny_device_id',
|
DEVICE_ID: 'cinny_device_id',
|
||||||
@@ -12,12 +12,19 @@ const cons = {
|
|||||||
HOME: 'home',
|
HOME: 'home',
|
||||||
DIRECTS: 'dm',
|
DIRECTS: 'dm',
|
||||||
},
|
},
|
||||||
|
supportEventTypes: ['m.room.create', 'm.room.message', 'm.room.encrypted', 'm.room.member', 'm.sticker'],
|
||||||
notifs: {
|
notifs: {
|
||||||
DEFAULT: 'default',
|
DEFAULT: 'default',
|
||||||
ALL_MESSAGES: 'all_messages',
|
ALL_MESSAGES: 'all_messages',
|
||||||
MENTIONS_AND_KEYWORDS: 'mentions_and_keywords',
|
MENTIONS_AND_KEYWORDS: 'mentions_and_keywords',
|
||||||
MUTE: 'mute',
|
MUTE: 'mute',
|
||||||
},
|
},
|
||||||
|
status: {
|
||||||
|
PRE_FLIGHT: 'pre-flight',
|
||||||
|
IN_FLIGHT: 'in-flight',
|
||||||
|
SUCCESS: 'success',
|
||||||
|
ERROR: 'error',
|
||||||
|
},
|
||||||
actions: {
|
actions: {
|
||||||
navigation: {
|
navigation: {
|
||||||
SELECT_TAB: 'SELECT_TAB',
|
SELECT_TAB: 'SELECT_TAB',
|
||||||
@@ -33,6 +40,8 @@ const cons = {
|
|||||||
OPEN_EMOJIBOARD: 'OPEN_EMOJIBOARD',
|
OPEN_EMOJIBOARD: 'OPEN_EMOJIBOARD',
|
||||||
OPEN_READRECEIPTS: 'OPEN_READRECEIPTS',
|
OPEN_READRECEIPTS: 'OPEN_READRECEIPTS',
|
||||||
OPEN_ROOMOPTIONS: 'OPEN_ROOMOPTIONS',
|
OPEN_ROOMOPTIONS: 'OPEN_ROOMOPTIONS',
|
||||||
|
CLICK_REPLY_TO: 'CLICK_REPLY_TO',
|
||||||
|
OPEN_SEARCH: 'OPEN_SEARCH',
|
||||||
},
|
},
|
||||||
room: {
|
room: {
|
||||||
JOIN: 'JOIN',
|
JOIN: 'JOIN',
|
||||||
@@ -46,6 +55,9 @@ const cons = {
|
|||||||
},
|
},
|
||||||
settings: {
|
settings: {
|
||||||
TOGGLE_MARKDOWN: 'TOGGLE_MARKDOWN',
|
TOGGLE_MARKDOWN: 'TOGGLE_MARKDOWN',
|
||||||
|
TOGGLE_PEOPLE_DRAWER: 'TOGGLE_PEOPLE_DRAWER',
|
||||||
|
TOGGLE_MEMBERSHIP_EVENT: 'TOGGLE_MEMBERSHIP_EVENT',
|
||||||
|
TOGGLE_NICKAVATAR_EVENT: 'TOGGLE_NICKAVATAR_EVENT',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
events: {
|
events: {
|
||||||
@@ -63,6 +75,8 @@ const cons = {
|
|||||||
EMOJIBOARD_OPENED: 'EMOJIBOARD_OPENED',
|
EMOJIBOARD_OPENED: 'EMOJIBOARD_OPENED',
|
||||||
READRECEIPTS_OPENED: 'READRECEIPTS_OPENED',
|
READRECEIPTS_OPENED: 'READRECEIPTS_OPENED',
|
||||||
ROOMOPTIONS_OPENED: 'ROOMOPTIONS_OPENED',
|
ROOMOPTIONS_OPENED: 'ROOMOPTIONS_OPENED',
|
||||||
|
REPLY_TO_CLICKED: 'REPLY_TO_CLICKED',
|
||||||
|
SEARCH_OPENED: 'SEARCH_OPENED',
|
||||||
},
|
},
|
||||||
roomList: {
|
roomList: {
|
||||||
ROOMLIST_UPDATED: 'ROOMLIST_UPDATED',
|
ROOMLIST_UPDATED: 'ROOMLIST_UPDATED',
|
||||||
@@ -77,10 +91,15 @@ const cons = {
|
|||||||
FULL_READ: 'FULL_READ',
|
FULL_READ: 'FULL_READ',
|
||||||
},
|
},
|
||||||
roomTimeline: {
|
roomTimeline: {
|
||||||
|
READY: 'READY',
|
||||||
EVENT: 'EVENT',
|
EVENT: 'EVENT',
|
||||||
PAGINATED: 'PAGINATED',
|
PAGINATED: 'PAGINATED',
|
||||||
TYPING_MEMBERS_UPDATED: 'TYPING_MEMBERS_UPDATED',
|
TYPING_MEMBERS_UPDATED: 'TYPING_MEMBERS_UPDATED',
|
||||||
READ_RECEIPT: 'READ_RECEIPT',
|
LIVE_RECEIPT: 'LIVE_RECEIPT',
|
||||||
|
MARKED_AS_READ: 'MARKED_AS_READ',
|
||||||
|
EVENT_REDACTED: 'EVENT_REDACTED',
|
||||||
|
AT_BOTTOM: 'AT_BOTTOM',
|
||||||
|
SCROLL_TO_LIVE: 'SCROLL_TO_LIVE',
|
||||||
},
|
},
|
||||||
roomsInput: {
|
roomsInput: {
|
||||||
MESSAGE_SENT: 'MESSAGE_SENT',
|
MESSAGE_SENT: 'MESSAGE_SENT',
|
||||||
@@ -91,6 +110,9 @@ const cons = {
|
|||||||
},
|
},
|
||||||
settings: {
|
settings: {
|
||||||
MARKDOWN_TOGGLED: 'MARKDOWN_TOGGLED',
|
MARKDOWN_TOGGLED: 'MARKDOWN_TOGGLED',
|
||||||
|
PEOPLE_DRAWER_TOGGLED: 'PEOPLE_DRAWER_TOGGLED',
|
||||||
|
MEMBERSHIP_EVENTS_TOGGLED: 'MEMBERSHIP_EVENTS_TOGGLED',
|
||||||
|
NICKAVATAR_EVENTS_TOGGLED: 'NICKAVATAR_EVENTS_TOGGLED',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -11,7 +11,9 @@ class Navigation extends EventEmitter {
|
|||||||
this.selectedSpacePath = [cons.tabs.HOME];
|
this.selectedSpacePath = [cons.tabs.HOME];
|
||||||
|
|
||||||
this.selectedRoomId = null;
|
this.selectedRoomId = null;
|
||||||
this.isPeopleDrawerVisible = true;
|
this.recentRooms = [];
|
||||||
|
|
||||||
|
this.isRawModalVisible = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
_setSpacePath(roomId) {
|
_setSpacePath(roomId) {
|
||||||
@@ -27,6 +29,27 @@ class Navigation extends EventEmitter {
|
|||||||
this.selectedSpacePath.push(roomId);
|
this.selectedSpacePath.push(roomId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
removeRecentRoom(roomId) {
|
||||||
|
if (typeof roomId !== 'string') return;
|
||||||
|
const roomIdIndex = this.recentRooms.indexOf(roomId);
|
||||||
|
if (roomIdIndex >= 0) {
|
||||||
|
this.recentRooms.splice(roomIdIndex, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
addRecentRoom(roomId) {
|
||||||
|
if (typeof roomId !== 'string') return;
|
||||||
|
|
||||||
|
this.recentRooms.push(roomId);
|
||||||
|
if (this.recentRooms.length > 10) {
|
||||||
|
this.recentRooms.splice(0, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsRawModalVisible(visible) {
|
||||||
|
this.isRawModalVisible = visible;
|
||||||
|
}
|
||||||
|
|
||||||
navigate(action) {
|
navigate(action) {
|
||||||
const actions = {
|
const actions = {
|
||||||
[cons.actions.navigation.SELECT_TAB]: () => {
|
[cons.actions.navigation.SELECT_TAB]: () => {
|
||||||
@@ -51,11 +74,15 @@ class Navigation extends EventEmitter {
|
|||||||
[cons.actions.navigation.SELECT_ROOM]: () => {
|
[cons.actions.navigation.SELECT_ROOM]: () => {
|
||||||
const prevSelectedRoomId = this.selectedRoomId;
|
const prevSelectedRoomId = this.selectedRoomId;
|
||||||
this.selectedRoomId = action.roomId;
|
this.selectedRoomId = action.roomId;
|
||||||
this.emit(cons.events.navigation.ROOM_SELECTED, this.selectedRoomId, prevSelectedRoomId);
|
this.removeRecentRoom(prevSelectedRoomId);
|
||||||
},
|
this.addRecentRoom(prevSelectedRoomId);
|
||||||
[cons.actions.navigation.TOGGLE_PEOPLE_DRAWER]: () => {
|
this.removeRecentRoom(this.selectedRoomId);
|
||||||
this.isPeopleDrawerVisible = !this.isPeopleDrawerVisible;
|
this.emit(
|
||||||
this.emit(cons.events.navigation.PEOPLE_DRAWER_TOGGLED, this.isPeopleDrawerVisible);
|
cons.events.navigation.ROOM_SELECTED,
|
||||||
|
this.selectedRoomId,
|
||||||
|
prevSelectedRoomId,
|
||||||
|
action.eventId,
|
||||||
|
);
|
||||||
},
|
},
|
||||||
[cons.actions.navigation.OPEN_INVITE_LIST]: () => {
|
[cons.actions.navigation.OPEN_INVITE_LIST]: () => {
|
||||||
this.emit(cons.events.navigation.INVITE_LIST_OPENED);
|
this.emit(cons.events.navigation.INVITE_LIST_OPENED);
|
||||||
@@ -85,7 +112,7 @@ class Navigation extends EventEmitter {
|
|||||||
this.emit(
|
this.emit(
|
||||||
cons.events.navigation.READRECEIPTS_OPENED,
|
cons.events.navigation.READRECEIPTS_OPENED,
|
||||||
action.roomId,
|
action.roomId,
|
||||||
action.eventId,
|
action.userIds,
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
[cons.actions.navigation.OPEN_ROOMOPTIONS]: () => {
|
[cons.actions.navigation.OPEN_ROOMOPTIONS]: () => {
|
||||||
@@ -95,6 +122,20 @@ class Navigation extends EventEmitter {
|
|||||||
action.roomId,
|
action.roomId,
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
[cons.actions.navigation.CLICK_REPLY_TO]: () => {
|
||||||
|
this.emit(
|
||||||
|
cons.events.navigation.REPLY_TO_CLICKED,
|
||||||
|
action.userId,
|
||||||
|
action.eventId,
|
||||||
|
action.body,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
[cons.actions.navigation.OPEN_SEARCH]: () => {
|
||||||
|
this.emit(
|
||||||
|
cons.events.navigation.SEARCH_OPENED,
|
||||||
|
action.term,
|
||||||
|
);
|
||||||
|
},
|
||||||
};
|
};
|
||||||
actions[action.type]?.();
|
actions[action.type]?.();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ class Settings extends EventEmitter {
|
|||||||
this.themeIndex = this.getThemeIndex();
|
this.themeIndex = this.getThemeIndex();
|
||||||
|
|
||||||
this.isMarkdown = this.getIsMarkdown();
|
this.isMarkdown = this.getIsMarkdown();
|
||||||
|
this.isPeopleDrawer = this.getIsPeopleDrawer();
|
||||||
|
this.hideMembershipEvents = this.getHideMembershipEvents();
|
||||||
|
this.hideNickAvatarEvents = this.getHideNickAvatarEvents();
|
||||||
|
|
||||||
this.isTouchScreenDevice = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0);
|
this.isTouchScreenDevice = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0);
|
||||||
}
|
}
|
||||||
@@ -62,6 +65,33 @@ class Settings extends EventEmitter {
|
|||||||
return settings.isMarkdown;
|
return settings.isMarkdown;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getHideMembershipEvents() {
|
||||||
|
if (typeof this.hideMembershipEvents === 'boolean') return this.hideMembershipEvents;
|
||||||
|
|
||||||
|
const settings = getSettings();
|
||||||
|
if (settings === null) return false;
|
||||||
|
if (typeof settings.hideMembershipEvents === 'undefined') return false;
|
||||||
|
return settings.hideMembershipEvents;
|
||||||
|
}
|
||||||
|
|
||||||
|
getHideNickAvatarEvents() {
|
||||||
|
if (typeof this.hideNickAvatarEvents === 'boolean') return this.hideNickAvatarEvents;
|
||||||
|
|
||||||
|
const settings = getSettings();
|
||||||
|
if (settings === null) return false;
|
||||||
|
if (typeof settings.hideNickAvatarEvents === 'undefined') return false;
|
||||||
|
return settings.hideNickAvatarEvents;
|
||||||
|
}
|
||||||
|
|
||||||
|
getIsPeopleDrawer() {
|
||||||
|
if (typeof this.isPeopleDrawer === 'boolean') return this.isPeopleDrawer;
|
||||||
|
|
||||||
|
const settings = getSettings();
|
||||||
|
if (settings === null) return true;
|
||||||
|
if (typeof settings.isPeopleDrawer === 'undefined') return true;
|
||||||
|
return settings.isPeopleDrawer;
|
||||||
|
}
|
||||||
|
|
||||||
setter(action) {
|
setter(action) {
|
||||||
const actions = {
|
const actions = {
|
||||||
[cons.actions.settings.TOGGLE_MARKDOWN]: () => {
|
[cons.actions.settings.TOGGLE_MARKDOWN]: () => {
|
||||||
@@ -69,6 +99,21 @@ class Settings extends EventEmitter {
|
|||||||
setSettings('isMarkdown', this.isMarkdown);
|
setSettings('isMarkdown', this.isMarkdown);
|
||||||
this.emit(cons.events.settings.MARKDOWN_TOGGLED, this.isMarkdown);
|
this.emit(cons.events.settings.MARKDOWN_TOGGLED, this.isMarkdown);
|
||||||
},
|
},
|
||||||
|
[cons.actions.settings.TOGGLE_PEOPLE_DRAWER]: () => {
|
||||||
|
this.isPeopleDrawer = !this.isPeopleDrawer;
|
||||||
|
setSettings('isPeopleDrawer', this.isPeopleDrawer);
|
||||||
|
this.emit(cons.events.settings.PEOPLE_DRAWER_TOGGLED, this.isPeopleDrawer);
|
||||||
|
},
|
||||||
|
[cons.actions.settings.TOGGLE_MEMBERSHIP_EVENT]: () => {
|
||||||
|
this.hideMembershipEvents = !this.hideMembershipEvents;
|
||||||
|
setSettings('hideMembershipEvents', this.hideMembershipEvents);
|
||||||
|
this.emit(cons.events.settings.MEMBERSHIP_EVENTS_TOGGLED, this.hideMembershipEvents);
|
||||||
|
},
|
||||||
|
[cons.actions.settings.TOGGLE_NICKAVATAR_EVENT]: () => {
|
||||||
|
this.hideNickAvatarEvents = !this.hideNickAvatarEvents;
|
||||||
|
setSettings('hideNickAvatarEvents', this.hideNickAvatarEvents);
|
||||||
|
this.emit(cons.events.settings.NICKAVATAR_EVENTS_TOGGLED, this.hideNickAvatarEvents);
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
actions[action.type]?.();
|
actions[action.type]?.();
|
||||||
|
|||||||
@@ -7,6 +7,8 @@
|
|||||||
--bg-surface-transparent: #FFFFFF00;
|
--bg-surface-transparent: #FFFFFF00;
|
||||||
--bg-surface-low: #F6F6F6;
|
--bg-surface-low: #F6F6F6;
|
||||||
--bg-surface-low-transparent: #F6F6F600;
|
--bg-surface-low-transparent: #F6F6F600;
|
||||||
|
--bg-surface-extra-low: #F6F6F6;
|
||||||
|
--bg-surface-extra-low-transparent: #F6F6F600;
|
||||||
--bg-surface-hover: rgba(0, 0, 0, 3%);
|
--bg-surface-hover: rgba(0, 0, 0, 3%);
|
||||||
--bg-surface-active: rgba(0, 0, 0, 5%);
|
--bg-surface-active: rgba(0, 0, 0, 5%);
|
||||||
--bg-surface-border: rgba(0, 0, 0, 6%);
|
--bg-surface-border: rgba(0, 0, 0, 6%);
|
||||||
@@ -33,10 +35,13 @@
|
|||||||
|
|
||||||
--bg-tooltip: #353535;
|
--bg-tooltip: #353535;
|
||||||
--bg-badge: #989898;
|
--bg-badge: #989898;
|
||||||
|
--bg-ping: hsla(137deg, 100%, 68%, 40%);
|
||||||
|
--bg-ping-hover: hsla(137deg, 100%, 68%, 50%);
|
||||||
|
--bg-divider: hsla(0, 0%, 0%, .1);
|
||||||
|
|
||||||
/* text color | --tc-[background type]-[priority]: value */
|
/* text color | --tc-[background type]-[priority]: value */
|
||||||
--tc-surface-high: #000000;
|
--tc-surface-high: #000000;
|
||||||
--tc-surface-normal: rgba(0, 0, 0, 68%);
|
--tc-surface-normal: rgba(0, 0, 0, 78%);
|
||||||
--tc-surface-normal-low: rgba(0, 0, 0, 60%);
|
--tc-surface-normal-low: rgba(0, 0, 0, 60%);
|
||||||
--tc-surface-low: rgba(0, 0, 0, 38%);
|
--tc-surface-low: rgba(0, 0, 0, 38%);
|
||||||
|
|
||||||
@@ -154,6 +159,9 @@
|
|||||||
// large size nav drawer & people drawer width => 326px, 312px
|
// large size nav drawer & people drawer width => 326px, 312px
|
||||||
// medium size nav drawer & people drawer width => 280, 268
|
// medium size nav drawer & people drawer width => 280, 268
|
||||||
|
|
||||||
|
/* transition curves */
|
||||||
|
--fluid-push: cubic-bezier(0, 0.8, 0.67, 0.97);
|
||||||
|
|
||||||
--font-family: 'Roboto', 'Supreme', sans-serif;
|
--font-family: 'Roboto', 'Supreme', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -163,6 +171,8 @@
|
|||||||
--bg-surface-transparent: hsla(0, 0%, 95%, 0);
|
--bg-surface-transparent: hsla(0, 0%, 95%, 0);
|
||||||
--bg-surface-low: hsl(0, 0%, 91%);
|
--bg-surface-low: hsl(0, 0%, 91%);
|
||||||
--bg-surface-low-transparent: hsla(0, 0%, 91%, 0);
|
--bg-surface-low-transparent: hsla(0, 0%, 91%, 0);
|
||||||
|
--bg-surface-extra-low: hsl(0, 0%, 91%);
|
||||||
|
--bg-surface-extra-low-transparent: hsla(0, 0%, 91%, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark-theme,
|
.dark-theme,
|
||||||
@@ -172,6 +182,8 @@
|
|||||||
--bg-surface-transparent: hsla(208, 8%, 20%, 0);
|
--bg-surface-transparent: hsla(208, 8%, 20%, 0);
|
||||||
--bg-surface-low: hsl(208, 8%, 16%);
|
--bg-surface-low: hsl(208, 8%, 16%);
|
||||||
--bg-surface-low-transparent: hsla(208, 8%, 16%, 0);
|
--bg-surface-low-transparent: hsla(208, 8%, 16%, 0);
|
||||||
|
--bg-surface-extra-low: hsl(208, 8%, 14%);
|
||||||
|
--bg-surface-extra-low-transparent: hsla(208, 8%, 14%, 0);
|
||||||
--bg-surface-hover: rgba(255, 255, 255, 3%);
|
--bg-surface-hover: rgba(255, 255, 255, 3%);
|
||||||
--bg-surface-active: rgba(255, 255, 255, 5%);
|
--bg-surface-active: rgba(255, 255, 255, 5%);
|
||||||
--bg-surface-border: rgba(0, 0, 0, 20%);
|
--bg-surface-border: rgba(0, 0, 0, 20%);
|
||||||
@@ -183,12 +195,16 @@
|
|||||||
|
|
||||||
--bg-tooltip: #000;
|
--bg-tooltip: #000;
|
||||||
--bg-badge: hsl(0, 0%, 75%);
|
--bg-badge: hsl(0, 0%, 75%);
|
||||||
|
--bg-ping: hsla(137deg, 100%, 38%, 40%);
|
||||||
|
--bg-ping-hover: hsla(137deg, 100%, 38%, 50%);
|
||||||
|
--bg-divider: hsla(0, 0%, 100%, .1);
|
||||||
|
|
||||||
|
|
||||||
/* text color | --tc-[background type]-[priority]: value */
|
/* text color | --tc-[background type]-[priority]: value */
|
||||||
--tc-surface-high: rgba(255, 255, 255, 98%);
|
--tc-surface-high: rgba(255, 255, 255, 98%);
|
||||||
--tc-surface-normal: rgba(255, 255, 255, 84%);
|
--tc-surface-normal: rgba(255, 255, 255, 94%);
|
||||||
--tc-surface-normal-low: rgba(255, 255, 255, 60%);
|
--tc-surface-normal-low: rgba(255, 255, 255, 60%);
|
||||||
--tc-surface-low: rgba(255, 255, 255, 48%);
|
--tc-surface-low: rgba(255, 255, 255, 58%);
|
||||||
|
|
||||||
--tc-primary-high: #ffffff;
|
--tc-primary-high: #ffffff;
|
||||||
--tc-primary-normal: rgba(255, 255, 255, 0.68);
|
--tc-primary-normal: rgba(255, 255, 255, 0.68);
|
||||||
@@ -199,7 +215,7 @@
|
|||||||
--tc-badge: black;
|
--tc-badge: black;
|
||||||
|
|
||||||
/* system icons | --ic-[background type]-[priority]: value */
|
/* system icons | --ic-[background type]-[priority]: value */
|
||||||
--ic-surface-normal: rgba(255, 255, 255, 68%);
|
--ic-surface-normal: rgba(255, 255, 255, 84%);
|
||||||
--ic-primary-normal: #ffffff;
|
--ic-primary-normal: #ffffff;
|
||||||
|
|
||||||
/* shadow and overlay */
|
/* shadow and overlay */
|
||||||
@@ -221,20 +237,22 @@
|
|||||||
--bg-surface: hsl(64, 6%, 14%);
|
--bg-surface: hsl(64, 6%, 14%);
|
||||||
--bg-surface-transparent: hsla(64, 6%, 14%, 0);
|
--bg-surface-transparent: hsla(64, 6%, 14%, 0);
|
||||||
--bg-surface-low: hsl(64, 6%, 10%);
|
--bg-surface-low: hsl(64, 6%, 10%);
|
||||||
--bg-surface-low-transparent: hsla(64, 6%, 14%, 0);
|
--bg-surface-low-transparent: hsla(64, 6%, 10%, 0);
|
||||||
|
--bg-surface-extra-low: hsl(64, 6%, 8%);
|
||||||
|
--bg-surface-extra-low-transparent: hsla(64, 6%, 8%, 0);
|
||||||
|
|
||||||
--bg-badge: #c4c1ab;
|
--bg-badge: #c4c1ab;
|
||||||
|
|
||||||
|
|
||||||
/* text color | --tc-[background type]-[priority]: value */
|
/* text color | --tc-[background type]-[priority]: value */
|
||||||
--tc-surface-high: rgb(255, 251, 222, 94%);
|
--tc-surface-high: rgb(255, 251, 222, 94%);
|
||||||
--tc-surface-normal: rgba(255, 251, 222, 74%);
|
--tc-surface-normal: rgba(255, 251, 222, 94%);
|
||||||
--tc-surface-normal-low: rgba(255, 251, 222, 60%);
|
--tc-surface-normal-low: rgba(255, 251, 222, 60%);
|
||||||
--tc-surface-low: rgba(255, 251, 222, 38%);
|
--tc-surface-low: rgba(255, 251, 222, 58%);
|
||||||
|
|
||||||
|
|
||||||
/* system icons | --ic-[background type]-[priority]: value */
|
/* system icons | --ic-[background type]-[priority]: value */
|
||||||
--ic-surface-normal: rgb(255 251 222 / 68%);
|
--ic-surface-normal: rgb(255, 251, 222, 84%);
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
@@ -290,11 +308,43 @@ button {
|
|||||||
overflow: visible;
|
overflow: visible;
|
||||||
-webkit-appearance: button;
|
-webkit-appearance: button;
|
||||||
}
|
}
|
||||||
textarea, input[type="text"] {
|
textarea,
|
||||||
|
input,
|
||||||
|
input[type],
|
||||||
|
input[type=text],
|
||||||
|
input[type=username],
|
||||||
|
input[type=password],
|
||||||
|
input[type=email],
|
||||||
|
input[type=checkbox] {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
input[type=checkbox] {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border-radius: 4px;
|
||||||
|
box-shadow: var(--bs-primary-border);
|
||||||
|
background-color: var(--bg-surface);
|
||||||
|
cursor: pointer;
|
||||||
|
@extend .flex--center;
|
||||||
|
|
||||||
|
&:checked {
|
||||||
|
background-color: var(--bg-primary);
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
width: 12px;
|
||||||
|
height: 6px;
|
||||||
|
border: 6px solid white;
|
||||||
|
border-width: 0 0 3px 3px;
|
||||||
|
transform: rotateZ(-45deg) translate(1px, -1px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
word-spacing: inherit;
|
word-spacing: inherit;
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ class AsyncSearch extends EventEmitter {
|
|||||||
this._softReset();
|
this._softReset();
|
||||||
|
|
||||||
this.term = (this.isCaseSensitive) ? term : term.toLocaleLowerCase();
|
this.term = (this.isCaseSensitive) ? term : term.toLocaleLowerCase();
|
||||||
if (this.ignoreWhitespace) this.term = this.term.replace(' ', '');
|
if (this.ignoreWhitespace) this.term = this.term.replaceAll(' ', '');
|
||||||
if (this.term === '') {
|
if (this.term === '') {
|
||||||
this._sendFindings();
|
this._sendFindings();
|
||||||
return;
|
return;
|
||||||
@@ -114,7 +114,7 @@ class AsyncSearch extends EventEmitter {
|
|||||||
_compare(item) {
|
_compare(item) {
|
||||||
if (typeof item !== 'string') return false;
|
if (typeof item !== 'string') return false;
|
||||||
let myItem = (this.isCaseSensitive) ? item : item.toLocaleLowerCase();
|
let myItem = (this.isCaseSensitive) ? item : item.toLocaleLowerCase();
|
||||||
if (this.ignoreWhitespace) myItem = myItem.replace(' ', '');
|
if (this.ignoreWhitespace) myItem = myItem.replaceAll(' ', '');
|
||||||
|
|
||||||
if (this.isContain) return myItem.indexOf(this.term) !== -1;
|
if (this.isContain) return myItem.indexOf(this.term) !== -1;
|
||||||
return myItem.startsWith(this.term);
|
return myItem.startsWith(this.term);
|
||||||
|
|||||||
@@ -13,11 +13,11 @@ export function diffMinutes(dt2, dt1) {
|
|||||||
return Math.abs(Math.round(diff));
|
return Math.abs(Math.round(diff));
|
||||||
}
|
}
|
||||||
|
|
||||||
export function isNotInSameDay(dt2, dt1) {
|
export function isInSameDay(dt2, dt1) {
|
||||||
return (
|
return (
|
||||||
dt2.getDay() !== dt1.getDay()
|
dt2.getFullYear() === dt1.getFullYear()
|
||||||
|| dt2.getMonth() !== dt1.getMonth()
|
&& dt2.getMonth() === dt1.getMonth()
|
||||||
|| dt2.getYear() !== dt1.getYear()
|
&& dt2.getDate() === dt1.getDate()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -84,3 +84,12 @@ export function getUrlPrams(paramName) {
|
|||||||
const urlParams = new URLSearchParams(queryString);
|
const urlParams = new URLSearchParams(queryString);
|
||||||
return urlParams.get(paramName);
|
return urlParams.get(paramName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getScrollInfo(target) {
|
||||||
|
const scroll = {};
|
||||||
|
scroll.top = Math.round(target.scrollTop);
|
||||||
|
scroll.height = Math.round(target.scrollHeight);
|
||||||
|
scroll.viewHeight = Math.round(target.offsetHeight);
|
||||||
|
scroll.isScrollable = scroll.height > scroll.viewHeight;
|
||||||
|
return scroll;
|
||||||
|
}
|
||||||
|
|||||||
@@ -108,6 +108,19 @@ function decodeBase64(base64) {
|
|||||||
return uint8Array;
|
return uint8Array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encode a typed array of uint8 as base64.
|
||||||
|
* @param {Uint8Array} uint8Array The data to encode.
|
||||||
|
* @return {string} The base64.
|
||||||
|
*/
|
||||||
|
function encodeBase64(uint8Array) {
|
||||||
|
// Misinterpt the Uint8Array as Latin-1.
|
||||||
|
// window.btoa expects a unicode string with codepoints in the range 0-255.
|
||||||
|
const latin1String = String.fromCharCode.apply(null, uint8Array);
|
||||||
|
// Use the builtin base64 encoder.
|
||||||
|
return window.btoa(latin1String);
|
||||||
|
}
|
||||||
|
|
||||||
const HEADER_LINE = '-----BEGIN MEGOLM SESSION DATA-----';
|
const HEADER_LINE = '-----BEGIN MEGOLM SESSION DATA-----';
|
||||||
const TRAILER_LINE = '-----END MEGOLM SESSION DATA-----';
|
const TRAILER_LINE = '-----END MEGOLM SESSION DATA-----';
|
||||||
|
|
||||||
@@ -164,7 +177,35 @@ function unpackMegolmKeyFile(data) {
|
|||||||
return decodeBase64(fileStr.slice(dataStart, dataEnd));
|
return decodeBase64(fileStr.slice(dataStart, dataEnd));
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function decryptMegolmKeyFile(data, password) {
|
|
||||||
|
/**
|
||||||
|
* ascii-armour a megolm key file
|
||||||
|
*
|
||||||
|
* base64s the content, and adds header and trailer lines
|
||||||
|
*
|
||||||
|
* @param {Uint8Array} data raw data
|
||||||
|
* @return {ArrayBuffer} formatted file
|
||||||
|
*/
|
||||||
|
function packMegolmKeyFile(data) {
|
||||||
|
// we split into lines before base64ing, because encodeBase64 doesn't deal
|
||||||
|
// terribly well with large arrays.
|
||||||
|
const LINE_LENGTH = ((72 * 4) / 3);
|
||||||
|
const nLines = Math.ceil(data.length / LINE_LENGTH);
|
||||||
|
const lines = new Array(nLines + 3);
|
||||||
|
lines[0] = HEADER_LINE;
|
||||||
|
let o = 0;
|
||||||
|
let i;
|
||||||
|
for (i = 1; i <= nLines; i += 1) {
|
||||||
|
lines[i] = encodeBase64(data.subarray(o, o+LINE_LENGTH));
|
||||||
|
o += LINE_LENGTH;
|
||||||
|
}
|
||||||
|
lines[i] = TRAILER_LINE;
|
||||||
|
i += 1;
|
||||||
|
lines[i] = '';
|
||||||
|
return (new TextEncoder().encode(lines.join('\n'))).buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function decryptMegolmKeyFile(data, password) {
|
||||||
const body = unpackMegolmKeyFile(data);
|
const body = unpackMegolmKeyFile(data);
|
||||||
|
|
||||||
// check we have a version byte
|
// check we have a version byte
|
||||||
@@ -223,3 +264,77 @@ export default async function decryptMegolmKeyFile(data, password) {
|
|||||||
|
|
||||||
return new TextDecoder().decode(new Uint8Array(plaintext));
|
return new TextDecoder().decode(new Uint8Array(plaintext));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encrypt a megolm key file
|
||||||
|
*
|
||||||
|
* @param {String} data
|
||||||
|
* @param {String} password
|
||||||
|
* @param {Object=} options
|
||||||
|
* @param {Number=} options.kdf_rounds Number of iterations to perform of the
|
||||||
|
* key-derivation function.
|
||||||
|
* @return {Promise<ArrayBuffer>} promise for encrypted output
|
||||||
|
*/
|
||||||
|
export async function encryptMegolmKeyFile(data, password, options) {
|
||||||
|
options = options || {};
|
||||||
|
const kdfRounds = options.kdf_rounds || 500000;
|
||||||
|
|
||||||
|
const salt = new Uint8Array(16);
|
||||||
|
window.crypto.getRandomValues(salt);
|
||||||
|
|
||||||
|
const iv = new Uint8Array(16);
|
||||||
|
window.crypto.getRandomValues(iv);
|
||||||
|
|
||||||
|
// clear bit 63 of the IV to stop us hitting the 64-bit counter boundary
|
||||||
|
// (which would mean we wouldn't be able to decrypt on Android). The loss
|
||||||
|
// of a single bit of iv is a price we have to pay.
|
||||||
|
iv[8] &= 0x7f;
|
||||||
|
|
||||||
|
const [aesKey, hmacKey] = await deriveKeys(salt, kdfRounds, password);
|
||||||
|
const encodedData = new TextEncoder().encode(data);
|
||||||
|
|
||||||
|
let ciphertext;
|
||||||
|
try {
|
||||||
|
ciphertext = await subtleCrypto.encrypt(
|
||||||
|
{
|
||||||
|
name: 'AES-CTR',
|
||||||
|
counter: iv,
|
||||||
|
length: 64,
|
||||||
|
},
|
||||||
|
aesKey,
|
||||||
|
encodedData,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
throw friendlyError('subtleCrypto.encrypt failed: ' + e, cryptoFailMsg());
|
||||||
|
}
|
||||||
|
|
||||||
|
const cipherArray = new Uint8Array(ciphertext);
|
||||||
|
const bodyLength = (1+salt.length+iv.length+4+cipherArray.length+32);
|
||||||
|
const resultBuffer = new Uint8Array(bodyLength);
|
||||||
|
let idx = 0;
|
||||||
|
resultBuffer[idx++] = 1; // version
|
||||||
|
resultBuffer.set(salt, idx); idx += salt.length;
|
||||||
|
resultBuffer.set(iv, idx); idx += iv.length;
|
||||||
|
resultBuffer[idx++] = kdfRounds >> 24;
|
||||||
|
resultBuffer[idx++] = (kdfRounds >> 16) & 0xff;
|
||||||
|
resultBuffer[idx++] = (kdfRounds >> 8) & 0xff;
|
||||||
|
resultBuffer[idx++] = kdfRounds & 0xff;
|
||||||
|
resultBuffer.set(cipherArray, idx); idx += cipherArray.length;
|
||||||
|
|
||||||
|
const toSign = resultBuffer.subarray(0, idx);
|
||||||
|
|
||||||
|
let hmac;
|
||||||
|
try {
|
||||||
|
hmac = await subtleCrypto.sign(
|
||||||
|
{ name: 'HMAC' },
|
||||||
|
hmacKey,
|
||||||
|
toSign,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
throw friendlyError('subtleCrypto.sign failed: ' + e, cryptoFailMsg());
|
||||||
|
}
|
||||||
|
|
||||||
|
const hmacArray = new Uint8Array(hmac);
|
||||||
|
resultBuffer.set(hmacArray, idx);
|
||||||
|
return packMegolmKeyFile(resultBuffer);
|
||||||
|
}
|
||||||
@@ -48,30 +48,6 @@ async function isRoomAliasAvailable(alias) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function doesRoomHaveUnread(room) {
|
|
||||||
const userId = initMatrix.matrixClient.getUserId();
|
|
||||||
const readUpToId = room.getEventReadUpTo(userId);
|
|
||||||
const supportEvents = ['m.room.message', 'm.room.encrypted', 'm.sticker'];
|
|
||||||
|
|
||||||
if (room.timeline.length
|
|
||||||
&& room.timeline[room.timeline.length - 1].sender
|
|
||||||
&& room.timeline[room.timeline.length - 1].sender.userId === userId
|
|
||||||
&& room.timeline[room.timeline.length - 1].getType() !== 'm.room.member') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (let i = room.timeline.length - 1; i >= 0; i -= 1) {
|
|
||||||
const event = room.timeline[i];
|
|
||||||
|
|
||||||
if (event.getId() === readUpToId) return false;
|
|
||||||
|
|
||||||
if (supportEvents.includes(event.getType())) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getPowerLabel(powerLevel) {
|
function getPowerLabel(powerLevel) {
|
||||||
if (powerLevel > 9000) return 'Goku';
|
if (powerLevel > 9000) return 'Goku';
|
||||||
if (powerLevel > 100) return 'Founder';
|
if (powerLevel > 100) return 'Founder';
|
||||||
@@ -80,7 +56,28 @@ function getPowerLabel(powerLevel) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function parseReply(rawBody) {
|
||||||
|
if (rawBody?.indexOf('>') !== 0) return null;
|
||||||
|
let body = rawBody.slice(rawBody.indexOf('<') + 1);
|
||||||
|
const user = body.slice(0, body.indexOf('>'));
|
||||||
|
|
||||||
|
body = body.slice(body.indexOf('>') + 2);
|
||||||
|
const replyBody = body.slice(0, body.indexOf('\n\n'));
|
||||||
|
body = body.slice(body.indexOf('\n\n') + 2);
|
||||||
|
|
||||||
|
if (user === '') return null;
|
||||||
|
|
||||||
|
const isUserId = user.match(/^@.+:.+/);
|
||||||
|
|
||||||
|
return {
|
||||||
|
userId: isUserId ? user : null,
|
||||||
|
displayName: isUserId ? null : user,
|
||||||
|
replyBody,
|
||||||
|
body,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
getBaseUrl, getUsername, getUsernameOfRoomMember,
|
getBaseUrl, getUsername, getUsernameOfRoomMember,
|
||||||
isRoomAliasAvailable, doesRoomHaveUnread, getPowerLabel,
|
isRoomAliasAvailable, getPowerLabel, parseReply,
|
||||||
};
|
};
|
||||||
|
|||||||
128
src/util/sanitize.js
Normal file
128
src/util/sanitize.js
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
import sanitizeHtml from 'sanitize-html';
|
||||||
|
import initMatrix from '../client/initMatrix';
|
||||||
|
|
||||||
|
const MAX_TAG_NESTING = 100;
|
||||||
|
|
||||||
|
const permittedHtmlTags = [
|
||||||
|
'font', 'del', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
|
||||||
|
'blockquote', 'p', 'a', 'ul', 'ol', 'sup', 'sub',
|
||||||
|
'li', 'b', 'i', 'u', 'strong', 'em', 'strike', 'code',
|
||||||
|
'hr', 'br', 'div', 'table', 'thead', 'tbody', 'tr', 'th',
|
||||||
|
'td', 'caption', 'pre', 'span', 'img', 'details', 'summary',
|
||||||
|
];
|
||||||
|
|
||||||
|
const urlSchemes = ['https', 'http', 'ftp', 'mailto', 'magnet'];
|
||||||
|
|
||||||
|
const permittedTagToAttributes = {
|
||||||
|
font: ['style', 'data-mx-bg-color', 'data-mx-color', 'color'],
|
||||||
|
span: ['style', 'data-mx-bg-color', 'data-mx-color', 'data-mx-spoiler', 'data-mx-pill', 'data-mx-ping'],
|
||||||
|
a: ['name', 'target', 'href', 'rel'],
|
||||||
|
img: ['width', 'height', 'alt', 'title', 'src', 'data-mx-emoticon'],
|
||||||
|
o: ['start'],
|
||||||
|
code: ['class'],
|
||||||
|
};
|
||||||
|
|
||||||
|
function transformFontTag(tagName, attribs) {
|
||||||
|
return {
|
||||||
|
tagName,
|
||||||
|
attribs: {
|
||||||
|
...attribs,
|
||||||
|
style: `background-color: ${attribs['data-mx-bg-color']}; color: ${attribs['data-mx-color']}`,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function transformSpanTag(tagName, attribs) {
|
||||||
|
return {
|
||||||
|
tagName,
|
||||||
|
attribs: {
|
||||||
|
...attribs,
|
||||||
|
style: `background-color: ${attribs['data-mx-bg-color']}; color: ${attribs['data-mx-color']}`,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function transformATag(tagName, attribs) {
|
||||||
|
const userLink = attribs.href.match(/^https?:\/\/matrix.to\/#\/(@.+:.+)/);
|
||||||
|
if (userLink !== null) {
|
||||||
|
// convert user link to pill
|
||||||
|
const userId = userLink[1];
|
||||||
|
const pill = {
|
||||||
|
tagName: 'span',
|
||||||
|
attribs: {
|
||||||
|
'data-mx-pill': userId,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
if (userId === initMatrix.matrixClient.getUserId()) {
|
||||||
|
pill.attribs['data-mx-ping'] = undefined;
|
||||||
|
}
|
||||||
|
return pill;
|
||||||
|
}
|
||||||
|
|
||||||
|
const rex = /[\u{1f300}-\u{1f5ff}\u{1f900}-\u{1f9ff}\u{1f600}-\u{1f64f}\u{1f680}-\u{1f6ff}\u{2600}-\u{26ff}\u{2700}-\u{27bf}\u{1f1e6}-\u{1f1ff}\u{1f191}-\u{1f251}\u{1f004}\u{1f0cf}\u{1f170}-\u{1f171}\u{1f17e}-\u{1f17f}\u{1f18e}\u{3030}\u{2b50}\u{2b55}\u{2934}-\u{2935}\u{2b05}-\u{2b07}\u{2b1b}-\u{2b1c}\u{3297}\u{3299}\u{303d}\u{00a9}\u{00ae}\u{2122}\u{23f3}\u{24c2}\u{23e9}-\u{23ef}\u{25b6}\u{23f8}-\u{23fa}]/ug;
|
||||||
|
const newHref = attribs.href.replace(rex, (match) => `[e-${match.codePointAt(0).toString(16)}]`);
|
||||||
|
|
||||||
|
return {
|
||||||
|
tagName,
|
||||||
|
attribs: {
|
||||||
|
...attribs,
|
||||||
|
href: newHref,
|
||||||
|
rel: 'noopener',
|
||||||
|
target: '_blank',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function transformImgTag(tagName, attribs) {
|
||||||
|
const { src } = attribs;
|
||||||
|
const mx = initMatrix.matrixClient;
|
||||||
|
return {
|
||||||
|
tagName,
|
||||||
|
attribs: {
|
||||||
|
...attribs,
|
||||||
|
src: src.startsWith('mxc://') ? mx.mxcUrlToHttp(src) : src,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function sanitizeCustomHtml(body) {
|
||||||
|
return sanitizeHtml(body, {
|
||||||
|
allowedTags: permittedHtmlTags,
|
||||||
|
allowedAttributes: permittedTagToAttributes,
|
||||||
|
disallowedTagsMode: 'discard',
|
||||||
|
allowedSchemes: urlSchemes,
|
||||||
|
allowedSchemesByTag: {
|
||||||
|
a: urlSchemes,
|
||||||
|
},
|
||||||
|
allowedSchemesAppliedToAttributes: ['href'],
|
||||||
|
allowProtocolRelative: false,
|
||||||
|
allowedClasses: {
|
||||||
|
code: ['language-*'],
|
||||||
|
},
|
||||||
|
allowedStyles: {
|
||||||
|
'*': {
|
||||||
|
color: [/^#(?:[0-9a-fA-F]{3}){1,2}$/],
|
||||||
|
'background-color': [/^#(?:[0-9a-fA-F]{3}){1,2}$/],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
transformTags: {
|
||||||
|
font: transformFontTag,
|
||||||
|
span: transformSpanTag,
|
||||||
|
a: transformATag,
|
||||||
|
img: transformImgTag,
|
||||||
|
},
|
||||||
|
nonTextTags: ['style', 'script', 'textarea', 'option', 'noscript', 'mx-reply'],
|
||||||
|
nestingLimit: MAX_TAG_NESTING,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function sanitizeText(body) {
|
||||||
|
const tagsToReplace = {
|
||||||
|
'&': '&',
|
||||||
|
'<': '<',
|
||||||
|
'>': '>',
|
||||||
|
'"': '"',
|
||||||
|
"'": ''',
|
||||||
|
};
|
||||||
|
return body.replace(/[&<>'"]/g, (tag) => tagsToReplace[tag] || tag);
|
||||||
|
}
|
||||||
21
src/util/twemojify.js
Normal file
21
src/util/twemojify.js
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
/* eslint-disable import/prefer-default-export */
|
||||||
|
import linkifyHtml from 'linkifyjs/html';
|
||||||
|
import parse from 'html-react-parser';
|
||||||
|
import twemoji from 'twemoji';
|
||||||
|
import { sanitizeText } from './sanitize';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} text - text to twemojify
|
||||||
|
* @param {object|undefined} opts - options for tweomoji.parse
|
||||||
|
* @param {boolean} [linkify=false] - convert links to html tags (default: false)
|
||||||
|
* @param {boolean} [sanitize=true] - sanitize html text (default: true)
|
||||||
|
* @returns React component
|
||||||
|
*/
|
||||||
|
export function twemojify(text, opts, linkify = false, sanitize = true) {
|
||||||
|
if (typeof text !== 'string') return text;
|
||||||
|
let content = sanitize ? twemoji.parse(sanitizeText(text), opts) : twemoji.parse(text, opts);
|
||||||
|
if (linkify) {
|
||||||
|
content = linkifyHtml(content, { target: '_blank', rel: 'noreferrer noopener' });
|
||||||
|
}
|
||||||
|
return parse(content);
|
||||||
|
}
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
|
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
|
||||||
const webpack = require('webpack');
|
|
||||||
const CopyPlugin = require("copy-webpack-plugin");
|
const CopyPlugin = require("copy-webpack-plugin");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
@@ -66,9 +65,6 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
new webpack.DefinePlugin({
|
|
||||||
'process.env': JSON.stringify(process.env),
|
|
||||||
}),
|
|
||||||
new CopyPlugin({
|
new CopyPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
{ from: 'olm.wasm' },
|
{ from: 'olm.wasm' },
|
||||||
|
|||||||
Reference in New Issue
Block a user