FurryChat/lib/components/list_items/chat_list_item.dart

167 lines
5.6 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-01-20 12:46:39 +00:00
import 'package:fluffychat/i18n/i18n.dart';
2020-01-19 14:07:42 +00:00
import 'package:fluffychat/utils/event_extension.dart';
2020-01-09 11:16:34 +00:00
import 'package:fluffychat/utils/date_time_extension.dart';
2020-01-01 18:10:13 +00:00
import 'package:fluffychat/utils/app_route.dart';
2020-01-19 14:07:42 +00:00
import 'package:fluffychat/utils/room_extension.dart';
2020-01-01 18:10:13 +00:00
import 'package:fluffychat/views/chat.dart';
import 'package:flutter/material.dart';
2020-01-05 11:27:03 +00:00
import 'package:toast/toast.dart';
2020-01-17 10:37:02 +00:00
import 'package:pedantic/pedantic.dart';
2020-01-01 18:10:13 +00:00
import '../avatar.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-01-20 12:46:39 +00:00
Toast.show(I18n.of(context).youHaveBeenBannedFromThisChat, context,
duration: 5);
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 {
await Matrix.of(context)
.tryRequestWithLoadingDialog(room.forget());
await Navigator.of(context).pop();
if (this.onForget != null) this.onForget();
},
),
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,
AppRoute.defaultRoute(context, Chat(room.id)),
(r) => r.isFirst,
);
}
}
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
return Material(
color: activeChat ? Color(0xFFE8E8E8) : Colors.white,
child: ListTile(
2020-01-18 12:22:22 +00:00
leading: Avatar(room.avatar, room.displayname),
2020-01-03 08:09:14 +00:00
title: Row(
children: <Widget>[
Expanded(
child: Text(
2020-01-19 14:07:42 +00:00
room.getLocalizedDisplayname(context),
2020-01-03 08:09:14 +00:00
maxLines: 1,
2020-01-03 11:04:24 +00:00
overflow: TextOverflow.ellipsis,
),
),
SizedBox(width: 16),
Text(
2020-01-09 11:16:34 +00:00
room.timeCreated.localizedTimeShort(context),
2020-01-03 11:04:24 +00:00
style: TextStyle(
color: Color(0xFF555555),
2020-01-03 13:44:39 +00:00
fontSize: 13,
2020-01-03 08:09:14 +00:00
),
),
],
),
subtitle: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
2020-01-05 11:27:03 +00:00
Expanded(
child: room.membership == Membership.invite
? Text(
2020-01-20 12:46:39 +00:00
I18n.of(context).youAreInvitedToThisChat,
2020-01-05 11:27:03 +00:00
style: TextStyle(
color: Theme.of(context).primaryColor,
),
)
2020-01-19 14:07:42 +00:00
: Text(
room.lastEvent.getLocalizedBody(context,
withSenderNamePrefix: true, hideQuotes: true),
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
decoration: room.lastEvent.redacted
? TextDecoration.lineThrough
: null,
),
2020-01-05 11:27:03 +00:00
),
),
2020-01-03 08:09:14 +00:00
SizedBox(width: 8),
room.pushRuleState == PushRuleState.notify
? Container()
: Icon(
Icons.notifications_off,
color: Colors.grey,
2020-01-03 13:44:39 +00:00
size: 16,
2020-01-03 08:09:14 +00:00
),
room.notificationCount > 0
? Container(
2020-01-03 13:44:39 +00:00
padding: EdgeInsets.symmetric(horizontal: 5),
2020-01-03 08:09:14 +00:00
height: 20,
decoration: BoxDecoration(
color: room.highlightCount > 0
? Colors.red
2020-01-03 10:57:00 +00:00
: Theme.of(context).primaryColor,
2020-01-03 08:09:14 +00:00
borderRadius: BorderRadius.circular(20),
),
child: Center(
child: Text(
room.notificationCount.toString(),
style: TextStyle(color: Colors.white),
),
),
)
: Text(" "),
],
2020-01-02 22:38:46 +00:00
),
2020-01-05 11:27:03 +00:00
onTap: () => clickAction(context),
2020-01-01 18:10:13 +00:00
),
);
}
}