Travis Ralston
4aa15ee191
Wire up the context menu to the room list store
...
Updates are passed along magically to the sublist, so we don't need to listen for the room list store's response to our changes.
This just hits the functions introduced in the last commit.
2020-06-11 22:04:10 -06:00
Travis Ralston
fd029e8e80
Dumb down list algorithms in favour of smarter tags
...
This commit is a bit involved, as it factors the tag specific handling out of `/list-ordering` (and moves the `Algorithm` class one higher as a result), leaving it in the `Algorithm`. The algorithms for list ordering now only know how to handle a single tag, and this is managed by the `Algorithm` class - which is also no longer the base class for the list ordering. The list ordering algorithms now inherit from a generic `OrderingAlgorithm` base class which handles some rudimentary things.
Overall the logic hasn't changed much: the tag-specific stuff has been moved into the `Algorithm`, and the list ordering algorithms essentially just removed the iteration on tags. The `RoomListStore2` still shovels a bunch of information over to the `Algorithm`, which can lead to an awkward code flow however this commit is meant to keep the number of surfaces touched to a minimum.
The RoomListStore has also gained the ability to set per-list (tag) ordering and sorting, which is required for the new room list. The assumption that it defaults from the account-level settings is not reviewed by design, yet. This decision is deferred.
2020-06-11 22:02:09 -06:00
Travis Ralston
52b26deb2e
Move room list store docs to docs directory
...
This pulls it away from the code, but the code is sufficiently involved enough where it doesn't need another file near it.
2020-06-11 16:56:12 -06:00
Travis Ralston
966e2cad7e
Update documentation for how this refactoring will go
2020-06-11 16:52:47 -06:00
Travis Ralston
2e04414331
Merge pull request #4750 from matrix-org/travis/room-list/leak
...
Add some resource leak protection to new room list badges
2020-06-11 12:33:11 -06:00
Jorik Schellekens
93a098d94f
Merge pull request #4747 from matrix-org/joriks/fix-read-receipts
...
Fix read-receipt alignment
2020-06-11 17:34:32 +01:00
Jorik Schellekens
399dd6a225
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into joriks/fix-read-receipts
...
To fix types
2020-06-11 10:55:27 +01:00
Jorik Schellekens
b36d7d48cc
Center read reaceipts on irc-ui
2020-06-11 10:36:52 +01:00
Travis Ralston
f98f045005
Merge pull request #4751 from matrix-org/travis/room-list/previews
...
Show message previews on the new room list tiles
2020-06-10 19:10:50 -06:00
Travis Ralston
853ae6d5bf
misc code quality improvements
2020-06-10 18:56:21 -06:00
Travis Ralston
6ccb566587
Show message previews on the new room list tiles
...
They're heavily cached.
2020-06-10 18:37:59 -06:00
Travis Ralston
95fb8e3c78
Merge pull request #4749 from matrix-org/travis/room-list/layout
...
Fix various layout concerns with the new room list
2020-06-10 16:08:35 -06:00
Travis Ralston
d1c2ecb6cc
Add some resource leak protection to new room list badges
...
Most of the leaks were because we never set `this.rooms` in the notification state, which meant we were constantly triggering the `diff.added` loop.
2020-06-10 16:04:27 -06:00
Travis Ralston
0f16d7f32d
Merge branch 'develop' into travis/room-list/layout
2020-06-10 15:53:33 -06:00
Michael Telatynski
d3a3b54a82
Merge pull request #4748 from matrix-org/t3chguy/macos-bitmap
...
Prioritize text on the clipboard over file
2020-06-10 22:51:16 +01:00
Travis Ralston
1d84b46681
Fix vertical height causing sublists to wrap
2020-06-10 15:22:17 -06:00
Travis Ralston
6c31bf1a61
Fix layout when resizing the list width
2020-06-10 15:15:58 -06:00
Michael Telatynski
ed7f4755cc
use ButtonEvent instead of MouseEvent | KeyboardEvent for AccessibleButton (make CI happy)
...
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2020-06-10 22:05:29 +01:00
Travis Ralston
be366bdd7f
Fix various layout concerns with the new room list
...
It had ~32px of overflow causing a horizontal scrollbar. Turns out the layout engine gets confused when hidden elements are at the end of a flexbox, so we just move them higher in the DOM (where they logically still make sense).
The remaining changes are all alignment and misc changes in that respect, and probably not obvious.
2020-06-10 15:05:17 -06:00
Michael Telatynski
601e8209d8
Prioritize text on the clipboard over file
...
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2020-06-10 21:48:39 +01:00
Jorik Schellekens
b2154a4a61
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into joriks/fix-read-receipts
2020-06-10 17:33:22 +01:00
Jorik Schellekens
b63d73e3b6
Merge pull request #4729 from matrix-org/joriks/appearance-tab
...
Move Settings flag to ts
2020-06-10 16:57:18 +01:00
Jorik Schellekens
737fc46b87
Inline kind classnames
2020-06-10 16:48:34 +01:00
Jorik Schellekens
52c7577972
Clean up interfaces and classname
2020-06-10 15:57:28 +01:00
Jorik Schellekens
11d85f167b
Fix read-receipt alignment
2020-06-10 15:21:36 +01:00
Travis Ralston
72bb89d4ee
Merge pull request #4743 from matrix-org/travis/room-list/tile-menu
...
Add a context menu to rooms in the new room list
2020-06-10 07:46:09 -06:00
Travis Ralston
58db992382
Add 10px to comment
2020-06-10 07:45:52 -06:00
Travis Ralston
64a8767c5a
Merge pull request #4742 from matrix-org/travis/room-list/hover-state
...
Add hover states and basic context menu to new room list
2020-06-10 07:43:31 -06:00
Travis Ralston
b1fdfb51cd
Fix i18n
2020-06-10 07:43:13 -06:00
Travis Ralston
a3391d9a08
Merge branch 'develop' into travis/room-list/hover-state
2020-06-10 07:42:41 -06:00
Travis Ralston
78e1db9d30
Merge pull request #4741 from matrix-org/travis/room-list/resize-handle
...
Update resize handle for new designs in new room list
2020-06-10 07:40:34 -06:00
Travis Ralston
a4ea5b5902
Merge pull request #4740 from matrix-org/travis/room-list/stability-1
...
Improve general stability in the new room list
2020-06-10 07:40:07 -06:00
Travis Ralston
95b4abba3b
Merge pull request #4735 from matrix-org/travis/room-list/breadcrumbs
...
Reimplement breadcrumbs for new room list
2020-06-10 07:39:55 -06:00
Travis Ralston
60b5f2dbec
Merge pull request #4744 from matrix-org/joriks/radio-buttons-isolated
...
Add styled radio buttons
2020-06-10 07:27:17 -06:00
Jorik Schellekens
8a0e4a4954
Merge pull request #4730 from matrix-org/joriks/hide-checkbox-tick
...
Hide checkbox tick on dark backgrounds
2020-06-10 14:12:06 +01:00
Jorik Schellekens
04d91ae0af
Fix code review issues
...
- interfaces go to the top
- fix comma conflation
- value no generic
- optionalised props
- line lints
2020-06-10 14:11:36 +01:00
Jorik Schellekens
224a296180
Merge pull request #4746 from matrix-org/joriks/checkbox-accessibility
...
Make checkboxes a11y friendly
2020-06-10 13:52:19 +01:00
Jorik Schellekens
9787b4d640
Even more lines
2020-06-10 13:50:09 +01:00
Jorik Schellekens
0ec0bbecda
lint more lines
2020-06-10 13:49:52 +01:00
Jorik Schellekens
ab47e0ed24
lint lines
2020-06-10 13:49:03 +01:00
Jorik Schellekens
a2294a73a4
Make checkboxes a11y friendly
2020-06-10 13:41:34 +01:00
Jorik Schellekens
70fe7ce619
fix licensing info
2020-06-10 13:39:28 +01:00
Jorik Schellekens
8fc6289290
Use appearance instad of display for accessibility
2020-06-10 13:37:09 +01:00
Jorik Schellekens
3bea64e950
smaller margin
2020-06-10 13:06:17 +01:00
Jorik Schellekens
0fb6846c9d
Radio buttons
2020-06-10 13:03:00 +01:00
Damir Jelić
54200519f6
Merge branch 'poljar/eventindex-search-verification-state' into develop
2020-06-10 13:33:10 +02:00
Damir Jelić
f70ada4d6d
Searching: Delete all the fields that we use to get back event verification.
2020-06-10 12:58:08 +02:00
Travis Ralston
175fc0e2a1
Appease the style linter
2020-06-09 23:13:57 -06:00
Travis Ralston
0755b4c148
Add a context menu to rooms in the new room list
...
The tag options are not implemented out of concern for diff size.
This splits the context menu classes out to a new "iconized" style which is common across a number of context menus, including the UserMenu.
Some of the badge/sublist styles had to change to better accommodate the menu icon lining up.
This also contains the framework required for https://github.com/vector-im/riot-web/issues/13961
2020-06-09 23:09:15 -06:00
Travis Ralston
2180a56074
Remove irrelevant property
2020-06-09 21:15:38 -06:00