chore: Follow up add backbutton support

This commit is contained in:
Christian Pauly 2022-09-11 10:22:05 +02:00
parent ed2eddd601
commit dc0f067b0a
3 changed files with 163 additions and 127 deletions

View File

@ -2942,5 +2942,12 @@
"enterRoom": "Enter room", "enterRoom": "Enter room",
"@enterRoom": {}, "@enterRoom": {},
"allSpaces": "All spaces", "allSpaces": "All spaces",
"@allSpaces": {} "@allSpaces": {},
"numChats": "{number} chats",
"@numChats": {
"type": "number",
"placeholders": {
"number": {}
}
}
} }

View File

@ -56,8 +56,20 @@ class ChatListView extends StatelessWidget {
return VWidgetGuard( return VWidgetGuard(
onSystemPop: (redirector) async { onSystemPop: (redirector) async {
final selMode = controller.selectMode; final selMode = controller.selectMode;
if (selMode != SelectMode.normal) controller.cancelAction(); if (selMode != SelectMode.normal) {
if (selMode == SelectMode.select) redirector.stopRedirection(); controller.cancelAction();
redirector.stopRedirection();
return;
}
if (controller.activeFilter !=
(AppConfig.separateChatTypes
? ActiveFilter.messages
: ActiveFilter.allChats)) {
controller
.onDestinationSelected(AppConfig.separateChatTypes ? 1 : 0);
redirector.stopRedirection();
return;
}
}, },
child: Row( child: Row(
children: [ children: [

View File

@ -148,7 +148,9 @@ class _SpaceViewState extends State<SpaceView> {
return ListView.builder( return ListView.builder(
itemCount: rootSpaces.length, itemCount: rootSpaces.length,
controller: widget.scrollController, controller: widget.scrollController,
itemBuilder: (context, i) => ListTile( itemBuilder: (context, i) => Material(
color: Theme.of(context).backgroundColor,
child: ListTile(
leading: Avatar( leading: Avatar(
mxContent: rootSpaces[i].avatar, mxContent: rootSpaces[i].avatar,
name: rootSpaces[i].displayname, name: rootSpaces[i].displayname,
@ -158,11 +160,13 @@ class _SpaceViewState extends State<SpaceView> {
maxLines: 1, maxLines: 1,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
), ),
subtitle: Text('${rootSpaces[i].spaceChildren.length} Chats'), subtitle: Text(L10n.of(context)!
.numChats(rootSpaces[i].spaceChildren.length.toString())),
onTap: () => widget.controller.setActiveSpace(rootSpaces[i].id), onTap: () => widget.controller.setActiveSpace(rootSpaces[i].id),
onLongPress: () => _onSpaceChildContextMenu(null, rootSpaces[i]), onLongPress: () => _onSpaceChildContextMenu(null, rootSpaces[i]),
trailing: const Icon(Icons.chevron_right_outlined), trailing: const Icon(Icons.chevron_right_outlined),
), ),
),
); );
} }
return FutureBuilder<GetSpaceHierarchyResponse>( return FutureBuilder<GetSpaceHierarchyResponse>(
@ -193,7 +197,15 @@ class _SpaceViewState extends State<SpaceView> {
.any((child) => child.roomId == activeSpaceId)); .any((child) => child.roomId == activeSpaceId));
final spaceChildren = response.rooms; final spaceChildren = response.rooms;
final canLoadMore = response.nextBatch != null; final canLoadMore = response.nextBatch != null;
return ListView.builder( return VWidgetGuard(
onSystemPop: (redirector) async {
if (parentSpace != null) {
widget.controller.setActiveSpace(parentSpace.id);
redirector.stopRedirection();
return;
}
},
child: ListView.builder(
itemCount: spaceChildren.length + 1 + (canLoadMore ? 1 : 0), itemCount: spaceChildren.length + 1 + (canLoadMore ? 1 : 0),
controller: widget.scrollController, controller: widget.scrollController,
itemBuilder: (context, i) { itemBuilder: (context, i) {
@ -239,12 +251,14 @@ class _SpaceViewState extends State<SpaceView> {
); );
} }
final isSpace = spaceChild.roomType == 'm.space'; final isSpace = spaceChild.roomType == 'm.space';
final topic = final topic = spaceChild.topic?.isEmpty ?? true
spaceChild.topic?.isEmpty ?? true ? null : spaceChild.topic; ? null
: spaceChild.topic;
if (spaceChild.roomId == activeSpaceId) { if (spaceChild.roomId == activeSpaceId) {
return SearchTitle( return SearchTitle(
title: title: spaceChild.name ??
spaceChild.name ?? spaceChild.canonicalAlias ?? 'Space', spaceChild.canonicalAlias ??
'Space',
icon: Padding( icon: Padding(
padding: const EdgeInsets.symmetric(horizontal: 10.0), padding: const EdgeInsets.symmetric(horizontal: 10.0),
child: Avatar( child: Avatar(
@ -295,7 +309,8 @@ class _SpaceViewState extends State<SpaceView> {
], ],
), ),
onTap: () => _onJoinSpaceChild(spaceChild), onTap: () => _onJoinSpaceChild(spaceChild),
onLongPress: () => _onSpaceChildContextMenu(spaceChild, room), onLongPress: () =>
_onSpaceChildContextMenu(spaceChild, room),
subtitle: Text( subtitle: Text(
topic ?? topic ??
(isSpace (isSpace
@ -305,10 +320,12 @@ class _SpaceViewState extends State<SpaceView> {
style: TextStyle( style: TextStyle(
color: Theme.of(context).colorScheme.onBackground), color: Theme.of(context).colorScheme.onBackground),
), ),
trailing: trailing: isSpace
isSpace ? const Icon(Icons.chevron_right_outlined) : null, ? const Icon(Icons.chevron_right_outlined)
: null,
);
}),
); );
});
}); });
} }
} }