fluffychat/lib/pages/chat_list/chat_list_item.dart

370 lines
14 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 16:50:34 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:go_router/go_router.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2020-01-01 18:10:13 +00:00
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/config/app_config.dart';
2022-12-30 16:54:01 +00:00
import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart';
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/utils/room_status_extension.dart';
import '../../config/themes.dart';
2021-05-22 06:53:52 +00:00
import '../../utils/date_time_extension.dart';
2021-11-09 20:32:16 +00:00
import '../../widgets/avatar.dart';
import '../../widgets/matrix.dart';
import '../chat/send_file_dialog.dart';
2020-01-01 18:10:13 +00:00
2020-11-14 13:04:36 +00:00
enum ArchivedRoomAction { delete, rejoin }
2020-01-01 18:10:13 +00:00
class ChatListItem extends StatelessWidget {
final Room room;
final bool activeChat;
2020-10-02 13:50:59 +00:00
final bool selected;
2022-10-15 07:23:17 +00:00
final void Function()? onTap;
final void Function()? onLongPress;
2020-01-01 18:10:13 +00:00
2021-10-14 16:09:30 +00:00
const ChatListItem(
this.room, {
this.activeChat = false,
this.selected = false,
this.onTap,
this.onLongPress,
2022-01-29 11:35:03 +00:00
Key? key,
2021-10-14 16:09:30 +00:00
}) : super(key: key);
2020-01-05 11:27:03 +00:00
2022-10-15 07:23:17 +00:00
void clickAction(BuildContext context) async {
2022-01-29 11:35:03 +00:00
if (onTap != null) return onTap!();
2022-10-15 07:23:17 +00:00
if (activeChat) return;
if (room.membership == Membership.invite) {
2023-08-17 18:10:14 +00:00
final inviterId =
room.getState(EventTypes.RoomMember, room.client.userID!)?.senderId;
final profile = inviterId == null
? null
: await showFutureLoadingDialog(
context: context,
future: () => room.client.getProfileFromUserId(inviterId),
);
final consent = await showOkCancelAlertDialog(
context: context,
title: L10n.of(context)!.inviteForMe,
message: L10n.of(context)!.youInvitedBy(
profile?.result?.displayName ??
profile?.result?.userId.localpart ??
L10n.of(context)!.user,
),
okLabel: L10n.of(context)!.joinRoom,
cancelLabel: L10n.of(context)!.delete,
barrierDismissible: false,
);
if (consent == OkCancelResult.cancel) {
await showFutureLoadingDialog(
context: context,
future: room.leave,
);
return;
}
2022-10-15 07:23:17 +00:00
final joinResult = await showFutureLoadingDialog(
context: context,
future: () async {
final waitForRoom = room.client.waitForRoomInSync(
room.id,
join: true,
);
await room.join();
await waitForRoom;
},
);
2022-10-15 07:23:17 +00:00
if (joinResult.error != null) return;
}
2020-01-05 11:27:03 +00:00
2022-10-15 07:23:17 +00:00
if (room.membership == Membership.ban) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(L10n.of(context)!.youHaveBeenBannedFromThisChat),
),
);
return;
}
if (room.membership == Membership.leave) {
context.go('/rooms/archive/${room.id}');
2022-10-15 07:23:17 +00:00
}
2020-01-05 11:27:03 +00:00
2022-10-15 07:23:17 +00:00
if (room.membership == Membership.join) {
// Share content into this room
final shareContent = Matrix.of(context).shareContent;
if (shareContent != null) {
2022-11-02 08:59:12 +00:00
final shareFile = shareContent.tryGet<MatrixFile>('file');
2022-10-15 07:23:17 +00:00
if (shareContent.tryGet<String>('msgtype') ==
2022-11-02 08:59:12 +00:00
'chat.fluffy.shared_file' &&
shareFile != null) {
2022-10-15 07:23:17 +00:00
await showDialog(
context: context,
useRootNavigator: false,
builder: (c) => SendFileDialog(
2022-11-02 08:59:12 +00:00
files: [shareFile],
2022-10-15 07:23:17 +00:00
room: room,
2020-11-14 13:04:36 +00:00
),
2022-10-15 07:23:17 +00:00
);
} else {
room.sendEvent(shareContent);
2020-11-14 13:04:36 +00:00
}
2022-10-15 07:23:17 +00:00
Matrix.of(context).shareContent = null;
2020-01-05 11:27:03 +00:00
}
context.go('/rooms/${room.id}');
2020-01-05 11:27:03 +00:00
}
}
2020-01-01 18:10:13 +00:00
2020-10-02 13:50:59 +00:00
Future<void> archiveAction(BuildContext context) async {
{
2020-02-16 08:22:56 +00:00
if ([Membership.leave, Membership.ban].contains(room.membership)) {
2023-01-08 11:32:35 +00:00
await showFutureLoadingDialog(
2020-12-25 08:58:34 +00:00
context: context,
future: () => room.forget(),
);
2022-01-29 11:35:03 +00:00
return;
2020-02-16 08:22:56 +00:00
}
2020-11-14 09:08:13 +00:00
final confirmed = await showOkCancelAlertDialog(
2021-05-23 13:02:36 +00:00
useRootNavigator: false,
2020-11-14 09:08:13 +00:00
context: context,
2022-01-29 11:35:03 +00:00
title: L10n.of(context)!.areYouSure,
okLabel: L10n.of(context)!.yes,
cancelLabel: L10n.of(context)!.no,
2020-11-14 09:08:13 +00:00
);
if (confirmed == OkCancelResult.cancel) return;
2020-12-25 08:58:34 +00:00
await showFutureLoadingDialog(
context: context,
future: () => room.leave(),
);
2020-10-02 13:50:59 +00:00
return;
}
}
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-11-22 14:25:13 +00:00
final typingText = room.getLocalizedTypingText(context);
2023-08-17 18:10:14 +00:00
final lastEvent = room.lastEvent;
final ownMessage = lastEvent?.senderId == Matrix.of(context).client.userID;
2021-08-13 10:39:42 +00:00
final unread = room.isUnread || room.membership == Membership.invite;
final unreadBubbleSize = unread || room.hasNewMessages
2021-09-13 15:41:53 +00:00
? room.notificationCount > 0
2021-06-05 07:11:37 +00:00
? 20.0
: 14.0
: 0.0;
2023-01-20 15:59:50 +00:00
final displayname = room.getLocalizedDisplayname(
MatrixLocals(L10n.of(context)!),
);
return Padding(
2023-02-05 09:18:32 +00:00
padding: const EdgeInsets.symmetric(
horizontal: 8,
vertical: 1,
),
child: Material(
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
clipBehavior: Clip.hardEdge,
color: selected
? Theme.of(context).colorScheme.primaryContainer
: activeChat
? Theme.of(context).colorScheme.secondaryContainer
: Colors.transparent,
child: ListTile(
2023-02-05 09:18:32 +00:00
visualDensity: const VisualDensity(vertical: -0.5),
contentPadding: const EdgeInsets.symmetric(horizontal: 8),
onLongPress: onLongPress,
leading: selected
? SizedBox(
width: Avatar.defaultSize,
height: Avatar.defaultSize,
child: Material(
color: Theme.of(context).primaryColor,
borderRadius: BorderRadius.circular(Avatar.defaultSize),
child: const Icon(Icons.check, color: Colors.white),
),
)
: Avatar(
mxContent: room.avatar,
name: displayname,
onTap: onLongPress,
),
title: Row(
children: <Widget>[
Expanded(
child: Text(
displayname,
maxLines: 1,
overflow: TextOverflow.ellipsis,
softWrap: false,
style: TextStyle(
fontWeight: unread ? FontWeight.bold : null,
),
),
2021-08-04 07:35:38 +00:00
),
if (isMuted)
const Padding(
padding: EdgeInsets.only(left: 4.0),
child: Icon(
Icons.notifications_off_outlined,
size: 16,
),
),
2023-08-17 18:10:14 +00:00
if (room.isFavourite || room.membership == Membership.invite)
Padding(
padding: EdgeInsets.only(
right: room.notificationCount > 0 ? 4.0 : 0.0,
),
child: Icon(
Icons.push_pin,
size: 16,
color: Theme.of(context).colorScheme.primary,
),
),
2023-08-17 18:10:14 +00:00
if (lastEvent != null && room.membership != Membership.invite)
Padding(
padding: const EdgeInsets.only(left: 4.0),
child: Text(
lastEvent.originServerTs.localizedTimeShort(context),
style: TextStyle(
fontSize: 13,
color: unread
? Theme.of(context).colorScheme.secondary
: Theme.of(context).textTheme.bodyMedium!.color,
),
),
),
],
),
subtitle: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
if (typingText.isEmpty &&
ownMessage &&
room.lastEvent!.status.isSending) ...[
const SizedBox(
width: 16,
height: 16,
child: CircularProgressIndicator.adaptive(strokeWidth: 2),
),
const SizedBox(width: 4),
],
AnimatedContainer(
width: typingText.isEmpty ? 0 : 18,
clipBehavior: Clip.hardEdge,
decoration: const BoxDecoration(),
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,
padding: const EdgeInsets.only(right: 4),
child: Icon(
Icons.edit_outlined,
color: Theme.of(context).colorScheme.secondary,
size: 14,
),
),
Expanded(
child: typingText.isNotEmpty
? Text(
typingText,
style: TextStyle(
color: Theme.of(context).colorScheme.primary,
),
maxLines: 1,
softWrap: false,
)
: FutureBuilder<String>(
future: room.lastEvent?.calcLocalizedBody(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix: !room.isDirectChat ||
room.directChatMatrixID !=
room.lastEvent?.senderId,
) ??
Future.value(L10n.of(context)!.emptyChat),
builder: (context, snapshot) {
return Text(
room.membership == Membership.invite
2023-08-17 18:10:14 +00:00
? room.isDirectChat
? L10n.of(context)!.invitePrivateChat
: L10n.of(context)!.inviteGroupChat
: snapshot.data ??
room.lastEvent?.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix:
!room.isDirectChat ||
room.directChatMatrixID !=
room.lastEvent?.senderId,
) ??
L10n.of(context)!.emptyChat,
softWrap: false,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: unread ? FontWeight.w600 : null,
color: Theme.of(context)
.colorScheme
.onSurfaceVariant,
decoration: room.lastEvent?.redacted == true
? TextDecoration.lineThrough
: null,
),
);
},
),
),
const SizedBox(width: 8),
AnimatedContainer(
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,
padding: const EdgeInsets.symmetric(horizontal: 7),
height: unreadBubbleSize,
width: room.notificationCount == 0 &&
!unread &&
!room.hasNewMessages
? 0
: (unreadBubbleSize - 9) *
room.notificationCount.toString().length +
9,
decoration: BoxDecoration(
color: room.highlightCount > 0 ||
room.membership == Membership.invite
? Colors.red
: room.notificationCount > 0 || room.markedUnread
? Theme.of(context).colorScheme.primary
: Theme.of(context).colorScheme.primaryContainer,
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
),
child: Center(
child: room.notificationCount > 0
? Text(
room.notificationCount.toString(),
style: TextStyle(
color: room.highlightCount > 0
? Colors.white
: room.notificationCount > 0
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context)
.colorScheme
.onPrimaryContainer,
fontSize: 13,
),
)
: const SizedBox.shrink(),
),
),
],
),
onTap: () => clickAction(context),
),
2020-01-01 18:10:13 +00:00
),
);
}
}