2020-01-01 19:10:13 +01:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-01-20 13:46:39 +01:00
|
|
|
import 'package:fluffychat/i18n/i18n.dart';
|
2020-01-19 15:07:42 +01:00
|
|
|
import 'package:fluffychat/utils/event_extension.dart';
|
2020-01-09 12:16:34 +01:00
|
|
|
import 'package:fluffychat/utils/date_time_extension.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
2020-01-19 15:07:42 +01:00
|
|
|
import 'package:fluffychat/utils/room_extension.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:fluffychat/views/chat.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2020-01-05 12:27:03 +01:00
|
|
|
import 'package:toast/toast.dart';
|
2020-01-17 11:37:02 +01:00
|
|
|
import 'package:pedantic/pedantic.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
import '../avatar.dart';
|
2020-01-05 12:27:03 +01:00
|
|
|
import '../matrix.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
class ChatListItem extends StatelessWidget {
|
|
|
|
final Room room;
|
|
|
|
final bool activeChat;
|
2020-01-05 12:27:03 +01:00
|
|
|
final Function onForget;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2020-01-05 12:27:03 +01: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 13:46:39 +01:00
|
|
|
Toast.show(I18n.of(context).youHaveBeenBannedFromThisChat, context,
|
|
|
|
duration: 5);
|
2020-01-05 12:27:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (room.membership == Membership.leave) {
|
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) => AlertDialog(
|
2020-01-20 13:46:39 +01:00
|
|
|
title: Text(I18n.of(context).archivedRoom),
|
|
|
|
content: Text(I18n.of(context).thisRoomHasBeenArchived),
|
2020-01-05 12:27:03 +01:00
|
|
|
actions: <Widget>[
|
|
|
|
FlatButton(
|
2020-01-20 13:46:39 +01:00
|
|
|
child: Text(I18n.of(context).close.toUpperCase(),
|
2020-01-05 12:27:03 +01:00
|
|
|
style: TextStyle(color: Colors.blueGrey)),
|
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
|
|
),
|
|
|
|
FlatButton(
|
2020-01-20 13:46:39 +01:00
|
|
|
child: Text(I18n.of(context).delete.toUpperCase(),
|
2020-01-05 12:27:03 +01: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 13:46:39 +01:00
|
|
|
child: Text(I18n.of(context).rejoin.toUpperCase(),
|
2020-01-05 12:27:03 +01: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 11:37:02 +01:00
|
|
|
if (Matrix.of(context).shareContent != null) {
|
|
|
|
unawaited(room.sendEvent(Matrix.of(context).shareContent));
|
|
|
|
Matrix.of(context).shareContent = null;
|
|
|
|
}
|
2020-01-05 12:27:03 +01:00
|
|
|
await Navigator.pushAndRemoveUntil(
|
|
|
|
context,
|
2020-01-27 10:14:38 +01:00
|
|
|
AppRoute.defaultRoute(context, ChatView(room.id)),
|
2020-01-05 12:27:03 +01:00
|
|
|
(r) => r.isFirst,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Material(
|
|
|
|
color: activeChat ? Color(0xFFE8E8E8) : Colors.white,
|
|
|
|
child: ListTile(
|
2020-01-18 13:22:22 +01:00
|
|
|
leading: Avatar(room.avatar, room.displayname),
|
2020-01-03 09:09:14 +01:00
|
|
|
title: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
2020-01-19 15:07:42 +01:00
|
|
|
room.getLocalizedDisplayname(context),
|
2020-01-03 09:09:14 +01:00
|
|
|
maxLines: 1,
|
2020-01-03 12:04:24 +01:00
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(width: 16),
|
|
|
|
Text(
|
2020-01-09 12:16:34 +01:00
|
|
|
room.timeCreated.localizedTimeShort(context),
|
2020-01-03 12:04:24 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: Color(0xFF555555),
|
2020-01-03 14:44:39 +01:00
|
|
|
fontSize: 13,
|
2020-01-03 09:09:14 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
subtitle: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
2020-01-05 12:27:03 +01:00
|
|
|
Expanded(
|
|
|
|
child: room.membership == Membership.invite
|
|
|
|
? Text(
|
2020-01-20 13:46:39 +01:00
|
|
|
I18n.of(context).youAreInvitedToThisChat,
|
2020-01-05 12:27:03 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
)
|
2020-01-19 15:07:42 +01: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 12:27:03 +01:00
|
|
|
),
|
|
|
|
),
|
2020-01-03 09:09:14 +01:00
|
|
|
SizedBox(width: 8),
|
|
|
|
room.pushRuleState == PushRuleState.notify
|
|
|
|
? Container()
|
|
|
|
: Icon(
|
|
|
|
Icons.notifications_off,
|
|
|
|
color: Colors.grey,
|
2020-01-03 14:44:39 +01:00
|
|
|
size: 16,
|
2020-01-03 09:09:14 +01:00
|
|
|
),
|
|
|
|
room.notificationCount > 0
|
|
|
|
? Container(
|
2020-01-03 14:44:39 +01:00
|
|
|
padding: EdgeInsets.symmetric(horizontal: 5),
|
2020-01-03 09:09:14 +01:00
|
|
|
height: 20,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: room.highlightCount > 0
|
|
|
|
? Colors.red
|
2020-01-03 11:57:00 +01:00
|
|
|
: Theme.of(context).primaryColor,
|
2020-01-03 09:09:14 +01:00
|
|
|
borderRadius: BorderRadius.circular(20),
|
|
|
|
),
|
|
|
|
child: Center(
|
|
|
|
child: Text(
|
|
|
|
room.notificationCount.toString(),
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Text(" "),
|
|
|
|
],
|
2020-01-02 23:38:46 +01:00
|
|
|
),
|
2020-01-05 12:27:03 +01:00
|
|
|
onTap: () => clickAction(context),
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|