2020-11-14 10:08:13 +01:00
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2021-06-26 12:06:09 +02:00
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
|
2021-06-18 10:29:48 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2021-01-15 19:41:55 +01:00
|
|
|
import 'package:fluffychat/config/themes.dart';
|
2021-05-22 09:24:39 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/event_extension.dart';
|
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
|
2020-11-21 21:53:11 +01:00
|
|
|
import 'package:fluffychat/utils/room_status_extension.dart';
|
2021-04-03 13:09:20 +02:00
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2020-01-17 11:37:02 +01:00
|
|
|
import 'package:pedantic/pedantic.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-05-22 08:53:52 +02:00
|
|
|
import '../../utils/date_time_extension.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import '../avatar.dart';
|
2021-05-22 08:57:49 +02:00
|
|
|
import '../../pages/send_file_dialog.dart';
|
2020-12-25 09:58:34 +01:00
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
2020-01-05 12:27:03 +01:00
|
|
|
import '../matrix.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2020-11-14 14:04:36 +01:00
|
|
|
enum ArchivedRoomAction { delete, rejoin }
|
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
class ChatListItem extends StatelessWidget {
|
|
|
|
final Room room;
|
|
|
|
final bool activeChat;
|
2020-10-02 15:50:59 +02:00
|
|
|
final bool selected;
|
2020-01-05 12:27:03 +01:00
|
|
|
final Function onForget;
|
2020-10-02 15:50:59 +02:00
|
|
|
final Function onTap;
|
|
|
|
final Function onLongPress;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2020-10-02 15:50:59 +02:00
|
|
|
const ChatListItem(this.room,
|
|
|
|
{this.activeChat = false,
|
|
|
|
this.selected = false,
|
|
|
|
this.onTap,
|
|
|
|
this.onLongPress,
|
|
|
|
this.onForget});
|
2020-01-05 12:27:03 +01:00
|
|
|
|
|
|
|
void clickAction(BuildContext context) async {
|
2020-10-02 15:50:59 +02:00
|
|
|
if (onTap != null) return onTap();
|
2020-01-05 12:27:03 +01:00
|
|
|
if (!activeChat) {
|
|
|
|
if (room.membership == Membership.invite &&
|
2020-12-25 09:58:34 +01:00
|
|
|
(await showFutureLoadingDialog(
|
|
|
|
context: context, future: () => room.join()))
|
|
|
|
.error !=
|
|
|
|
null) {
|
2020-01-05 12:27:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (room.membership == Membership.ban) {
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2021-04-03 13:09:20 +02:00
|
|
|
SnackBar(
|
|
|
|
content: Text(L10n.of(context).youHaveBeenBannedFromThisChat),
|
|
|
|
),
|
|
|
|
);
|
2020-01-05 12:27:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (room.membership == Membership.leave) {
|
2020-11-14 14:04:36 +01:00
|
|
|
final action = await showModalActionSheet<ArchivedRoomAction>(
|
2020-01-05 12:27:03 +01:00
|
|
|
context: context,
|
2020-11-14 14:04:36 +01:00
|
|
|
title: L10n.of(context).archivedRoom,
|
|
|
|
message: L10n.of(context).thisRoomHasBeenArchived,
|
|
|
|
actions: [
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context).rejoin,
|
|
|
|
key: ArchivedRoomAction.rejoin,
|
|
|
|
),
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context).delete,
|
|
|
|
key: ArchivedRoomAction.delete,
|
|
|
|
isDestructiveAction: true,
|
|
|
|
),
|
|
|
|
],
|
2020-01-05 12:27:03 +01:00
|
|
|
);
|
2020-11-14 14:04:36 +01:00
|
|
|
if (action != null) {
|
|
|
|
switch (action) {
|
|
|
|
case ArchivedRoomAction.delete:
|
|
|
|
await archiveAction(context);
|
|
|
|
break;
|
|
|
|
case ArchivedRoomAction.rejoin:
|
2020-12-25 09:58:34 +01:00
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.join(),
|
|
|
|
);
|
2020-11-14 14:04:36 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-01-05 12:27:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (room.membership == Membership.join) {
|
2020-01-17 11:37:02 +01:00
|
|
|
if (Matrix.of(context).shareContent != null) {
|
2020-05-13 15:58:59 +02:00
|
|
|
if (Matrix.of(context).shareContent['msgtype'] ==
|
|
|
|
'chat.fluffy.shared_file') {
|
2020-09-04 12:56:25 +02:00
|
|
|
await showDialog(
|
2021-02-24 12:17:23 +01:00
|
|
|
context: context,
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-02-24 12:17:23 +01:00
|
|
|
builder: (c) => SendFileDialog(
|
|
|
|
file: Matrix.of(context).shareContent['file'],
|
|
|
|
room: room,
|
|
|
|
),
|
|
|
|
);
|
2020-04-02 14:05:32 +02:00
|
|
|
} else {
|
|
|
|
unawaited(room.sendEvent(Matrix.of(context).shareContent));
|
|
|
|
}
|
2020-01-17 11:37:02 +01:00
|
|
|
Matrix.of(context).shareContent = null;
|
|
|
|
}
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms/${room.id}');
|
2020-01-05 12:27:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2020-10-02 15:50:59 +02:00
|
|
|
Future<void> archiveAction(BuildContext context) async {
|
2020-02-16 09:16:47 +01:00
|
|
|
{
|
2020-02-16 09:22:56 +01:00
|
|
|
if ([Membership.leave, Membership.ban].contains(room.membership)) {
|
2020-12-25 09:58:34 +01:00
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.forget(),
|
|
|
|
);
|
|
|
|
if (success.error == null) {
|
2020-05-13 15:58:59 +02:00
|
|
|
if (onForget != null) onForget();
|
2020-02-16 09:22:56 +01:00
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
2020-11-14 10:08:13 +01:00
|
|
|
final confirmed = await showOkCancelAlertDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2020-11-14 10:08:13 +01:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).areYouSure,
|
2021-02-18 14:23:22 +01:00
|
|
|
okLabel: L10n.of(context).yes,
|
|
|
|
cancelLabel: L10n.of(context).no,
|
2020-11-14 10:08:13 +01:00
|
|
|
);
|
|
|
|
if (confirmed == OkCancelResult.cancel) return;
|
2020-12-25 09:58:34 +01:00
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context, future: () => room.leave());
|
2020-10-02 15:50:59 +02:00
|
|
|
return;
|
2020-02-16 09:16:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-08-13 13:02:58 +02:00
|
|
|
final isMuted = room.pushRuleState != PushRuleState.notify;
|
2020-11-22 15:25:13 +01:00
|
|
|
final typingText = room.getLocalizedTypingText(context);
|
2020-11-22 16:35:16 +01:00
|
|
|
final ownMessage =
|
|
|
|
room.lastEvent?.senderId == Matrix.of(context).client.userID;
|
2021-06-05 09:11:37 +02:00
|
|
|
final unreadBubbleSize = room.isUnread
|
|
|
|
? room.notificationCount > 0.0
|
|
|
|
? 20.0
|
|
|
|
: 14.0
|
|
|
|
: 0.0;
|
2020-10-02 15:50:59 +02:00
|
|
|
return Center(
|
|
|
|
child: Material(
|
2021-01-15 19:41:55 +01:00
|
|
|
color: FluffyThemes.chatListItemColor(context, activeChat, selected),
|
2020-10-02 15:50:59 +02:00
|
|
|
child: ListTile(
|
|
|
|
onLongPress: onLongPress,
|
2021-07-31 20:28:21 +02:00
|
|
|
leading: selected
|
|
|
|
? Container(
|
|
|
|
width: Avatar.defaultSize,
|
|
|
|
height: Avatar.defaultSize,
|
|
|
|
child: Material(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
borderRadius: BorderRadius.circular(Avatar.defaultSize),
|
|
|
|
child: Icon(Icons.check, color: Colors.white),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Avatar(room.avatar, room.displayname, onTap: onLongPress),
|
2020-10-02 15:50:59 +02:00
|
|
|
title: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
2020-10-03 13:11:07 +02:00
|
|
|
room.getLocalizedDisplayname(MatrixLocals(L10n.of(context))),
|
2020-10-02 15:50:59 +02:00
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
softWrap: false,
|
2020-03-29 12:06:25 +02:00
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
),
|
2020-11-22 19:49:30 +01:00
|
|
|
if (isMuted)
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 4.0),
|
|
|
|
child: Icon(
|
|
|
|
Icons.notifications_off_outlined,
|
|
|
|
size: 16,
|
|
|
|
),
|
|
|
|
),
|
2021-07-26 18:38:42 +02:00
|
|
|
if (room.isFavourite)
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
right: room.notificationCount > 0 ? 4.0 : 0.0),
|
|
|
|
child: Icon(
|
|
|
|
Icons.push_pin_outlined,
|
|
|
|
size: 16,
|
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
|
|
),
|
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 4.0),
|
|
|
|
child: Text(
|
|
|
|
room.timeCreated.localizedTimeShort(context),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 13,
|
2020-11-22 15:25:13 +01:00
|
|
|
color: room.notificationCount > 0
|
2021-05-24 10:59:00 +02:00
|
|
|
? Theme.of(context).colorScheme.secondary
|
2020-11-22 15:25:13 +01:00
|
|
|
: null,
|
2020-08-03 13:08:44 +02:00
|
|
|
),
|
2020-02-16 09:16:47 +01:00
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
subtitle: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
2020-11-22 16:50:09 +01:00
|
|
|
if (typingText.isEmpty && ownMessage) ...{
|
2020-11-22 15:25:13 +01:00
|
|
|
Icon(
|
|
|
|
room.lastEvent.statusIcon,
|
|
|
|
size: 14,
|
|
|
|
),
|
|
|
|
SizedBox(width: 4),
|
|
|
|
},
|
2021-05-31 17:34:18 +02:00
|
|
|
AnimatedContainer(
|
|
|
|
width: typingText.isEmpty ? 0 : 18,
|
|
|
|
clipBehavior: Clip.hardEdge,
|
|
|
|
decoration: BoxDecoration(),
|
|
|
|
duration: Duration(milliseconds: 300),
|
|
|
|
curve: Curves.bounceInOut,
|
|
|
|
padding: EdgeInsets.only(right: 4),
|
|
|
|
child: Icon(
|
2020-12-06 10:31:35 +01:00
|
|
|
Icons.edit_outlined,
|
2021-05-24 10:59:00 +02:00
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
2020-11-22 16:50:09 +01:00
|
|
|
size: 14,
|
|
|
|
),
|
2021-05-31 17:34:18 +02:00
|
|
|
),
|
2021-05-31 17:12:33 +02:00
|
|
|
if (typingText.isEmpty &&
|
|
|
|
!ownMessage &&
|
|
|
|
!room.isDirectChat &&
|
2021-05-31 17:34:18 +02:00
|
|
|
room.lastEvent != null &&
|
|
|
|
room.lastEvent.type == EventTypes.Message &&
|
|
|
|
{MessageTypes.Text, MessageTypes.Notice}
|
|
|
|
.contains(room.lastEvent.messageType))
|
2021-05-31 17:12:33 +02:00
|
|
|
Text(
|
|
|
|
'${room.lastEvent.sender.calcDisplayname()}: ',
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).textTheme.bodyText1.color,
|
|
|
|
),
|
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
Expanded(
|
2020-11-22 15:25:13 +01:00
|
|
|
child: typingText.isNotEmpty
|
2020-10-02 15:50:59 +02:00
|
|
|
? Text(
|
2020-11-22 15:25:13 +01:00
|
|
|
typingText,
|
2020-10-02 15:50:59 +02:00
|
|
|
style: TextStyle(
|
2021-05-24 10:59:00 +02:00
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
2020-02-16 09:16:47 +01:00
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
softWrap: false,
|
|
|
|
)
|
2020-11-22 15:25:13 +01:00
|
|
|
: room.membership == Membership.invite
|
|
|
|
? Text(
|
|
|
|
L10n.of(context).youAreInvitedToThisChat,
|
|
|
|
style: TextStyle(
|
2021-05-24 10:59:00 +02:00
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
2021-07-26 18:40:46 +02:00
|
|
|
fontWeight: FontWeight.bold,
|
2020-11-22 15:25:13 +01:00
|
|
|
),
|
|
|
|
softWrap: false,
|
|
|
|
)
|
|
|
|
: Text(
|
|
|
|
room.lastEvent?.getLocalizedBody(
|
|
|
|
MatrixLocals(L10n.of(context)),
|
|
|
|
hideReply: true,
|
|
|
|
) ??
|
|
|
|
'',
|
|
|
|
softWrap: false,
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
2021-07-26 18:40:46 +02:00
|
|
|
color: room.isUnread
|
2021-05-31 17:12:33 +02:00
|
|
|
? Theme.of(context).colorScheme.secondary
|
|
|
|
: null,
|
2021-07-26 18:40:46 +02:00
|
|
|
fontWeight:
|
|
|
|
room.isUnread ? FontWeight.bold : null,
|
2020-11-22 15:25:13 +01:00
|
|
|
decoration: room.lastEvent?.redacted == true
|
|
|
|
? TextDecoration.lineThrough
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
),
|
|
|
|
SizedBox(width: 8),
|
2021-05-31 17:34:18 +02:00
|
|
|
AnimatedContainer(
|
|
|
|
duration: Duration(milliseconds: 300),
|
|
|
|
curve: Curves.bounceInOut,
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 7),
|
2021-06-05 09:11:37 +02:00
|
|
|
height: unreadBubbleSize,
|
2021-07-31 12:31:31 +02:00
|
|
|
width: room.notificationCount == 0 && !room.isUnread
|
|
|
|
? 0
|
|
|
|
: unreadBubbleSize,
|
2021-05-31 17:34:18 +02:00
|
|
|
decoration: BoxDecoration(
|
2021-07-26 18:40:46 +02:00
|
|
|
color: room.highlightCount > 0
|
2021-05-31 17:34:18 +02:00
|
|
|
? Colors.red
|
|
|
|
: Theme.of(context).primaryColor,
|
2021-06-26 12:06:09 +02:00
|
|
|
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
2020-11-22 19:49:30 +01:00
|
|
|
),
|
2021-05-31 17:34:18 +02:00
|
|
|
child: Center(
|
|
|
|
child: room.notificationCount > 0
|
|
|
|
? Text(
|
|
|
|
room.notificationCount.toString(),
|
|
|
|
style: TextStyle(
|
|
|
|
color: Colors.white,
|
2021-06-26 12:06:09 +02:00
|
|
|
fontSize: 13,
|
2021-05-31 17:34:18 +02:00
|
|
|
),
|
|
|
|
)
|
|
|
|
: Container(),
|
|
|
|
),
|
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
],
|
2020-02-16 09:16:47 +01:00
|
|
|
),
|
2020-10-02 15:50:59 +02:00
|
|
|
onTap: () => clickAction(context),
|
2020-01-02 23:38:46 +01:00
|
|
|
),
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|