fluffychat/lib/pages/chat_list/chat_list_item.dart

394 lines
16 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: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';
2023-12-30 09:29:01 +00:00
import 'package:fluffychat/widgets/hover_builder.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';
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;
2024-07-15 11:18:15 +00:00
final Room? space;
2020-01-01 18:10:13 +00:00
final bool activeChat;
final void Function(BuildContext context)? onLongPress;
2023-10-29 09:59:07 +00:00
final void Function()? onForget;
final void Function() onTap;
final String? filter;
2020-01-01 18:10:13 +00:00
2021-10-14 16:09:30 +00:00
const ChatListItem(
this.room, {
this.activeChat = false,
required this.onTap,
2021-10-14 16:09:30 +00:00
this.onLongPress,
2023-10-29 09:59:07 +00:00
this.onForget,
this.filter,
2024-07-15 11:18:15 +00:00
this.space,
super.key,
});
2020-01-05 11:27:03 +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(
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,
message: L10n.of(context)!.archiveRoomDescription,
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;
2024-07-15 11:18:15 +00:00
final typingText = room.getLocalizedTypingText(context);
final lastEvent = room.lastEvent;
final ownMessage = lastEvent?.senderId == room.client.userID;
2024-07-15 11:18:15 +00:00
final unread = room.isUnread || room.membership == Membership.invite;
final theme = Theme.of(context);
final directChatMatrixId = room.directChatMatrixID;
final isDirectChat = directChatMatrixId != null;
2024-07-15 11:18:15 +00:00
final unreadBubbleSize = unread || room.hasNewMessages
? room.notificationCount > 0
2021-06-05 07:11:37 +00:00
? 20.0
: 14.0
: 0.0;
2024-07-15 11:18:15 +00:00
final hasNotifications = room.notificationCount > 0;
2024-07-14 14:49:46 +00:00
final backgroundColor =
activeChat ? theme.colorScheme.secondaryContainer : null;
2023-01-20 15:59:50 +00:00
final displayname = room.getLocalizedDisplayname(
MatrixLocals(L10n.of(context)!),
);
final filter = this.filter;
if (filter != null && !displayname.toLowerCase().contains(filter)) {
return const SizedBox.shrink();
}
final needLastEventSender = lastEvent == null
? false
: room.getState(EventTypes.RoomMember, lastEvent.senderId) == null;
2024-07-15 11:18:15 +00:00
final space = this.space;
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,
2023-11-11 16:56:23 +00:00
color: backgroundColor,
2023-12-22 11:58:10 +00:00
child: FutureBuilder(
future: room.loadHeroUsers(),
2024-07-15 14:57:19 +00:00
builder: (context, snapshot) => HoverBuilder(
builder: (context, listTileHovered) => ListTile(
visualDensity: const VisualDensity(vertical: -0.5),
contentPadding: const EdgeInsets.symmetric(horizontal: 8),
onLongPress: () => onLongPress?.call(context),
leading: HoverBuilder(
builder: (context, hovered) => AnimatedScale(
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,
scale: hovered ? 1.1 : 1.0,
child: SizedBox(
width: Avatar.defaultSize,
height: Avatar.defaultSize,
child: Stack(
children: [
if (space != null)
Positioned(
top: 0,
left: 0,
child: Avatar(
border: BorderSide(
width: 2,
color: backgroundColor ??
Theme.of(context).colorScheme.surface,
),
borderRadius: BorderRadius.circular(
AppConfig.borderRadius / 4,
),
mxContent: space.avatar,
size: Avatar.defaultSize * 0.75,
name: space.getLocalizedDisplayname(),
onTap: () => onLongPress?.call(context),
),
),
2024-07-15 11:47:01 +00:00
Positioned(
2024-07-15 14:57:19 +00:00
bottom: 0,
right: 0,
2024-07-15 11:47:01 +00:00
child: Avatar(
2024-07-15 14:57:19 +00:00
border: space == null
? room.isSpace
? BorderSide(
width: 0,
color: Theme.of(context)
.colorScheme
.outline,
)
: null
: BorderSide(
width: 2,
color: backgroundColor ??
Theme.of(context).colorScheme.surface,
),
borderRadius: room.isSpace
? BorderRadius.circular(
AppConfig.borderRadius / 4,
)
: null,
mxContent: room.avatar,
size: space != null
? Avatar.defaultSize * 0.75
: Avatar.defaultSize,
name: displayname,
presenceUserId: directChatMatrixId,
presenceBackgroundColor: backgroundColor,
onTap: () => onLongPress?.call(context),
2024-07-15 11:47:01 +00:00
),
2024-07-15 11:18:15 +00:00
),
2024-07-15 14:57:56 +00:00
Positioned(
2024-07-15 19:14:49 +00:00
top: 0,
right: 0,
2024-07-15 14:57:56 +00:00
child: AnimatedScale(
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,
2024-07-15 19:14:49 +00:00
scale: listTileHovered ? 1.0 : 0.0,
2024-07-15 14:57:19 +00:00
child: Material(
color: backgroundColor,
borderRadius: BorderRadius.circular(16),
child: const Icon(
Icons.arrow_drop_down_circle_outlined,
size: 18,
),
2024-07-15 14:53:09 +00:00
),
),
2024-07-15 14:57:56 +00:00
),
2024-07-15 14:57:19 +00:00
],
),
),
2024-07-15 11:47:01 +00:00
),
2023-12-30 09:29:01 +00:00
),
2024-07-15 14:57:19 +00:00
title: Row(
children: <Widget>[
Expanded(
child: Text(
displayname,
maxLines: 1,
overflow: TextOverflow.ellipsis,
softWrap: false,
style: unread || room.hasNewMessages
? const TextStyle(fontWeight: FontWeight.bold)
: null,
2023-12-22 11:58:10 +00:00
),
),
2024-07-15 14:57:19 +00:00
if (isMuted)
const Padding(
padding: EdgeInsets.only(left: 4.0),
child: Icon(
Icons.notifications_off_outlined,
size: 16,
),
2023-12-22 11:58:10 +00:00
),
2024-07-15 14:57:19 +00:00
if (room.isFavourite || room.membership == Membership.invite)
Padding(
padding: EdgeInsets.only(
right: hasNotifications ? 4.0 : 0.0,
),
child: Icon(
Icons.push_pin,
size: 16,
color: theme.colorScheme.primary,
),
2023-12-22 11:58:10 +00:00
),
2024-07-15 14:57:19 +00:00
if (!room.isSpace &&
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.colorScheme.secondary
: theme.textTheme.bodyMedium!.color,
),
2023-12-22 11:58:10 +00:00
),
2023-08-17 18:10:14 +00:00
),
2024-07-15 14:57:19 +00:00
if (room.isSpace)
const Icon(
Icons.arrow_circle_right_outlined,
size: 18,
),
],
2024-07-15 14:57:19 +00:00
),
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.colorScheme.secondary,
size: 14,
),
),
2024-07-15 14:57:19 +00:00
Expanded(
child: room.isSpace && room.membership == Membership.join
? Text(
L10n.of(context)!.countChatsAndCountParticipants(
room.spaceChildren.length.toString(),
(room.summary.mJoinedMemberCount ?? 1).toString(),
),
)
: typingText.isNotEmpty
? Text(
typingText,
style: TextStyle(
2024-07-15 14:57:19 +00:00
color: theme.colorScheme.primary,
),
maxLines: 1,
softWrap: false,
)
: FutureBuilder(
key: ValueKey(
'${lastEvent?.eventId}_${lastEvent?.type}',
),
future: needLastEventSender
? lastEvent.calcLocalizedBody(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix: (!isDirectChat ||
directChatMatrixId !=
room.lastEvent?.senderId),
)
: null,
initialData:
lastEvent?.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix: (!isDirectChat ||
directChatMatrixId !=
room.lastEvent?.senderId),
),
builder: (context, snapshot) => Text(
room.membership == Membership.invite
? isDirectChat
? L10n.of(context)!.invitePrivateChat
: L10n.of(context)!.inviteGroupChat
: snapshot.data ??
L10n.of(context)!.emptyChat,
softWrap: false,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: unread || room.hasNewMessages
? FontWeight.bold
: null,
color: theme.colorScheme.onSurfaceVariant,
decoration: room.lastEvent?.redacted == true
? TextDecoration.lineThrough
: null,
),
),
),
2023-12-22 11:58:10 +00:00
),
2024-07-15 14:57:19 +00:00
const SizedBox(width: 8),
AnimatedContainer(
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,
padding: const EdgeInsets.symmetric(horizontal: 7),
height: unreadBubbleSize,
width: !hasNotifications && !unread && !room.hasNewMessages
? 0
: (unreadBubbleSize - 9) *
room.notificationCount.toString().length +
9,
decoration: BoxDecoration(
color: room.highlightCount > 0 ||
room.membership == Membership.invite
? Colors.red
: hasNotifications || room.markedUnread
? theme.colorScheme.primary
: theme.colorScheme.primaryContainer,
borderRadius:
BorderRadius.circular(AppConfig.borderRadius),
),
child: Center(
child: hasNotifications
? Text(
room.notificationCount.toString(),
style: TextStyle(
color: room.highlightCount > 0
? Colors.white
: hasNotifications
? theme.colorScheme.onPrimary
: theme.colorScheme.onPrimaryContainer,
fontSize: 13,
),
)
: const SizedBox.shrink(),
),
),
2024-07-15 14:57:19 +00:00
],
),
onTap: onTap,
trailing: onForget == null
? null
: IconButton(
icon: const Icon(Icons.delete_outlined),
onPressed: onForget,
),
2023-12-30 09:29:01 +00:00
),
2023-12-22 11:58:10 +00:00
),
),
2020-01-01 18:10:13 +00:00
),
);
}
}