Module matrix_sdk_ui::room_list_service
source · Expand description
RoomListService
API.
The RoomListService
is a UI API dedicated to present a list of Matrix
rooms to the user. The syncing is handled by SlidingSync
. The idea is to
expose a simple API to handle most of the client app use cases, like:
Showing and updating a list of rooms, filtering a list of rooms, handling
particular updates of a range of rooms (the ones the client app is showing
to the view, i.e. the rooms present in the viewport) etc.
As such, the RoomListService
works as an opinionated state machine. The
states are defined by State
. Actions are attached to the each state
transition.
The API is purposely small. Sliding Sync is versatile. RoomListService
is
one specific usage of Sliding Sync.
§Basic principle
RoomListService
works with 1 Sliding Sync List:
all_rooms
(referred by the constantALL_ROOMS_LIST_NAME
) is the only list. Its goal is to load all the user’ rooms. It starts with aSlidingSyncMode::Selective
sync-mode with a small range (i.e. a small set of rooms) to load the first rooms quickly, and then updates to aSlidingSyncMode::Growing
sync-mode to load the remaining rooms “in the background”: it will sync the existing rooms and will fetch new rooms, by a certain batch size.
This behavior has proven to be empirically satisfying to provide a fast and fluid user experience for a Matrix client.
RoomListService::all_rooms
provides a way to get a RoomList
for all
the rooms. From that, calling RoomList::entries_with_dynamic_adapters
provides a way to get a stream of rooms. This stream is sorted, can be
filtered, and the filter can be changed over time.
RoomListService::state
provides a way to get a stream of the state
machine’s state, which can be pretty helpful for the client app.
Modules§
- A collection of room filters.
- A collection of room sorters.
Structs§
- A room in the room list.
- A
RoomList
represents a list of rooms, from aRoomListService
. - Controller for the
RoomList
dynamic entries. - The
RoomListService
type. See the module’s documentation to learn more. - The state machine used to transition between the
State
s.
Enums§
RoomList
’s errors.- The loading state of a
RoomList
. - The state of the
super::RoomList
. - An hint whether a sync spinner/loader/toaster should be prompted to the user, indicating that the
RoomListService
is syncing.
Constants§
- Default
batch_size
for the growing sync-mode of theALL_ROOMS_LIST_NAME
list. - Default
batch_size
for the selective sync-mode of theALL_ROOMS_LIST_NAME
list.