import 'dart:async'; import 'package:famedlysdk/famedlysdk.dart'; import 'package:fluffychat/i18n/i18n.dart'; 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'; import 'matrix.dart'; class ChatSettingsPopupMenu extends StatefulWidget { final Room room; final bool displayChatDetails; const ChatSettingsPopupMenu(this.room, this.displayChatDetails, {Key key}) : super(key: key); @override _ChatSettingsPopupMenuState createState() => _ChatSettingsPopupMenuState(); } class _ChatSettingsPopupMenuState extends State { StreamSubscription notificationChangeSub; @override void dispose() { notificationChangeSub?.cancel(); super.dispose(); } @override Widget build(BuildContext context) { notificationChangeSub ??= Matrix.of(context) .client .onUserEvent .stream .where((u) => u.type == 'account_data' && u.eventType == "m.push_rules") .listen( (u) => setState(() => null), ); List> items = >[ widget.room.pushRuleState == PushRuleState.notify ? PopupMenuItem( value: "mute", child: Text(I18n.of(context).muteChat), ) : PopupMenuItem( value: "unmute", child: Text(I18n.of(context).unmuteChat), ), PopupMenuItem( value: "leave", child: Text(I18n.of(context).leave), ), ]; if (widget.displayChatDetails) { items.insert( 0, PopupMenuItem( value: "details", child: Text(I18n.of(context).chatDetails), ), ); } return PopupMenuButton( onSelected: (String choice) async { switch (choice) { case "leave": await Matrix.of(context) .tryRequestWithLoadingDialog(widget.room.leave()); await Navigator.of(context).pushAndRemoveUntil( AppRoute.defaultRoute(context, ChatListView()), (Route r) => false); break; case "mute": await Matrix.of(context).tryRequestWithLoadingDialog( widget.room.setPushRuleState(PushRuleState.mentions_only)); break; case "unmute": await Matrix.of(context).tryRequestWithLoadingDialog( widget.room.setPushRuleState(PushRuleState.notify)); break; case "details": await Navigator.of(context).push( AppRoute.defaultRoute( context, ChatDetails(widget.room), ), ); break; } }, itemBuilder: (BuildContext context) => items, ); } }