2020-01-02 21:31:39 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-01-20 12:46:39 +00:00
|
|
|
import 'package:fluffychat/i18n/i18n.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
|
|
|
import 'package:fluffychat/views/chat_details.dart';
|
|
|
|
import 'package:fluffychat/views/chat_list.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2020-02-16 10:36:18 +00:00
|
|
|
import 'dialogs/simple_dialogs.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'matrix.dart';
|
|
|
|
|
2020-01-02 21:31:39 +00:00
|
|
|
class ChatSettingsPopupMenu extends StatefulWidget {
|
2020-01-01 18:10:13 +00:00
|
|
|
final Room room;
|
|
|
|
final bool displayChatDetails;
|
|
|
|
const ChatSettingsPopupMenu(this.room, this.displayChatDetails, {Key key})
|
|
|
|
: super(key: key);
|
|
|
|
|
2020-01-02 21:31:39 +00:00
|
|
|
@override
|
|
|
|
_ChatSettingsPopupMenuState createState() => _ChatSettingsPopupMenuState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ChatSettingsPopupMenuState extends State<ChatSettingsPopupMenu> {
|
|
|
|
StreamSubscription notificationChangeSub;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
notificationChangeSub?.cancel();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-01-02 21:31:39 +00:00
|
|
|
notificationChangeSub ??= Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.onUserEvent
|
|
|
|
.stream
|
|
|
|
.where((u) => u.type == 'account_data' && u.eventType == "m.push_rules")
|
|
|
|
.listen(
|
|
|
|
(u) => setState(() => null),
|
|
|
|
);
|
2020-01-01 18:10:13 +00:00
|
|
|
List<PopupMenuEntry<String>> items = <PopupMenuEntry<String>>[
|
2020-01-02 21:31:39 +00:00
|
|
|
widget.room.pushRuleState == PushRuleState.notify
|
2020-01-20 12:46:39 +00:00
|
|
|
? PopupMenuItem<String>(
|
2020-01-01 18:10:13 +00:00
|
|
|
value: "mute",
|
2020-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.of(context).muteChat),
|
2020-01-01 18:10:13 +00:00
|
|
|
)
|
2020-01-20 12:46:39 +00:00
|
|
|
: PopupMenuItem<String>(
|
2020-01-01 18:10:13 +00:00
|
|
|
value: "unmute",
|
2020-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.of(context).unmuteChat),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
2020-01-20 12:46:39 +00:00
|
|
|
PopupMenuItem<String>(
|
2020-01-01 18:10:13 +00:00
|
|
|
value: "leave",
|
2020-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.of(context).leave),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
];
|
2020-01-02 21:31:39 +00:00
|
|
|
if (widget.displayChatDetails) {
|
2020-01-01 18:10:13 +00:00
|
|
|
items.insert(
|
|
|
|
0,
|
2020-01-20 12:46:39 +00:00
|
|
|
PopupMenuItem<String>(
|
2020-01-01 18:10:13 +00:00
|
|
|
value: "details",
|
2020-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.of(context).chatDetails),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
);
|
2020-01-02 21:31:39 +00:00
|
|
|
}
|
2020-01-01 18:10:13 +00:00
|
|
|
return PopupMenuButton(
|
|
|
|
onSelected: (String choice) async {
|
|
|
|
switch (choice) {
|
|
|
|
case "leave":
|
2020-02-16 10:36:18 +00:00
|
|
|
bool confirmed = await SimpleDialogs(context).askConfirmation();
|
|
|
|
if (confirmed) {
|
|
|
|
final success = await Matrix.of(context)
|
|
|
|
.tryRequestWithLoadingDialog(widget.room.leave());
|
|
|
|
if (success != false) {
|
|
|
|
await Navigator.of(context).pushAndRemoveUntil(
|
|
|
|
AppRoute.defaultRoute(context, ChatListView()),
|
|
|
|
(Route r) => false);
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 18:10:13 +00:00
|
|
|
break;
|
|
|
|
case "mute":
|
|
|
|
await Matrix.of(context).tryRequestWithLoadingDialog(
|
2020-01-02 21:31:39 +00:00
|
|
|
widget.room.setPushRuleState(PushRuleState.mentions_only));
|
2020-01-01 18:10:13 +00:00
|
|
|
break;
|
|
|
|
case "unmute":
|
|
|
|
await Matrix.of(context).tryRequestWithLoadingDialog(
|
2020-01-02 21:31:39 +00:00
|
|
|
widget.room.setPushRuleState(PushRuleState.notify));
|
2020-01-01 18:10:13 +00:00
|
|
|
break;
|
|
|
|
case "details":
|
2020-01-02 21:31:39 +00:00
|
|
|
await Navigator.of(context).push(
|
2020-01-01 18:10:13 +00:00
|
|
|
AppRoute.defaultRoute(
|
|
|
|
context,
|
2020-01-02 21:31:39 +00:00
|
|
|
ChatDetails(widget.room),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
itemBuilder: (BuildContext context) => items,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|