FurryChat/lib/components/list_items/chat_list_item.dart

229 lines
7.7 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
import 'package:fluffychat/views/chat.dart';
import 'package:flutter/material.dart';
import 'package:flutter_slidable/flutter_slidable.dart';
2020-05-13 08:45:50 +00:00
import 'package:bot_toast/bot_toast.dart';
2020-01-17 10:37:02 +00:00
import 'package:pedantic/pedantic.dart';
2020-01-01 18:10:13 +00:00
2020-05-07 05:52:40 +00:00
import '../../l10n/l10n.dart';
import '../../utils/app_route.dart';
import '../../utils/date_time_extension.dart';
import '../../views/chat.dart';
2020-02-16 19:11:39 +00:00
import '../theme_switcher.dart';
2020-01-01 18:10:13 +00:00
import '../avatar.dart';
import '../dialogs/simple_dialogs.dart';
2020-01-05 11:27:03 +00:00
import '../matrix.dart';
2020-01-01 18:10:13 +00:00
class ChatListItem extends StatelessWidget {
final Room room;
final bool activeChat;
2020-01-05 11:27:03 +00:00
final Function onForget;
2020-01-01 18:10:13 +00:00
2020-01-05 11:27:03 +00:00
const ChatListItem(this.room, {this.activeChat = false, this.onForget});
void clickAction(BuildContext context) async {
if (!activeChat) {
if (room.membership == Membership.invite &&
2020-04-27 11:36:39 +00:00
await SimpleDialogs(context)
.tryRequestWithLoadingDialog(room.join()) ==
2020-01-05 11:27:03 +00:00
false) {
return;
}
if (room.membership == Membership.ban) {
2020-05-13 08:45:50 +00:00
BotToast.showText(text: L10n.of(context).youHaveBeenBannedFromThisChat);
2020-01-05 11:27:03 +00:00
return;
}
if (room.membership == Membership.leave) {
await showDialog(
context: context,
builder: (BuildContext context) => AlertDialog(
2020-05-07 05:52:40 +00:00
title: Text(L10n.of(context).archivedRoom),
content: Text(L10n.of(context).thisRoomHasBeenArchived),
2020-01-05 11:27:03 +00:00
actions: <Widget>[
FlatButton(
2020-05-07 05:52:40 +00:00
child: Text(L10n.of(context).close.toUpperCase(),
2020-01-05 11:27:03 +00:00
style: TextStyle(color: Colors.blueGrey)),
onPressed: () => Navigator.of(context).pop(),
),
FlatButton(
2020-05-07 05:52:40 +00:00
child: Text(L10n.of(context).delete.toUpperCase(),
2020-01-05 11:27:03 +00:00
style: TextStyle(color: Colors.red)),
onPressed: () async {
2020-02-16 08:24:50 +00:00
await archiveAction(context);
2020-01-05 11:27:03 +00:00
await Navigator.of(context).pop();
},
),
FlatButton(
2020-05-07 05:52:40 +00:00
child: Text(L10n.of(context).rejoin.toUpperCase(),
2020-01-05 11:27:03 +00:00
style: TextStyle(color: Colors.blue)),
onPressed: () async {
2020-04-27 11:36:39 +00:00
await SimpleDialogs(context)
2020-01-05 11:27:03 +00:00
.tryRequestWithLoadingDialog(room.join());
await Navigator.of(context).pop();
},
),
],
),
);
}
if (room.membership == Membership.join) {
2020-01-17 10:37:02 +00:00
if (Matrix.of(context).shareContent != null) {
2020-05-13 13:58:59 +00:00
if (Matrix.of(context).shareContent['msgtype'] ==
'chat.fluffy.shared_file') {
2020-04-27 11:36:39 +00:00
await SimpleDialogs(context).tryRequestWithErrorToast(
2020-04-02 12:05:32 +00:00
room.sendFileEvent(
2020-05-13 13:58:59 +00:00
Matrix.of(context).shareContent['file'],
2020-04-02 12:05:32 +00:00
),
);
} else {
unawaited(room.sendEvent(Matrix.of(context).shareContent));
}
2020-01-17 10:37:02 +00:00
Matrix.of(context).shareContent = null;
}
2020-01-05 11:27:03 +00:00
await Navigator.pushAndRemoveUntil(
context,
2020-01-27 09:14:38 +00:00
AppRoute.defaultRoute(context, ChatView(room.id)),
2020-01-05 11:27:03 +00:00
(r) => r.isFirst,
);
}
}
}
2020-01-01 18:10:13 +00:00
Future<bool> archiveAction(BuildContext context) async {
{
2020-02-16 08:22:56 +00:00
if ([Membership.leave, Membership.ban].contains(room.membership)) {
2020-04-27 11:36:39 +00:00
final success = await SimpleDialogs(context)
.tryRequestWithLoadingDialog(room.forget());
2020-02-16 08:22:56 +00:00
if (success != false) {
2020-05-13 13:58:59 +00:00
if (onForget != null) onForget();
2020-02-16 08:22:56 +00:00
}
return success;
}
2020-05-13 13:58:59 +00:00
final confirmed = await SimpleDialogs(context).askConfirmation();
if (!confirmed) {
return false;
}
2020-04-27 11:36:39 +00:00
final success = await SimpleDialogs(context)
.tryRequestWithLoadingDialog(room.leave());
if (success == false) {
return false;
}
return true;
}
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
return Slidable(
key: Key(room.id),
secondaryActions: <Widget>[
if ([Membership.join, Membership.invite].contains(room.membership))
IconSlideAction(
2020-05-07 05:52:40 +00:00
caption: L10n.of(context).leave,
color: Colors.red,
icon: Icons.archive,
onTap: () => archiveAction(context),
),
2020-02-16 08:22:56 +00:00
if ([Membership.leave, Membership.ban].contains(room.membership))
IconSlideAction(
2020-05-07 05:52:40 +00:00
caption: L10n.of(context).delete,
2020-02-16 08:22:56 +00:00
color: Colors.red,
icon: Icons.delete_forever,
onTap: () => archiveAction(context),
),
],
actionPane: SlidableDrawerActionPane(),
dismissal: SlidableDismissal(
child: SlidableDrawerDismissal(),
onWillDismiss: (actionType) => archiveAction(context),
),
child: Material(
color: chatListItemColor(context, activeChat),
child: ListTile(
leading: Avatar(room.avatar, room.displayname),
title: Row(
children: <Widget>[
2020-03-29 10:06:25 +00:00
Expanded(
2020-05-09 11:03:12 +00:00
child: Text(
room.getLocalizedDisplayname(L10n.of(context)),
maxLines: 1,
overflow: TextOverflow.ellipsis,
softWrap: false,
2020-03-29 10:06:25 +00:00
),
),
2020-05-09 11:03:12 +00:00
SizedBox(width: 4),
room.pushRuleState == PushRuleState.notify
? Container()
: Icon(
Icons.notifications_off,
color: Colors.grey[400],
size: 16,
),
Text(
room.timeCreated.localizedTimeShort(context),
style: TextStyle(
color: Color(0xFF555555),
fontSize: 13,
),
2020-01-03 08:09:14 +00:00
),
],
),
subtitle: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Expanded(
child: room.membership == Membership.invite
? Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).youAreInvitedToThisChat,
style: TextStyle(
color: Theme.of(context).primaryColor,
),
2020-05-09 11:03:12 +00:00
softWrap: false,
)
: Text(
2020-05-08 10:04:29 +00:00
room.lastEvent.getLocalizedBody(
L10n.of(context),
withSenderNamePrefix: !room.isDirectChat,
hideReply: true,
),
2020-05-09 11:03:12 +00:00
softWrap: false,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
decoration: room.lastEvent.redacted
? TextDecoration.lineThrough
: null,
),
2020-01-05 11:27:03 +00:00
),
),
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),
2020-01-19 14:07:42 +00:00
),
child: Center(
child: Text(
room.notificationCount.toString(),
style: TextStyle(color: Colors.white),
),
2020-01-03 08:09:14 +00:00
),
)
2020-05-13 13:58:59 +00:00
: Text(' '),
],
),
onTap: () => clickAction(context),
2020-01-02 22:38:46 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}