chore: Sort subspaces on top

This commit is contained in:
Christian Pauly 2022-09-10 11:57:58 +02:00
parent fa629f8fb7
commit 0b90e1ff88
1 changed files with 4 additions and 2 deletions

View File

@ -186,8 +186,10 @@ class _SpaceViewState extends State<SpaceView> {
final parentSpace = allSpaces.firstWhereOrNull((space) => space
.spaceChildren
.any((child) => child.roomId == activeSpaceId));
final spaceChildren = response.rooms
..sort((a, b) => a.roomType == 'm.space' ? -1 : 1);
return ListView.builder(
itemCount: response.rooms.length + 1,
itemCount: spaceChildren.length + 1,
controller: widget.scrollController,
itemBuilder: (context, i) {
if (i == 0) {
@ -211,7 +213,7 @@ class _SpaceViewState extends State<SpaceView> {
);
}
i--;
final spaceChild = response.rooms[i];
final spaceChild = spaceChildren[i];
final room = client.getRoomById(spaceChild.roomId);
if (room != null && !room.isSpace) {
return ChatListItem(