2020-01-01 18:10:13 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:fluffychat/views/chat.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2020-02-16 08:16:47 +00:00
|
|
|
import 'package:flutter_slidable/flutter_slidable.dart';
|
2020-01-17 10:37:02 +00:00
|
|
|
import 'package:pedantic/pedantic.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-02-16 14:57:50 +00:00
|
|
|
import '../../i18n/i18n.dart';
|
|
|
|
import '../../utils/app_route.dart';
|
|
|
|
import '../../utils/date_time_extension.dart';
|
|
|
|
import '../../utils/event_extension.dart';
|
|
|
|
import '../../utils/room_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';
|
2020-02-16 14:57:50 +00:00
|
|
|
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 &&
|
|
|
|
await Matrix.of(context).tryRequestWithLoadingDialog(room.join()) ==
|
|
|
|
false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (room.membership == Membership.ban) {
|
2020-03-29 10:06:25 +00:00
|
|
|
Scaffold.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
|
|
|
content: Text(
|
|
|
|
I18n.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-01-20 12:46:39 +00:00
|
|
|
title: Text(I18n.of(context).archivedRoom),
|
|
|
|
content: Text(I18n.of(context).thisRoomHasBeenArchived),
|
2020-01-05 11:27:03 +00:00
|
|
|
actions: <Widget>[
|
|
|
|
FlatButton(
|
2020-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.of(context).close.toUpperCase(),
|
2020-01-05 11:27:03 +00:00
|
|
|
style: TextStyle(color: Colors.blueGrey)),
|
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
|
|
),
|
|
|
|
FlatButton(
|
2020-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.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-01-20 12:46:39 +00:00
|
|
|
child: Text(I18n.of(context).rejoin.toUpperCase(),
|
2020-01-05 11:27:03 +00:00
|
|
|
style: TextStyle(color: Colors.blue)),
|
|
|
|
onPressed: () async {
|
|
|
|
await Matrix.of(context)
|
|
|
|
.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) {
|
|
|
|
unawaited(room.sendEvent(Matrix.of(context).shareContent));
|
|
|
|
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-02-16 08:16:47 +00:00
|
|
|
Future<bool> archiveAction(BuildContext context) async {
|
|
|
|
{
|
2020-02-16 08:22:56 +00:00
|
|
|
if ([Membership.leave, Membership.ban].contains(room.membership)) {
|
|
|
|
final success =
|
|
|
|
await Matrix.of(context).tryRequestWithLoadingDialog(room.forget());
|
|
|
|
if (success != false) {
|
|
|
|
if (this.onForget != null) this.onForget();
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
2020-02-16 08:16:47 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-02-16 08:16:47 +00:00
|
|
|
return Slidable(
|
|
|
|
key: Key(room.id),
|
|
|
|
secondaryActions: <Widget>[
|
|
|
|
if ([Membership.join, Membership.invite].contains(room.membership))
|
|
|
|
IconSlideAction(
|
|
|
|
caption: I18n.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(
|
|
|
|
caption: I18n.of(context).delete,
|
|
|
|
color: Colors.red,
|
|
|
|
icon: Icons.delete_forever,
|
|
|
|
onTap: () => archiveAction(context),
|
|
|
|
),
|
2020-02-16 08:16:47 +00:00
|
|
|
],
|
|
|
|
actionPane: SlidableDrawerActionPane(),
|
|
|
|
dismissal: SlidableDismissal(
|
|
|
|
child: SlidableDrawerDismissal(),
|
|
|
|
onWillDismiss: (actionType) => archiveAction(context),
|
|
|
|
),
|
|
|
|
child: Material(
|
2020-02-16 14:57:50 +00:00
|
|
|
color: chatListItemColor(context, activeChat),
|
2020-02-16 08:16:47 +00:00
|
|
|
child: ListTile(
|
|
|
|
leading: Avatar(room.avatar, room.displayname),
|
|
|
|
title: Row(
|
|
|
|
children: <Widget>[
|
2020-03-29 10:06:25 +00:00
|
|
|
Expanded(
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
room.getLocalizedDisplayname(context),
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
2020-02-16 08:16:47 +00:00
|
|
|
),
|
2020-03-29 10:06:25 +00:00
|
|
|
SizedBox(width: 4),
|
|
|
|
room.pushRuleState == PushRuleState.notify
|
|
|
|
? Container()
|
|
|
|
: Icon(
|
|
|
|
Icons.notifications_off,
|
|
|
|
color: Colors.grey[400],
|
|
|
|
size: 16,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2020-02-16 08:16:47 +00:00
|
|
|
Text(
|
|
|
|
room.timeCreated.localizedTimeShort(context),
|
|
|
|
style: TextStyle(
|
|
|
|
color: Color(0xFF555555),
|
|
|
|
fontSize: 13,
|
|
|
|
),
|
2020-01-03 08:09:14 +00:00
|
|
|
),
|
2020-02-16 08:16:47 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
subtitle: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
Expanded(
|
|
|
|
child: room.membership == Membership.invite
|
|
|
|
? Text(
|
|
|
|
I18n.of(context).youAreInvitedToThisChat,
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Text(
|
|
|
|
room.lastEvent.getLocalizedBody(context,
|
2020-02-20 19:45:38 +00:00
|
|
|
withSenderNamePrefix: true, hideReply: true),
|
2020-02-16 08:16:47 +00:00
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
|
|
|
decoration: room.lastEvent.redacted
|
|
|
|
? TextDecoration.lineThrough
|
|
|
|
: null,
|
|
|
|
),
|
2020-01-05 11:27:03 +00:00
|
|
|
),
|
2020-02-16 08:16:47 +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
|
|
|
),
|
2020-02-16 08:16:47 +00:00
|
|
|
child: Center(
|
|
|
|
child: Text(
|
|
|
|
room.notificationCount.toString(),
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
2020-01-03 08:09:14 +00:00
|
|
|
),
|
2020-02-16 08:16:47 +00:00
|
|
|
)
|
|
|
|
: Text(" "),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
onTap: () => clickAction(context),
|
2020-01-02 22:38:46 +00:00
|
|
|
),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|