Space filters (#4977)

* Add support for SpaceFilters on the SpaceServiceProxy level and a screen that renders them

* Add aliases to a couple of space room mocks

* Update translations and related snapshots

* Add a feature flag for space filters

* Add a new room summary provider filter that takes a list of room identifiers next to the normal state filters

This will take the SpaceFilter's descendants and combine it with the normal filters to reduce the rooms shown

* Add a new space filter button to the home screen and link it to the SpaceFiltersScreen and the actual RoomSummaryProvider room list filters

* Bump the RustSDK to v26.01.20-2 for SpaceFilter support.

* Add a cancellation button to the space filters screen

* Make the filter presentation mode liquidy, move the sheet to within the home screen.

* Address PR comments
This commit is contained in:
Stefan Ceriu
2026-01-21 22:19:39 +02:00
committed by GitHub
parent 9be516ca8c
commit d1f1a598d5
41 changed files with 808 additions and 13 deletions

View File

@@ -75,6 +75,14 @@ extension AccessibilityTests {
try await performAccessibilityAudit(named: "CallNotificationRoomTimelineView_Previews")
}
func testChatsSpaceFilterCell() async throws {
try await performAccessibilityAudit(named: "ChatsSpaceFilterCell_Previews")
}
func testChatsSpaceFiltersScreen() async throws {
try await performAccessibilityAudit(named: "ChatsSpaceFiltersScreen_Previews")
}
func testCollapsibleRoomTimelineView() async throws {
try await performAccessibilityAudit(named: "CollapsibleRoomTimelineView_Previews")
}