fluffychat/lib/widgets/event_content/message.dart

298 lines
10 KiB
Dart
Raw Normal View History

import 'package:matrix/matrix.dart';
import 'package:fluffychat/widgets/event_content/message_content.dart';
import 'package:fluffychat/widgets/event_content/reply_content.dart';
2021-01-16 12:46:38 +01:00
import 'package:fluffychat/config/themes.dart';
2020-01-09 12:16:34 +01:00
import 'package:fluffychat/utils/date_time_extension.dart';
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/event_extension.dart';
2020-01-18 13:22:22 +01:00
import 'package:fluffychat/utils/string_color.dart';
2020-01-01 19:10:13 +01:00
import 'package:flutter/material.dart';
2021-05-22 08:53:52 +02:00
import '../../config/app_config.dart';
2020-01-01 19:10:13 +01:00
import '../avatar.dart';
import '../matrix.dart';
import 'message_reactions.dart';
2020-01-01 19:10:13 +01:00
import 'state_message.dart';
import 'verification_request_content.dart';
2020-01-01 19:10:13 +01:00
class Message extends StatelessWidget {
final Event event;
2020-01-17 10:39:46 +01:00
final Event nextEvent;
final void Function(Event) onSelect;
final void Function(Event) onAvatarTab;
final void Function(String) scrollToEventId;
final void Function(String) unfold;
2020-02-09 15:15:29 +01:00
final bool longPressSelect;
final bool selected;
2020-02-11 12:49:39 +01:00
final Timeline timeline;
2020-01-01 19:10:13 +01:00
2020-02-09 15:15:29 +01:00
const Message(this.event,
2020-02-11 12:49:39 +01:00
{this.nextEvent,
this.longPressSelect,
this.onSelect,
2020-04-08 12:38:52 +02:00
this.onAvatarTab,
2020-09-19 19:21:33 +02:00
this.scrollToEventId,
@required this.unfold,
2020-02-11 12:49:39 +01:00
this.selected,
this.timeline});
2020-01-01 19:10:13 +01:00
2020-06-20 11:46:12 +02:00
/// Indicates wheither the user may use a mouse instead
/// of touchscreen.
static bool useMouse = false;
2020-01-01 19:10:13 +01:00
@override
Widget build(BuildContext context) {
2020-02-21 09:45:37 +01:00
if (![EventTypes.Message, EventTypes.Sticker, EventTypes.Encrypted]
.contains(event.type)) {
return StateMessage(event, unfold: unfold);
}
2020-01-01 19:10:13 +01:00
if (event.type == EventTypes.Message &&
event.messageType == EventTypes.KeyVerificationRequest) {
return VerificationRequestContent(event: event, timeline: timeline);
}
2021-04-14 10:37:15 +02:00
final client = Matrix.of(context).client;
2020-05-13 15:58:59 +02:00
final ownMessage = event.senderId == client.userID;
2021-04-14 10:37:15 +02:00
final alignment = ownMessage ? Alignment.topRight : Alignment.topLeft;
var color = Theme.of(context).secondaryHeaderColor;
2020-05-13 15:58:59 +02:00
final sameSender = nextEvent != null &&
2020-05-10 13:26:52 +02:00
[EventTypes.Message, EventTypes.Sticker].contains(nextEvent.type)
? nextEvent.sender.id == event.sender.id
: false;
2020-05-13 15:58:59 +02:00
var textColor = ownMessage
? Colors.white
: Theme.of(context).brightness == Brightness.dark
? Colors.white
: Colors.black;
2021-04-14 10:37:15 +02:00
final rowMainAxisAlignment =
2020-01-01 19:10:13 +01:00
ownMessage ? MainAxisAlignment.end : MainAxisAlignment.start;
final displayEvent = event.getDisplayEvent(timeline);
if (event.showThumbnail) {
color = Colors.transparent;
2020-05-06 18:43:30 +02:00
textColor = Theme.of(context).textTheme.bodyText2.color;
2020-03-13 22:16:03 +01:00
} else if (ownMessage) {
color = displayEvent.status == -1
2020-01-03 11:57:00 +01:00
? Colors.redAccent
: Theme.of(context).primaryColor;
2020-01-01 19:10:13 +01:00
}
2021-04-14 10:37:15 +02:00
final rowChildren = <Widget>[
2020-01-01 19:10:13 +01:00
Expanded(
2020-09-19 16:21:57 +02:00
child: Container(
2020-03-13 20:10:57 +01:00
alignment: alignment,
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Material(
color: color,
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
child: InkWell(
onHover: (b) => useMouse = true,
onTap: !useMouse && longPressSelect
? () => null
: () => onSelect(event),
onLongPress: !longPressSelect ? null : () => onSelect(event),
2021-04-25 15:09:47 +02:00
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
),
padding:
const EdgeInsets.symmetric(vertical: 6, horizontal: 10),
constraints:
BoxConstraints(maxWidth: FluffyThemes.columnWidth * 1.5),
child: Stack(
2020-05-15 19:57:53 +02:00
children: <Widget>[
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,
roomId: event.roomId,
status: 1,
originServerTs: DateTime.now(),
);
return InkWell(
onTap: () {
if (scrollToEventId != null) {
scrollToEventId(replyEvent.eventId);
}
},
child: AbsorbPointer(
child: Container(
margin: EdgeInsets.symmetric(vertical: 4.0),
child: ReplyContent(replyEvent,
lightText: ownMessage,
timeline: timeline),
),
),
);
2021-03-04 12:28:06 +01:00
},
),
MessageContent(
displayEvent,
textColor: textColor,
),
SizedBox(height: 3),
Opacity(
opacity: 0,
child: _MetaRow(
event, // meta information should be from the unedited event
ownMessage,
textColor,
timeline,
displayEvent,
),
),
],
2020-04-08 12:38:52 +02:00
),
Positioned(
bottom: 0,
right: ownMessage ? 0 : null,
left: !ownMessage ? 0 : null,
2020-05-15 19:57:53 +02:00
child: _MetaRow(
event,
2020-05-15 19:57:53 +02:00
ownMessage,
textColor,
timeline,
displayEvent,
2020-05-15 19:57:53 +02:00
),
),
],
),
),
2020-05-15 19:57:53 +02:00
),
2020-01-01 19:10:13 +01:00
),
),
),
];
2020-05-13 15:58:59 +02:00
final avatarOrSizedBox = sameSender
2020-03-13 21:42:05 +01:00
? SizedBox(width: Avatar.defaultSize)
: Avatar(
event.sender.avatarUrl,
2020-01-18 13:22:22 +01:00
event.sender.calcDisplayname(),
2020-04-08 12:38:52 +02:00
onTap: () => onAvatarTab(event),
);
2020-01-02 22:31:39 +01:00
if (ownMessage) {
2020-01-17 10:39:46 +01:00
rowChildren.add(avatarOrSizedBox);
2020-01-02 22:31:39 +01:00
} else {
2020-01-17 10:39:46 +01:00
rowChildren.insert(0, avatarOrSizedBox);
2020-01-02 22:31:39 +01:00
}
final row = Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: rowMainAxisAlignment,
children: rowChildren,
);
Widget container;
2021-04-21 14:19:54 +02:00
if (event.hasAggregatedEvents(timeline, RelationshipTypes.reaction)) {
container = Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment:
ownMessage ? CrossAxisAlignment.end : CrossAxisAlignment.start,
children: <Widget>[
row,
Padding(
padding: EdgeInsets.only(
top: 4.0,
left: (ownMessage ? 0 : Avatar.defaultSize) + 12.0,
right: (ownMessage ? Avatar.defaultSize : 0) + 12.0,
),
child: MessageReactions(event, timeline),
),
],
);
} else {
container = row;
}
2020-01-17 10:39:46 +01:00
2021-05-24 11:22:03 +02:00
return Center(
child: Container(
color: selected
? Theme.of(context).primaryColor.withAlpha(100)
: Theme.of(context).primaryColor.withAlpha(0),
constraints: BoxConstraints(maxWidth: FluffyThemes.columnWidth * 2.5),
child: Padding(
padding:
EdgeInsets.only(left: 8.0, right: 8.0, bottom: 4.0, top: 4.0),
child: container,
),
2020-01-01 19:10:13 +01:00
),
);
}
}
2020-03-13 20:09:32 +01:00
class _MetaRow extends StatelessWidget {
final Event event;
final bool ownMessage;
final Color color;
final Timeline timeline;
final Event displayEvent;
2020-03-13 20:09:32 +01:00
const _MetaRow(
this.event, this.ownMessage, this.color, this.timeline, this.displayEvent,
{Key key})
2020-03-13 20:09:32 +01:00
: super(key: key);
@override
Widget build(BuildContext context) {
2020-05-13 15:58:59 +02:00
final displayname = event.sender.calcDisplayname();
final showDisplayname =
2020-03-13 20:09:32 +01:00
!ownMessage && event.senderId != event.room.directChatMatrixID;
return Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
if (showDisplayname)
Text(
displayname,
style: TextStyle(
fontSize: 10 * AppConfig.fontSizeFactor,
2020-03-13 20:09:32 +01:00
fontWeight: FontWeight.bold,
color: (Theme.of(context).brightness == Brightness.light
? displayname.darkColor
: displayname.lightColor)
.withAlpha(200),
2020-03-13 20:09:32 +01:00
),
),
if (showDisplayname) SizedBox(width: 4),
Text(
2020-06-10 10:07:01 +02:00
event.originServerTs.localizedTime(context),
2020-03-13 20:09:32 +01:00
style: TextStyle(
2021-05-16 11:29:18 +02:00
color: color.withAlpha(180),
fontSize: 10 * AppConfig.fontSizeFactor,
2020-03-13 20:09:32 +01:00
),
),
2021-04-21 14:19:54 +02:00
if (event.hasAggregatedEvents(timeline, RelationshipTypes.edit))
2020-09-19 16:21:57 +02:00
Padding(
padding: const EdgeInsets.only(left: 2.0),
child: Icon(
2020-12-06 10:31:35 +01:00
Icons.edit_outlined,
2021-02-13 13:21:27 +01:00
size: 12 * AppConfig.fontSizeFactor,
2020-09-19 16:21:57 +02:00
color: color,
),
),
2020-03-13 20:09:32 +01:00
if (ownMessage) SizedBox(width: 2),
if (ownMessage)
Icon(
displayEvent.statusIcon,
2021-02-13 13:21:27 +01:00
size: 14 * AppConfig.fontSizeFactor,
2020-04-08 12:39:49 +02:00
color: color,
2020-03-13 20:09:32 +01:00
),
],
);
}
}