FurryChat/lib/components/list_items/chat_list_item.dart

282 lines
10 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-09-04 10:56:25 +00:00
import '../dialogs/send_file_dialog.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-09-04 10:56:25 +00:00
await showDialog(
context: context,
builder: (context) => SendFileDialog(
file: Matrix.of(context).shareContent['file'],
room: room,
));
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
2020-08-03 11:08:44 +00:00
Future<void> _toggleFavouriteRoom(BuildContext context) =>
SimpleDialogs(context).tryRequestWithLoadingDialog(
room.setFavourite(!room.isFavourite),
);
Future<void> _toggleMuted(BuildContext context) =>
SimpleDialogs(context).tryRequestWithLoadingDialog(
room.setPushRuleState(room.pushRuleState == PushRuleState.notify
? PushRuleState.mentions_only
: PushRuleState.notify),
);
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) {
2020-08-13 11:02:58 +00:00
final isMuted = room.pushRuleState != PushRuleState.notify;
2020-08-03 11:08:44 +00:00
final slideableKey = GlobalKey();
return Slidable(
2020-08-03 11:08:44 +00:00
key: slideableKey,
secondaryActions: <Widget>[
2020-08-03 11:08:44 +00:00
if ([Membership.join, Membership.invite].contains(room.membership))
IconSlideAction(
caption: isMuted
? L10n.of(context).unmuteChat
: L10n.of(context).muteChat,
color: Colors.blueGrey,
icon:
isMuted ? Icons.notifications_active : Icons.notifications_off,
onTap: () => _toggleMuted(context),
),
if ([Membership.join, Membership.invite].contains(room.membership))
IconSlideAction(
caption: room.isFavourite
? L10n.of(context).unpin
: L10n.of(context).pin,
color: Colors.blue,
icon: room.isFavourite ? Icons.favorite_border : Icons.favorite,
onTap: () => _toggleFavouriteRoom(context),
),
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(),
2020-08-03 11:08:44 +00:00
child: Center(
child: Material(
color: chatListItemColor(context, activeChat),
child: ListTile(
onLongPress: () => (slideableKey.currentState as SlidableState)
.open(actionType: SlideActionType.secondary),
leading: Avatar(room.avatar, room.displayname),
title: Row(
children: <Widget>[
Expanded(
child: Text(
room.getLocalizedDisplayname(L10n.of(context)),
maxLines: 1,
2020-08-15 06:05:49 +00:00
overflow: TextOverflow.ellipsis,
2020-08-03 11:08:44 +00:00
softWrap: false,
),
2020-03-29 10:06:25 +00:00
),
2020-08-03 11:08:44 +00:00
room.isFavourite
? Padding(
padding: const EdgeInsets.only(left: 4.0),
child: Icon(
Icons.favorite,
color: Colors.grey[400],
size: 16,
),
)
: Container(),
isMuted
? Padding(
padding: const EdgeInsets.only(left: 4.0),
child: Icon(
Icons.notifications_off,
color: Colors.grey[400],
size: 16,
),
)
: Container(),
Padding(
padding: const EdgeInsets.only(left: 4.0),
child: Text(
room.timeCreated.localizedTimeShort(context),
style: TextStyle(
color: Color(0xFF555555),
fontSize: 13,
2020-05-09 11:03:12 +00:00
),
2020-08-03 11:08:44 +00:00
),
),
2020-08-03 11:08:44 +00:00
],
),
subtitle: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Expanded(
child: room.membership == Membership.invite
? Text(
L10n.of(context).youAreInvitedToThisChat,
style: TextStyle(
color: Theme.of(context).primaryColor,
),
softWrap: false,
)
: Text(
room.lastEvent?.getLocalizedBody(
L10n.of(context),
2020-09-21 17:21:24 +00:00
withSenderNamePrefix: !room.isDirectChat ||
room.lastEvent.senderId ==
room.client.userID,
2020-08-03 11:08:44 +00:00
hideReply: true,
) ??
'',
softWrap: false,
maxLines: 1,
2020-08-15 06:05:49 +00:00
overflow: TextOverflow.ellipsis,
2020-08-03 11:08:44 +00:00
style: TextStyle(
decoration: room.lastEvent?.redacted == true
? TextDecoration.lineThrough
: null,
),
),
2020-08-03 11:08:44 +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-08-03 11:08:44 +00:00
child: Center(
child: Text(
room.notificationCount.toString(),
style: TextStyle(color: Colors.white),
),
),
2020-08-03 11:08:44 +00:00
)
: Text(' '),
],
),
onTap: () => clickAction(context),
),
2020-01-02 22:38:46 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}