fluffychat/lib/widgets/chat_settings_popup_menu.dart

131 lines
3.8 KiB
Dart
Raw Normal View History

2020-01-02 22:31:39 +01:00
import 'dart:async';
2020-11-14 10:08:13 +01:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-05-23 13:11:55 +02:00
import 'package:matrix/matrix.dart';
2020-01-01 19:10:13 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-01 19:10:13 +01:00
2020-12-25 09:58:34 +01:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2021-05-23 13:11:55 +02:00
import 'package:vrouter/vrouter.dart';
2020-01-01 19:10:13 +01:00
import 'matrix.dart';
2020-01-02 22:31:39 +01:00
class ChatSettingsPopupMenu extends StatefulWidget {
2020-01-01 19:10:13 +01:00
final Room room;
final bool displayChatDetails;
const ChatSettingsPopupMenu(this.room, this.displayChatDetails, {Key key})
: super(key: key);
2020-01-02 22:31:39 +01:00
@override
_ChatSettingsPopupMenuState createState() => _ChatSettingsPopupMenuState();
}
class _ChatSettingsPopupMenuState extends State<ChatSettingsPopupMenu> {
StreamSubscription notificationChangeSub;
@override
void dispose() {
notificationChangeSub?.cancel();
super.dispose();
}
2020-01-01 19:10:13 +01:00
@override
Widget build(BuildContext context) {
2020-01-02 22:31:39 +01:00
notificationChangeSub ??= Matrix.of(context)
.client
2020-06-10 10:07:01 +02:00
.onAccountData
2020-01-02 22:31:39 +01:00
.stream
2020-06-10 10:07:01 +02:00
.where((u) => u.type == 'm.push_rules')
2020-01-02 22:31:39 +01:00
.listen(
(u) => setState(() => null),
);
2021-04-14 10:37:15 +02:00
final items = <PopupMenuEntry<String>>[
2020-01-02 22:31:39 +01:00
widget.room.pushRuleState == PushRuleState.notify
2020-01-20 13:46:39 +01:00
? PopupMenuItem<String>(
2020-05-13 15:58:59 +02:00
value: 'mute',
2021-08-29 16:52:42 +02:00
child: Row(
children: [
Icon(Icons.notifications_off_outlined),
SizedBox(width: 12),
Text(L10n.of(context).muteChat),
],
),
2020-01-01 19:10:13 +01:00
)
2020-01-20 13:46:39 +01:00
: PopupMenuItem<String>(
2020-05-13 15:58:59 +02:00
value: 'unmute',
2021-08-29 16:52:42 +02:00
child: Row(
children: [
Icon(Icons.notifications_on_outlined),
SizedBox(width: 12),
Text(L10n.of(context).unmuteChat),
],
),
2020-01-01 19:10:13 +01:00
),
2020-01-20 13:46:39 +01:00
PopupMenuItem<String>(
2020-05-13 15:58:59 +02:00
value: 'leave',
2021-08-29 16:52:42 +02:00
child: Row(
children: [
Icon(Icons.delete_outlined),
SizedBox(width: 12),
Text(L10n.of(context).leave),
],
),
2020-01-01 19:10:13 +01:00
),
];
2020-01-02 22:31:39 +01:00
if (widget.displayChatDetails) {
2020-01-01 19:10:13 +01:00
items.insert(
0,
2020-01-20 13:46:39 +01:00
PopupMenuItem<String>(
2020-05-13 15:58:59 +02:00
value: 'details',
2021-08-29 16:52:42 +02:00
child: Row(
children: [
Icon(Icons.info_outline_rounded),
SizedBox(width: 12),
Text(L10n.of(context).chatDetails),
],
),
2020-01-01 19:10:13 +01:00
),
);
2020-01-02 22:31:39 +01:00
}
2020-01-01 19:10:13 +01:00
return PopupMenuButton(
onSelected: (String choice) async {
switch (choice) {
2020-05-13 15:58:59 +02:00
case 'leave':
2021-04-14 10:37:15 +02:00
final confirmed = await showOkCancelAlertDialog(
2021-05-23 15:02:36 +02:00
useRootNavigator: false,
2020-11-14 10:08:13 +01:00
context: context,
title: L10n.of(context).areYouSure,
2021-02-18 14:23:22 +01:00
okLabel: L10n.of(context).ok,
cancelLabel: L10n.of(context).cancel,
2020-11-14 10:08:13 +01:00
);
if (confirmed == OkCancelResult.ok) {
2020-12-25 09:58:34 +01:00
final success = await showFutureLoadingDialog(
context: context, future: () => widget.room.leave());
if (success.error == null) {
2021-07-08 17:10:20 +02:00
VRouter.of(context).to('/rooms');
2020-02-16 11:36:18 +01:00
}
}
2020-01-01 19:10:13 +01:00
break;
2020-05-13 15:58:59 +02:00
case 'mute':
2020-12-25 09:58:34 +01:00
await showFutureLoadingDialog(
context: context,
future: () =>
2021-04-21 14:19:54 +02:00
widget.room.setPushRuleState(PushRuleState.mentionsOnly));
2020-01-01 19:10:13 +01:00
break;
2020-05-13 15:58:59 +02:00
case 'unmute':
2020-12-25 09:58:34 +01:00
await showFutureLoadingDialog(
context: context,
future: () =>
widget.room.setPushRuleState(PushRuleState.notify));
2020-01-01 19:10:13 +01:00
break;
2020-05-13 15:58:59 +02:00
case 'details':
2021-08-15 13:26:16 +02:00
VRouter.of(context)
.toSegments(['rooms', widget.room.id, 'details']);
2020-01-01 19:10:13 +01:00
break;
}
},
itemBuilder: (BuildContext context) => items,
);
}
}