Dismiss rooms in chat list with sliding

This commit is contained in:
Christian Pauly 2020-02-16 09:16:47 +01:00
parent 83b7b0cbea
commit be8f3a4a47
6 changed files with 157 additions and 73 deletions

View File

@ -0,0 +1,39 @@
import 'package:fluffychat/i18n/i18n.dart';
import 'package:flutter/material.dart';
class SimpleDialogs {
final BuildContext context;
const SimpleDialogs(this.context);
Future<bool> askConfirmation({
String titleText,
String confirmText,
String cancelText,
}) async {
bool confirmed = false;
await showDialog(
context: context,
builder: (c) => AlertDialog(
title: Text(I18n.of(context).areYouSure ?? titleText),
actions: <Widget>[
FlatButton(
child: Text(cancelText ?? I18n.of(context).close.toUpperCase(),
style: TextStyle(color: Colors.blueGrey)),
onPressed: () => Navigator.of(context).pop(),
),
FlatButton(
child: Text(
confirmText ?? I18n.of(context).confirm.toUpperCase(),
),
onPressed: () {
confirmed = true;
Navigator.of(context).pop();
},
),
],
),
);
return confirmed;
}
}

View File

@ -1,4 +1,5 @@
import 'package:famedlysdk/famedlysdk.dart'; import 'package:famedlysdk/famedlysdk.dart';
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
import 'package:fluffychat/i18n/i18n.dart'; import 'package:fluffychat/i18n/i18n.dart';
import 'package:fluffychat/utils/event_extension.dart'; import 'package:fluffychat/utils/event_extension.dart';
import 'package:fluffychat/utils/date_time_extension.dart'; import 'package:fluffychat/utils/date_time_extension.dart';
@ -7,6 +8,7 @@ import 'package:fluffychat/utils/room_extension.dart';
import 'package:fluffychat/views/chat.dart'; import 'package:fluffychat/views/chat.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_slidable/flutter_slidable.dart';
import 'package:toast/toast.dart'; import 'package:toast/toast.dart';
import 'package:pedantic/pedantic.dart'; import 'package:pedantic/pedantic.dart';
@ -84,84 +86,116 @@ class ChatListItem extends StatelessWidget {
} }
} }
Future<bool> archiveAction(BuildContext context) async {
{
final bool confirmed = await SimpleDialogs(context).askConfirmation();
if (!confirmed) {
return false;
}
final success =
await Matrix.of(context).tryRequestWithLoadingDialog(room.leave());
if (success == false) {
return false;
}
return true;
}
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Material( return Slidable(
color: activeChat ? Color(0xFFE8E8E8) : Colors.white, key: Key(room.id),
child: ListTile( secondaryActions: <Widget>[
leading: Avatar(room.avatar, room.displayname), if ([Membership.join, Membership.invite].contains(room.membership))
title: Row( IconSlideAction(
children: <Widget>[ caption: I18n.of(context).leave,
Expanded( color: Colors.red,
child: Text( icon: Icons.archive,
room.getLocalizedDisplayname(context), onTap: () => archiveAction(context),
maxLines: 1, ),
overflow: TextOverflow.ellipsis, ],
actionPane: SlidableDrawerActionPane(),
dismissal: SlidableDismissal(
child: SlidableDrawerDismissal(),
onWillDismiss: (actionType) => archiveAction(context),
),
child: Material(
color: activeChat ? Color(0xFFE8E8E8) : Colors.white,
child: ListTile(
leading: Avatar(room.avatar, room.displayname),
title: Row(
children: <Widget>[
Expanded(
child: Text(
room.getLocalizedDisplayname(context),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
), ),
), SizedBox(width: 16),
SizedBox(width: 16), room.pushRuleState == PushRuleState.notify
room.pushRuleState == PushRuleState.notify ? Container()
? Container() : Icon(
: Icon( Icons.notifications_off,
Icons.notifications_off, color: Colors.grey[400],
color: Colors.grey[400], size: 16,
size: 16, ),
), SizedBox(width: 4),
SizedBox(width: 4), Text(
Text( room.timeCreated.localizedTimeShort(context),
room.timeCreated.localizedTimeShort(context), style: TextStyle(
style: TextStyle( color: Color(0xFF555555),
color: Color(0xFF555555), fontSize: 13,
fontSize: 13, ),
), ),
), ],
], ),
), subtitle: Row(
subtitle: Row( mainAxisAlignment: MainAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[
children: <Widget>[ Expanded(
Expanded( child: room.membership == Membership.invite
child: room.membership == Membership.invite ? Text(
? Text( I18n.of(context).youAreInvitedToThisChat,
I18n.of(context).youAreInvitedToThisChat, style: TextStyle(
style: TextStyle( color: Theme.of(context).primaryColor,
color: Theme.of(context).primaryColor, ),
)
: Text(
room.lastEvent.getLocalizedBody(context,
withSenderNamePrefix: true, hideQuotes: true),
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
decoration: room.lastEvent.redacted
? TextDecoration.lineThrough
: null,
),
),
),
SizedBox(width: 8),
room.notificationCount > 0
? Container(
padding: EdgeInsets.symmetric(horizontal: 5),
height: 20,
decoration: BoxDecoration(
color: room.highlightCount > 0
? Colors.red
: Theme.of(context).primaryColor,
borderRadius: BorderRadius.circular(20),
),
child: Center(
child: Text(
room.notificationCount.toString(),
style: TextStyle(color: Colors.white),
),
), ),
) )
: Text( : Text(" "),
room.lastEvent.getLocalizedBody(context, ],
withSenderNamePrefix: true, hideQuotes: true), ),
maxLines: 1, onTap: () => clickAction(context),
overflow: TextOverflow.ellipsis,
style: TextStyle(
decoration: room.lastEvent.redacted
? TextDecoration.lineThrough
: null,
),
),
),
SizedBox(width: 8),
room.notificationCount > 0
? Container(
padding: EdgeInsets.symmetric(horizontal: 5),
height: 20,
decoration: BoxDecoration(
color: room.highlightCount > 0
? Colors.red
: Theme.of(context).primaryColor,
borderRadius: BorderRadius.circular(20),
),
child: Center(
child: Text(
room.notificationCount.toString(),
style: TextStyle(color: Colors.white),
),
),
)
: Text(" "),
],
), ),
onTap: () => clickAction(context),
), ),
); );
} }

View File

@ -74,6 +74,8 @@ class I18n {
String get areGuestsAllowedToJoin => String get areGuestsAllowedToJoin =>
Intl.message("Are guest users allowed to join"); Intl.message("Are guest users allowed to join");
String get areYouSure => Intl.message("Are you sure?");
String get authentication => Intl.message("Authentication"); String get authentication => Intl.message("Authentication");
String get avatarHasBeenChanged => Intl.message("Avatar has been changed"); String get avatarHasBeenChanged => Intl.message("Avatar has been changed");

View File

@ -18,7 +18,7 @@ import 'package:flutter_speed_dial/flutter_speed_dial.dart';
import 'package:toast/toast.dart'; import 'package:toast/toast.dart';
import 'package:uni_links/uni_links.dart'; import 'package:uni_links/uni_links.dart';
enum SelectMode { normal, multi_select, share } enum SelectMode { normal, share }
class ChatListView extends StatelessWidget { class ChatListView extends StatelessWidget {
@override @override
@ -86,7 +86,8 @@ class _ChatListState extends State<ChatList> {
} }
}, },
onError: (error) => Toast.show( onError: (error) => Toast.show(
I18n.of(context).oopsSomethingWentWrong + " " + error.toString(), context, I18n.of(context).oopsSomethingWentWrong + " " + error.toString(),
context,
duration: 5), duration: 5),
); );
} }

View File

@ -188,6 +188,13 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.3.1+1" version: "3.3.1+1"
flutter_slidable:
dependency: "direct main"
description:
name: flutter_slidable
url: "https://pub.dartlang.org"
source: hosted
version: "0.5.4"
flutter_speed_dial: flutter_speed_dial:
dependency: "direct main" dependency: "direct main"
description: description:

View File

@ -50,6 +50,7 @@ dependencies:
universal_html: ^1.1.12 universal_html: ^1.1.12
uni_links: ^0.2.0 uni_links: ^0.2.0
flutter_svg: ^0.17.1 flutter_svg: ^0.17.1
flutter_slidable: ^0.5.4
intl: ^0.16.0 intl: ^0.16.0
intl_translation: ^0.17.9 intl_translation: ^0.17.9