matrix-react-sdk
matrix-react-sdk copied to clipboard
Matrix SDK for React Javascript
When sliding-sync is hostet on the same domain, but in a sub path, the url resolution will fail. Example: base domain: matrix.example.com sliding-sync: matrix.example.com/sliding-sync the URL constructur `new URL("/client/server.json", proxyUrl)`...
And move the logic for displaying the dialog out of the user menu to somewhere it can be re-used. Also close any open dialog on logout, because otherwise, well... you...
Second attempt at https://github.com/matrix-org/matrix-react-sdk/pull/12653 because I pressed the merge button before the PR it was based on was merged. 🤦 The section it lives in with the server name goes,...
## Checklist - [ ] Tests written for new code (and old code if feasible). - [ ] New or updated `public`/`exported` symbols have accurate [TSDoc](https://tsdoc.org/) documentation. - [ ]...
We were using emojibase-regex to match emoji within messages. However, [the docs](https://emojibase.dev/docs/regex/) state that this regex matches both emoji and text presentation characters. This is not what we want, and...
The README says we require the latest LTS version of Node, but actions/setup-node with ubuntu-latest appears to default to a version earlier than that. I'd like to make use of...
## Checklist - [ ] Tests written for new code (and old code if feasible). - [ ] New or updated `public`/`exported` symbols have accurate [TSDoc](https://tsdoc.org/) documentation. - [ ]...
The purpose of this PR is to: - demonstrate practically how we could use MVVM - highlight the benefits it brings and some suggestions for best-practice - gather feedback on...