2021-10-26 18:50:34 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2021-09-19 13:48:23 +02:00
|
|
|
import 'package:flutter/widgets.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-06-18 10:29:48 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
|
|
|
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import 'package:fluffychat/pages/chat_list/chat_list.dart';
|
|
|
|
import 'package:fluffychat/pages/chat_list/chat_list_item.dart';
|
2021-11-14 18:47:18 +01:00
|
|
|
import 'package:fluffychat/pages/chat_list/client_chooser_button.dart';
|
|
|
|
import 'package:fluffychat/pages/chat_list/spaces_bottom_bar.dart';
|
2021-05-22 08:53:52 +02:00
|
|
|
import 'package:fluffychat/widgets/connection_status_header.dart';
|
2021-07-31 12:31:31 +02:00
|
|
|
import '../../utils/stream_extension.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import '../../widgets/matrix.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
|
2021-05-22 09:13:47 +02:00
|
|
|
class ChatListView extends StatelessWidget {
|
2021-04-14 14:09:46 +02:00
|
|
|
final ChatListController controller;
|
|
|
|
|
2021-05-22 09:13:47 +02:00
|
|
|
const ChatListView(this.controller, {Key key}) : super(key: key);
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return StreamBuilder<Object>(
|
|
|
|
stream: Matrix.of(context).onShareContentChanged.stream,
|
|
|
|
builder: (_, __) {
|
2021-05-31 20:41:46 +02:00
|
|
|
final selectMode = controller.selectMode;
|
2021-05-26 20:28:08 +02:00
|
|
|
return VWidgetGuard(
|
2021-08-01 07:45:34 +02:00
|
|
|
onSystemPop: (redirector) async {
|
|
|
|
final selMode = controller.selectMode;
|
|
|
|
if (selMode != SelectMode.normal) controller.cancelAction();
|
|
|
|
if (selMode == SelectMode.select) redirector.stopRedirection();
|
|
|
|
},
|
|
|
|
child: Scaffold(
|
|
|
|
appBar: AppBar(
|
2021-08-29 11:29:14 +02:00
|
|
|
elevation: controller.scrolledToTop ? 0 : null,
|
2021-08-12 21:10:26 +02:00
|
|
|
actionsIconTheme: IconThemeData(
|
|
|
|
color: controller.selectedRoomIds.isEmpty
|
|
|
|
? null
|
|
|
|
: Theme.of(context).colorScheme.primary,
|
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
leading: selectMode == SelectMode.normal
|
2021-11-14 18:47:18 +01:00
|
|
|
? Matrix.of(context).isMultiAccount
|
|
|
|
? ClientChooserButton(controller)
|
|
|
|
: null
|
2021-08-01 07:45:34 +02:00
|
|
|
: IconButton(
|
|
|
|
tooltip: L10n.of(context).cancel,
|
2021-10-14 18:09:30 +02:00
|
|
|
icon: const Icon(Icons.close_outlined),
|
2021-08-01 07:45:34 +02:00
|
|
|
onPressed: controller.cancelAction,
|
2021-08-12 21:10:26 +02:00
|
|
|
color: Theme.of(context).colorScheme.primary,
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
|
|
|
centerTitle: false,
|
|
|
|
actions: selectMode == SelectMode.share
|
|
|
|
? null
|
|
|
|
: selectMode == SelectMode.select
|
|
|
|
? [
|
2021-11-15 07:24:05 +01:00
|
|
|
if (controller.spaces.isNotEmpty)
|
2021-08-12 20:46:21 +02:00
|
|
|
IconButton(
|
|
|
|
tooltip: L10n.of(context).addToSpace,
|
2021-10-14 18:09:30 +02:00
|
|
|
icon: const Icon(Icons.group_work_outlined),
|
2021-08-12 20:46:21 +02:00
|
|
|
onPressed: controller.addOrRemoveToSpace,
|
|
|
|
),
|
2021-11-14 20:59:25 +01:00
|
|
|
IconButton(
|
|
|
|
tooltip: L10n.of(context).toggleUnread,
|
|
|
|
icon: Icon(
|
|
|
|
controller.anySelectedRoomNotMarkedUnread
|
|
|
|
? Icons.mark_chat_read_outlined
|
|
|
|
: Icons.mark_chat_unread_outlined),
|
|
|
|
onPressed: controller.toggleUnread,
|
|
|
|
),
|
|
|
|
IconButton(
|
|
|
|
tooltip: L10n.of(context).toggleFavorite,
|
|
|
|
icon: Icon(controller.anySelectedRoomNotFavorite
|
|
|
|
? Icons.push_pin_outlined
|
|
|
|
: Icons.push_pin),
|
|
|
|
onPressed: controller.toggleFavouriteRoom,
|
|
|
|
),
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(controller.anySelectedRoomNotMuted
|
|
|
|
? Icons.notifications_off_outlined
|
|
|
|
: Icons.notifications_outlined),
|
|
|
|
tooltip: L10n.of(context).toggleMuted,
|
|
|
|
onPressed: controller.toggleMuted,
|
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
IconButton(
|
2021-10-14 18:09:30 +02:00
|
|
|
icon: const Icon(Icons.delete_outlined),
|
2021-08-01 07:45:34 +02:00
|
|
|
tooltip: L10n.of(context).archive,
|
|
|
|
onPressed: controller.archiveAction,
|
|
|
|
),
|
|
|
|
]
|
|
|
|
: [
|
|
|
|
IconButton(
|
2021-10-14 18:09:30 +02:00
|
|
|
icon: const Icon(Icons.search_outlined),
|
2021-08-01 07:45:34 +02:00
|
|
|
tooltip: L10n.of(context).search,
|
|
|
|
onPressed: () =>
|
|
|
|
VRouter.of(context).to('/search'),
|
|
|
|
),
|
|
|
|
PopupMenuButton<PopupMenuAction>(
|
|
|
|
onSelected: controller.onPopupMenuSelect,
|
|
|
|
itemBuilder: (_) => [
|
|
|
|
PopupMenuItem(
|
|
|
|
value: PopupMenuAction.setStatus,
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(Icons.edit_outlined),
|
|
|
|
const SizedBox(width: 12),
|
2021-08-01 07:45:34 +02:00
|
|
|
Text(L10n.of(context).setStatus),
|
|
|
|
],
|
2021-05-26 20:50:15 +02:00
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
|
|
|
PopupMenuItem(
|
|
|
|
value: PopupMenuAction.newGroup,
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(Icons.group_add_outlined),
|
|
|
|
const SizedBox(width: 12),
|
2021-08-01 07:45:34 +02:00
|
|
|
Text(L10n.of(context).createNewGroup),
|
|
|
|
],
|
2021-05-26 20:50:15 +02:00
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
2021-08-01 08:05:40 +02:00
|
|
|
PopupMenuItem(
|
|
|
|
value: PopupMenuAction.newSpace,
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(Icons.group_work_outlined),
|
|
|
|
const SizedBox(width: 12),
|
2021-08-01 08:05:40 +02:00
|
|
|
Text(L10n.of(context).createNewSpace),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
PopupMenuItem(
|
|
|
|
value: PopupMenuAction.invite,
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(Icons.share_outlined),
|
|
|
|
const SizedBox(width: 12),
|
2021-08-01 07:45:34 +02:00
|
|
|
Text(L10n.of(context).inviteContact),
|
|
|
|
],
|
2021-04-14 14:09:46 +02:00
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
|
|
|
PopupMenuItem(
|
|
|
|
value: PopupMenuAction.archive,
|
|
|
|
child: Row(
|
2021-05-26 20:50:15 +02:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
2021-08-01 07:45:34 +02:00
|
|
|
children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(Icons.archive_outlined),
|
|
|
|
const SizedBox(width: 12),
|
2021-08-01 07:45:34 +02:00
|
|
|
Text(L10n.of(context).archive),
|
2021-05-26 20:50:15 +02:00
|
|
|
],
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
PopupMenuItem(
|
|
|
|
value: PopupMenuAction.settings,
|
|
|
|
child: Row(
|
2021-06-20 12:57:46 +02:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(Icons.settings_outlined),
|
|
|
|
const SizedBox(width: 12),
|
2021-08-01 07:45:34 +02:00
|
|
|
Text(L10n.of(context).settings),
|
2021-06-20 12:57:46 +02:00
|
|
|
],
|
|
|
|
),
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
title: Text(selectMode == SelectMode.share
|
|
|
|
? L10n.of(context).share
|
|
|
|
: selectMode == SelectMode.select
|
2021-08-12 21:10:26 +02:00
|
|
|
? controller.selectedRoomIds.length.toString()
|
2021-08-01 07:45:34 +02:00
|
|
|
: controller.activeSpaceId == null
|
|
|
|
? AppConfig.applicationName
|
|
|
|
: Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.getRoomById(controller.activeSpaceId)
|
|
|
|
.displayname),
|
|
|
|
),
|
|
|
|
body: Column(children: [
|
2021-10-14 18:09:30 +02:00
|
|
|
const ConnectionStatusHeader(),
|
2021-08-01 15:21:02 +02:00
|
|
|
Expanded(child: _ChatListViewBody(controller)),
|
2021-08-01 07:45:34 +02:00
|
|
|
]),
|
|
|
|
floatingActionButton: selectMode == SelectMode.normal
|
2021-08-29 11:29:14 +02:00
|
|
|
? controller.scrolledToTop
|
|
|
|
? FloatingActionButton.extended(
|
|
|
|
onPressed: () =>
|
|
|
|
VRouter.of(context).to('/newprivatechat'),
|
2021-10-14 18:09:30 +02:00
|
|
|
icon: const Icon(CupertinoIcons.chat_bubble),
|
2021-08-29 11:29:14 +02:00
|
|
|
label: Text(L10n.of(context).newChat),
|
|
|
|
)
|
|
|
|
: FloatingActionButton(
|
|
|
|
onPressed: () =>
|
|
|
|
VRouter.of(context).to('/newprivatechat'),
|
2021-10-14 18:09:30 +02:00
|
|
|
child: const Icon(CupertinoIcons.chat_bubble),
|
2021-08-29 11:29:14 +02:00
|
|
|
)
|
2021-08-01 07:45:34 +02:00
|
|
|
: null,
|
2021-11-15 07:27:19 +01:00
|
|
|
bottomNavigationBar: controller.spaces.isEmpty ||
|
|
|
|
controller.selectedRoomIds.isNotEmpty
|
2021-08-01 07:45:34 +02:00
|
|
|
? null
|
2021-11-14 18:47:18 +01:00
|
|
|
: SpacesBottomBar(controller),
|
2021-08-01 07:45:34 +02:00
|
|
|
),
|
|
|
|
);
|
2021-04-14 14:09:46 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-01 15:21:02 +02:00
|
|
|
class _ChatListViewBody extends StatelessWidget {
|
|
|
|
final ChatListController controller;
|
|
|
|
const _ChatListViewBody(this.controller, {Key key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) => StreamBuilder(
|
|
|
|
stream: Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.onSync
|
|
|
|
.stream
|
|
|
|
.where((s) => s.hasRoomUpdate)
|
2021-10-14 18:09:30 +02:00
|
|
|
.rateLimit(const Duration(seconds: 1)),
|
2021-08-01 15:21:02 +02:00
|
|
|
builder: (context, snapshot) {
|
2021-11-15 10:05:15 +01:00
|
|
|
return Builder(
|
|
|
|
builder: (context) {
|
|
|
|
if (controller.waitForFirstSync) {
|
2021-08-04 10:08:48 +02:00
|
|
|
final rooms = Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.rooms
|
2021-08-01 15:33:26 +02:00
|
|
|
.where(controller.roomCheck)
|
2021-08-01 15:21:02 +02:00
|
|
|
.toList();
|
|
|
|
if (rooms.isEmpty) {
|
|
|
|
return Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
2021-10-14 18:09:30 +02:00
|
|
|
const Icon(
|
2021-08-01 15:21:02 +02:00
|
|
|
Icons.maps_ugc_outlined,
|
|
|
|
size: 80,
|
|
|
|
color: Colors.grey,
|
|
|
|
),
|
|
|
|
Center(
|
|
|
|
child: Text(
|
|
|
|
L10n.of(context).startYourFirstChat,
|
|
|
|
textAlign: TextAlign.start,
|
2021-10-14 18:09:30 +02:00
|
|
|
style: const TextStyle(
|
2021-08-01 15:21:02 +02:00
|
|
|
color: Colors.grey,
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return ListView.builder(
|
2021-08-29 11:29:14 +02:00
|
|
|
controller: controller.scrollController,
|
2021-08-04 10:09:55 +02:00
|
|
|
itemCount: rooms.length,
|
2021-08-01 15:21:02 +02:00
|
|
|
itemBuilder: (BuildContext context, int i) {
|
|
|
|
return ChatListItem(
|
|
|
|
rooms[i],
|
|
|
|
selected: controller.selectedRoomIds.contains(rooms[i].id),
|
|
|
|
onTap: controller.selectMode == SelectMode.select
|
|
|
|
? () => controller.toggleSelection(rooms[i].id)
|
|
|
|
: null,
|
|
|
|
onLongPress: () => controller.toggleSelection(rooms[i].id),
|
|
|
|
activeChat: controller.activeChat == rooms[i].id,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
Image.asset(
|
|
|
|
'assets/private_chat_wallpaper.png',
|
|
|
|
width: 100,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
L10n.of(context).yourChatsAreBeingSynced,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
enum ChatListPopupMenuItemActions {
|
|
|
|
createGroup,
|
2021-08-01 08:05:40 +02:00
|
|
|
createSpace,
|
2021-04-14 14:09:46 +02:00
|
|
|
discover,
|
|
|
|
setStatus,
|
|
|
|
inviteContact,
|
|
|
|
settings,
|
|
|
|
}
|