fluffychat/lib/pages/chat/events/message.dart

462 lines
17 KiB
Dart
Raw Normal View History

2023-12-22 21:36:20 +00:00
import 'dart:ui';
2021-10-26 16:50:34 +00:00
import 'package:flutter/material.dart';
2023-03-23 14:02:32 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:matrix/matrix.dart';
2022-06-28 14:51:29 +00:00
import 'package:swipe_to_action/swipe_to_action.dart';
2021-10-26 16:50:34 +00:00
2021-01-16 11:46:38 +00:00
import 'package:fluffychat/config/themes.dart';
2020-01-09 11:16:34 +00:00
import 'package:fluffychat/utils/date_time_extension.dart';
2020-01-18 12:22:22 +00:00
import 'package:fluffychat/utils/string_color.dart';
2021-11-09 20:32:16 +00:00
import 'package:fluffychat/widgets/avatar.dart';
2023-12-22 21:36:20 +00:00
import 'package:fluffychat/widgets/hover_builder.dart';
2021-11-09 20:32:16 +00:00
import 'package:fluffychat/widgets/matrix.dart';
import '../../../config/app_config.dart';
import 'message_content.dart';
import 'message_reactions.dart';
2021-11-09 20:32:16 +00:00
import 'reply_content.dart';
2020-01-01 18:10:13 +00:00
import 'state_message.dart';
import 'verification_request_content.dart';
2020-01-01 18:10:13 +00:00
class Message extends StatelessWidget {
final Event event;
2022-01-29 11:35:03 +00:00
final Event? nextEvent;
2023-03-23 14:02:32 +00:00
final bool displayReadMarker;
2023-11-11 08:54:34 +00:00
final void Function(Event) onSelect;
final void Function(Event) onAvatarTab;
final void Function(Event) onInfoTab;
final void Function(String) scrollToEventId;
2023-11-05 16:02:30 +00:00
final void Function() onSwipe;
final bool longPressSelect;
final bool selected;
2020-02-11 11:49:39 +00:00
final Timeline timeline;
2020-01-01 18:10:13 +00:00
const Message(
this.event, {
this.nextEvent,
2023-03-23 14:02:32 +00:00
this.displayReadMarker = false,
this.longPressSelect = false,
2023-11-11 08:54:34 +00:00
required this.onSelect,
required this.onInfoTab,
required this.onAvatarTab,
required this.scrollToEventId,
required this.onSwipe,
this.selected = false,
required this.timeline,
super.key,
});
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
if (!{
EventTypes.Message,
EventTypes.Sticker,
EventTypes.Encrypted,
2023-08-18 05:24:31 +00:00
EventTypes.CallInvite,
}.contains(event.type)) {
if (event.type.startsWith('m.call.')) {
return const SizedBox.shrink();
}
return StateMessage(event);
}
2020-01-01 18:10:13 +00:00
if (event.type == EventTypes.Message &&
event.messageType == EventTypes.KeyVerificationRequest) {
return VerificationRequestContent(event: event, timeline: timeline);
}
2021-04-14 08:37:15 +00:00
final client = Matrix.of(context).client;
2020-05-13 13:58:59 +00:00
final ownMessage = event.senderId == client.userID;
2021-04-14 08:37:15 +00:00
final alignment = ownMessage ? Alignment.topRight : Alignment.topLeft;
2023-12-01 19:10:15 +00:00
var color = Theme.of(context).colorScheme.surfaceVariant;
2021-11-13 12:06:36 +00:00
final displayTime = event.type == EventTypes.RoomCreate ||
nextEvent == null ||
2022-01-29 11:35:03 +00:00
!event.originServerTs.sameEnvironment(nextEvent!.originServerTs);
2020-05-13 13:58:59 +00:00
final sameSender = nextEvent != null &&
{
EventTypes.Message,
EventTypes.Sticker,
EventTypes.Encrypted,
}.contains(nextEvent!.type) &&
nextEvent?.relationshipType == null &&
nextEvent!.senderId == event.senderId &&
!displayTime;
2021-11-13 12:06:36 +00:00
final textColor = ownMessage
2023-10-28 09:51:32 +00:00
? Theme.of(context).colorScheme.onPrimaryContainer
2022-05-18 06:54:50 +00:00
: Theme.of(context).colorScheme.onBackground;
2021-04-14 08:37:15 +00:00
final rowMainAxisAlignment =
2020-01-01 18:10:13 +00:00
ownMessage ? MainAxisAlignment.end : MainAxisAlignment.start;
final displayEvent = event.getDisplayEvent(timeline);
2021-11-13 12:06:36 +00:00
final borderRadius = BorderRadius.only(
topLeft: !ownMessage
2022-11-04 10:17:22 +00:00
? const Radius.circular(4)
2021-11-13 12:06:36 +00:00
: const Radius.circular(AppConfig.borderRadius),
2022-11-04 10:17:22 +00:00
topRight: const Radius.circular(AppConfig.borderRadius),
2021-11-13 12:06:36 +00:00
bottomLeft: const Radius.circular(AppConfig.borderRadius),
2022-11-04 10:17:22 +00:00
bottomRight: ownMessage
? const Radius.circular(4)
: const Radius.circular(AppConfig.borderRadius),
2021-11-13 12:06:36 +00:00
);
final noBubble = {
MessageTypes.Video,
MessageTypes.Image,
2023-08-18 05:24:31 +00:00
MessageTypes.Sticker,
}.contains(event.messageType) &&
!event.redacted;
2022-12-30 09:36:54 +00:00
final noPadding = {
MessageTypes.File,
MessageTypes.Audio,
}.contains(event.messageType);
2021-11-13 12:06:36 +00:00
if (ownMessage) {
2021-10-25 08:46:58 +00:00
color = displayEvent.status.isError
2020-01-03 10:57:00 +00:00
? Colors.redAccent
2023-10-28 09:51:32 +00:00
: Theme.of(context).colorScheme.primaryContainer;
2020-01-01 18:10:13 +00:00
}
2023-11-11 08:54:34 +00:00
final row = Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: rowMainAxisAlignment,
children: [
if (sameSender || ownMessage)
SizedBox(
width: Avatar.defaultSize,
child: Center(
child: SizedBox(
width: 16,
height: 16,
child: event.status == EventStatus.sending
? const CircularProgressIndicator.adaptive(
strokeWidth: 2,
)
: event.status == EventStatus.error
? const Icon(Icons.error, color: Colors.red)
: null,
2023-11-06 17:19:44 +00:00
),
),
2023-11-11 08:54:34 +00:00
)
else
FutureBuilder<User?>(
future: event.fetchSenderUser(),
builder: (context, snapshot) {
final user = snapshot.data ?? event.senderFromMemoryOrFallback;
return Avatar(
mxContent: user.avatarUrl,
name: user.calcDisplayname(),
2023-11-11 16:56:23 +00:00
presenceUserId: user.stateKey,
2023-11-11 08:54:34 +00:00
onTap: () => onAvatarTab(event),
);
},
),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
if (!sameSender)
Padding(
padding: const EdgeInsets.only(left: 8.0, bottom: 4),
child: ownMessage || event.room.isDirectChat
? const SizedBox(height: 12)
: FutureBuilder<User?>(
future: event.fetchSenderUser(),
builder: (context, snapshot) {
final displayname =
snapshot.data?.calcDisplayname() ??
event.senderFromMemoryOrFallback
.calcDisplayname();
return Text(
displayname,
style: TextStyle(
fontSize: 12,
fontWeight: FontWeight.bold,
color: (Theme.of(context).brightness ==
Brightness.light
? displayname.color
: displayname.lightColorText),
),
);
},
),
),
Container(
alignment: alignment,
padding: const EdgeInsets.only(left: 8),
child: Material(
color: noBubble ? Colors.transparent : color,
borderRadius: borderRadius,
clipBehavior: Clip.antiAlias,
child: Container(
decoration: BoxDecoration(
borderRadius:
BorderRadius.circular(AppConfig.borderRadius),
),
padding: noBubble || noPadding
? EdgeInsets.zero
: const EdgeInsets.symmetric(
horizontal: 16,
vertical: 8,
),
constraints: const BoxConstraints(
maxWidth: FluffyThemes.columnWidth * 1.5,
),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
if (event.relationshipType == RelationshipTypes.reply)
FutureBuilder<Event?>(
future: event.getReplyEvent(timeline),
builder: (BuildContext context, snapshot) {
final replyEvent = snapshot.hasData
? snapshot.data!
: Event(
eventId: event.relationshipEventId!,
content: {
'msgtype': 'm.text',
'body': '...',
},
senderId: event.senderId,
type: 'm.room.message',
room: event.room,
status: EventStatus.sent,
originServerTs: DateTime.now(),
);
2023-12-26 15:41:02 +00:00
return Padding(
padding: const EdgeInsets.only(bottom: 4.0),
child: InkWell(
borderRadius: ReplyContent.borderRadius,
onTap: () =>
scrollToEventId(replyEvent.eventId),
child: AbsorbPointer(
child: ReplyContent(
replyEvent,
ownMessage: ownMessage,
timeline: timeline,
),
2023-11-11 08:54:34 +00:00
),
2023-11-05 16:02:30 +00:00
),
2023-11-06 17:19:44 +00:00
);
},
2023-11-05 16:02:30 +00:00
),
2023-11-11 08:54:34 +00:00
MessageContent(
displayEvent,
textColor: textColor,
onInfoTab: onInfoTab,
borderRadius: borderRadius,
2023-11-11 08:54:34 +00:00
),
if (event.hasAggregatedEvents(
timeline,
RelationshipTypes.edit,
))
Padding(
padding: const EdgeInsets.only(
top: 4.0,
2023-11-06 19:01:52 +00:00
),
2023-11-11 08:54:34 +00:00
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.edit_outlined,
color: textColor.withAlpha(164),
size: 14,
),
Text(
' - ${displayEvent.originServerTs.localizedTimeShort(context)}',
style: TextStyle(
2023-11-06 19:01:52 +00:00
color: textColor.withAlpha(164),
2023-11-11 08:54:34 +00:00
fontSize: 12,
2023-11-06 19:01:52 +00:00
),
2023-11-11 08:54:34 +00:00
),
],
2023-11-06 19:01:52 +00:00
),
2023-11-11 08:54:34 +00:00
),
],
2020-04-08 10:38:52 +00:00
),
2021-11-13 12:06:36 +00:00
),
2023-11-06 17:19:44 +00:00
),
2023-11-11 08:54:34 +00:00
),
],
2023-11-06 17:19:44 +00:00
),
2023-11-11 08:54:34 +00:00
),
],
);
Widget container;
2021-11-13 12:06:36 +00:00
if (event.hasAggregatedEvents(timeline, RelationshipTypes.reaction) ||
displayTime ||
2023-03-23 14:02:32 +00:00
selected ||
displayReadMarker) {
container = Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment:
ownMessage ? CrossAxisAlignment.end : CrossAxisAlignment.start,
children: <Widget>[
if (displayTime || selected)
2021-11-13 12:06:36 +00:00
Padding(
padding: displayTime
2023-12-01 19:10:15 +00:00
? const EdgeInsets.symmetric(vertical: 8.0)
: EdgeInsets.zero,
2021-11-13 12:06:36 +00:00
child: Center(
child: Material(
color: displayTime
? Theme.of(context).colorScheme.background
: Theme.of(context)
.colorScheme
.background
.withOpacity(0.33),
borderRadius:
BorderRadius.circular(AppConfig.borderRadius / 2),
clipBehavior: Clip.antiAlias,
child: Padding(
padding: const EdgeInsets.all(6.0),
child: Text(
event.originServerTs.localizedTime(context),
style: TextStyle(fontSize: 14 * AppConfig.fontSizeFactor),
),
2021-11-13 12:06:36 +00:00
),
),
),
2021-11-13 12:06:36 +00:00
),
row,
2022-01-03 16:06:38 +00:00
if (event.hasAggregatedEvents(timeline, RelationshipTypes.reaction))
Padding(
padding: EdgeInsets.only(
2023-08-11 11:33:16 +00:00
top: 4.0,
2022-01-03 16:06:38 +00:00
left: (ownMessage ? 0 : Avatar.defaultSize) + 12.0,
right: 12.0,
),
child: MessageReactions(event, timeline),
),
2023-03-23 14:02:32 +00:00
if (displayReadMarker)
Row(
children: [
Expanded(
child: Divider(color: Theme.of(context).colorScheme.primary),
),
Container(
decoration: BoxDecoration(
border: Border.all(
color: Theme.of(context).colorScheme.primary,
),
color: Theme.of(context).colorScheme.primaryContainer,
borderRadius: BorderRadius.circular(4),
),
margin: const EdgeInsets.all(8.0),
padding: const EdgeInsets.symmetric(
horizontal: 8,
),
child: Text(
L10n.of(context)!.readUpToHere,
style:
TextStyle(color: Theme.of(context).colorScheme.primary),
),
),
Expanded(
child: Divider(color: Theme.of(context).colorScheme.primary),
2023-03-23 14:02:32 +00:00
),
],
),
],
);
} else {
container = row;
}
2020-01-17 09:39:46 +00:00
if (event.messageType == MessageTypes.BadEncrypted) {
container = Opacity(opacity: 0.4, child: container);
2023-07-22 09:50:00 +00:00
}
2023-12-22 21:36:20 +00:00
TapDownDetails? lastTapDownDetails;
return Center(
child: Swipeable(
key: ValueKey(event.eventId),
background: const Padding(
padding: EdgeInsets.symmetric(horizontal: 12.0),
child: Center(
child: Icon(Icons.check_outlined),
2023-11-11 08:54:34 +00:00
),
),
direction: SwipeDirection.endToStart,
onSwipe: (_) => onSwipe(),
2023-12-22 21:36:20 +00:00
child: HoverBuilder(
builder: (context, hovered) => GestureDetector(
onTapDown: (details) {
lastTapDownDetails = details;
},
onTap: () {
if (lastTapDownDetails?.kind == PointerDeviceKind.mouse) return;
onSelect(event);
},
child: Stack(
children: [
Container(
color: selected
? Theme.of(context).colorScheme.primary.withAlpha(100)
: Colors.transparent,
2023-12-22 21:36:20 +00:00
constraints: const BoxConstraints(
maxWidth: FluffyThemes.columnWidth * 2.5,
),
padding: const EdgeInsets.symmetric(
horizontal: 8.0,
vertical: 4.0,
),
child: container,
),
if (hovered || selected)
Positioned(
left: ownMessage ? 4 : null,
right: ownMessage ? null : 4,
bottom: 4,
child: Material(
color: Theme.of(context)
.colorScheme
.surfaceVariant
2023-12-22 21:36:20 +00:00
.withOpacity(0.9),
elevation: Theme.of(context)
.appBarTheme
.scrolledUnderElevation ??
4,
borderRadius:
BorderRadius.circular(AppConfig.borderRadius),
shadowColor: Theme.of(context).appBarTheme.shadowColor,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
if (hovered) ...[
IconButton(
icon: const Icon(
Icons.reply_outlined,
size: 16,
),
tooltip: L10n.of(context)!.reply,
onPressed: () => onSwipe(),
),
],
IconButton(
icon: Icon(
selected
? Icons.check_circle
: longPressSelect
? Icons.check_circle_outlined
: Icons.menu,
size: 16,
),
tooltip: L10n.of(context)!.select,
onPressed: () => onSelect(event),
),
],
),
),
),
],
),
2021-11-14 10:53:43 +00:00
),
2021-05-24 09:22:03 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}