FurryChat/lib/components/list_items/message.dart

292 lines
9.9 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-04-27 11:36:39 +00:00
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
2020-01-01 18:10:13 +00:00
import 'package:fluffychat/components/message_content.dart';
2020-02-11 11:49:39 +00:00
import 'package:fluffychat/components/reply_content.dart';
2020-01-09 11:16:34 +00:00
import 'package:fluffychat/utils/date_time_extension.dart';
2020-03-13 19:09:32 +00:00
import 'package:fluffychat/utils/event_extension.dart';
2020-01-18 12:22:22 +00:00
import 'package:fluffychat/utils/string_color.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-01 18:10:13 +00:00
2020-10-17 10:43:32 +00:00
import '../adaptive_page_layout.dart';
2020-01-01 18:10:13 +00:00
import '../avatar.dart';
import '../matrix.dart';
import '../message_reactions.dart';
2020-01-01 18:10:13 +00:00
import 'state_message.dart';
class Message extends StatelessWidget {
final Event event;
2020-01-17 09:39:46 +00:00
final Event nextEvent;
2020-02-09 14:15:29 +00:00
final Function(Event) onSelect;
2020-04-08 10:38:52 +00:00
final Function(Event) onAvatarTab;
2020-09-19 17:21:33 +00:00
final Function(String) scrollToEventId;
2020-02-09 14:15:29 +00:00
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
2020-02-09 14:15:29 +00:00
const Message(this.event,
2020-02-11 11:49:39 +00:00
{this.nextEvent,
this.longPressSelect,
this.onSelect,
2020-04-08 10:38:52 +00:00
this.onAvatarTab,
2020-09-19 17:21:33 +00:00
this.scrollToEventId,
2020-02-11 11:49:39 +00:00
this.selected,
this.timeline});
2020-01-01 18:10:13 +00:00
2020-06-20 09:46:12 +00:00
/// Indicates wheither the user may use a mouse instead
/// of touchscreen.
static bool useMouse = false;
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2020-05-22 10:54:29 +00:00
if (event.type == EventTypes.Unknown) {
return Container();
}
2020-02-21 08:45:37 +00:00
if (![EventTypes.Message, EventTypes.Sticker, EventTypes.Encrypted]
.contains(event.type)) {
return StateMessage(event);
}
2020-01-01 18:10:13 +00:00
2020-05-13 13:58:59 +00:00
var client = Matrix.of(context).client;
final ownMessage = event.senderId == client.userID;
var alignment = ownMessage ? Alignment.topRight : Alignment.topLeft;
var color = Theme.of(context).secondaryHeaderColor;
final sameSender = nextEvent != null &&
2020-05-10 11:26:52 +00:00
[EventTypes.Message, EventTypes.Sticker].contains(nextEvent.type)
? nextEvent.sender.id == event.sender.id
: false;
2020-05-13 13:58:59 +00:00
var textColor = ownMessage
? Colors.white
: Theme.of(context).brightness == Brightness.dark
? Colors.white
: Colors.black;
2020-05-13 13:58:59 +00:00
var rowMainAxisAlignment =
2020-01-01 18:10:13 +00:00
ownMessage ? MainAxisAlignment.end : MainAxisAlignment.start;
final displayEvent = event.getDisplayEvent(timeline);
if (event.showThumbnail) {
2020-09-19 14:21:57 +00:00
color = Theme.of(context).scaffoldBackgroundColor;
2020-05-06 16:43:30 +00:00
textColor = Theme.of(context).textTheme.bodyText2.color;
2020-03-13 21:16:03 +00:00
} else if (ownMessage) {
color = displayEvent.status == -1
2020-01-03 10:57:00 +00:00
? Colors.redAccent
: Theme.of(context).primaryColor;
2020-01-01 18:10:13 +00:00
}
2020-09-19 14:21:57 +00:00
final radius = 16.0;
2020-05-13 13:58:59 +00:00
var rowChildren = <Widget>[
2020-01-01 18:10:13 +00:00
Expanded(
2020-09-19 14:21:57 +00:00
child: Container(
2020-03-13 19:10:57 +00:00
alignment: alignment,
2020-05-15 17:57:53 +00:00
child: Container(
2020-09-19 14:21:57 +00:00
margin: const EdgeInsets.symmetric(horizontal: 8),
padding: const EdgeInsets.symmetric(vertical: 6, horizontal: 10),
decoration: BoxDecoration(
color: color,
borderRadius: BorderRadius.circular(radius),
),
2020-10-17 10:43:32 +00:00
constraints:
BoxConstraints(maxWidth: AdaptivePageLayout.defaultMinWidth),
2020-05-15 17:57:53 +00:00
child: Stack(
children: <Widget>[
Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
if (event.relationshipType == RelationshipTypes.Reply)
2020-05-15 17:57:53 +00:00
FutureBuilder<Event>(
future: event.getReplyEvent(timeline),
builder: (BuildContext context, snapshot) {
final replyEvent = snapshot.hasData
? snapshot.data
: Event(
eventId: event.relationshipEventId,
2020-05-15 17:57:53 +00:00
content: {'msgtype': 'm.text', 'body': '...'},
senderId: event.senderId,
2020-06-10 08:07:01 +00:00
type: 'm.room.message',
2020-05-15 17:57:53 +00:00
room: event.room,
roomId: event.roomId,
status: 1,
2020-06-10 08:07:01 +00:00
originServerTs: DateTime.now(),
2020-05-15 17:57:53 +00:00
);
2020-09-19 17:21:33 +00:00
return InkWell(
child: AbsorbPointer(
child: Container(
margin: EdgeInsets.symmetric(vertical: 4.0),
child: ReplyContent(replyEvent,
lightText: ownMessage, timeline: timeline),
),
),
onTap: () {
if (scrollToEventId != null) {
scrollToEventId(replyEvent.eventId);
}
},
2020-05-15 17:57:53 +00:00
);
},
2020-01-01 18:10:13 +00:00
),
2020-05-15 17:57:53 +00:00
MessageContent(
displayEvent,
2020-05-15 17:57:53 +00:00
textColor: textColor,
2020-04-08 10:38:52 +00:00
),
if (displayEvent.type == EventTypes.Encrypted &&
displayEvent.messageType == MessageTypes.BadEncrypted &&
displayEvent.content['can_request_session'] == true)
2020-05-15 17:57:53 +00:00
RaisedButton(
color: color.withAlpha(100),
child: Text(
L10n.of(context).requestPermission,
style: TextStyle(color: textColor),
),
onPressed: () => SimpleDialogs(context)
.tryRequestWithLoadingDialog(
displayEvent.requestKey()),
2020-05-15 17:57:53 +00:00
),
SizedBox(height: 4),
Opacity(
opacity: 0,
child: _MetaRow(
event, // meta information should be from the unedited event
2020-05-15 17:57:53 +00:00
ownMessage,
textColor,
timeline,
displayEvent,
2020-05-15 17:57:53 +00:00
),
),
],
),
Positioned(
bottom: 0,
right: ownMessage ? 0 : null,
left: !ownMessage ? 0 : null,
child: _MetaRow(
event,
ownMessage,
textColor,
timeline,
displayEvent,
2020-02-11 11:49:39 +00:00
),
2020-02-09 15:26:24 +00:00
),
2020-05-15 17:57:53 +00:00
],
),
2020-01-01 18:10:13 +00:00
),
),
),
];
2020-05-13 13:58:59 +00:00
final avatarOrSizedBox = sameSender
2020-03-13 20:42:05 +00:00
? SizedBox(width: Avatar.defaultSize)
: Avatar(
event.sender.avatarUrl,
2020-01-18 12:22:22 +00:00
event.sender.calcDisplayname(),
2020-04-08 10:38:52 +00:00
onTap: () => onAvatarTab(event),
);
2020-01-02 21:31:39 +00:00
if (ownMessage) {
2020-01-17 09:39:46 +00:00
rowChildren.add(avatarOrSizedBox);
2020-01-02 21:31:39 +00:00
} else {
2020-01-17 09:39:46 +00:00
rowChildren.insert(0, avatarOrSizedBox);
2020-01-02 21:31:39 +00:00
}
final row = Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: rowMainAxisAlignment,
children: rowChildren,
);
Widget container;
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 09:39:46 +00:00
2020-02-09 15:26:24 +00:00
return InkWell(
2020-06-20 09:46:12 +00:00
onHover: (b) => useMouse = true,
onTap: !useMouse && longPressSelect ? () => null : () => onSelect(event),
2020-02-09 15:26:24 +00:00
splashColor: Theme.of(context).primaryColor.withAlpha(100),
onLongPress: !longPressSelect ? null : () => onSelect(event),
2020-09-19 14:21:57 +00:00
child: Container(
2020-02-09 15:26:24 +00:00
color: selected
? Theme.of(context).primaryColor.withAlpha(100)
: Theme.of(context).primaryColor.withAlpha(0),
2020-02-14 13:34:28 +00:00
child: Padding(
2020-09-19 14:21:57 +00:00
padding: EdgeInsets.only(left: 8.0, right: 8.0, bottom: 8.0),
child: container,
2020-02-09 15:26:24 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}
2020-03-13 19:09:32 +00:00
class _MetaRow extends StatelessWidget {
final Event event;
final bool ownMessage;
final Color color;
final Timeline timeline;
final Event displayEvent;
2020-03-13 19:09:32 +00:00
const _MetaRow(
this.event, this.ownMessage, this.color, this.timeline, this.displayEvent,
{Key key})
2020-03-13 19:09:32 +00:00
: super(key: key);
@override
Widget build(BuildContext context) {
2020-05-13 13:58:59 +00:00
final displayname = event.sender.calcDisplayname();
final showDisplayname =
2020-03-13 19:09:32 +00:00
!ownMessage && event.senderId != event.room.directChatMatrixID;
return Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
if (showDisplayname)
Text(
displayname,
style: TextStyle(
fontSize: 11,
fontWeight: FontWeight.bold,
2020-09-19 14:21:57 +00:00
color: displayname.color.withAlpha(200),
2020-03-13 19:09:32 +00:00
),
),
if (showDisplayname) SizedBox(width: 4),
Text(
2020-06-10 08:07:01 +00:00
event.originServerTs.localizedTime(context),
2020-03-13 19:09:32 +00:00
style: TextStyle(
2020-09-19 14:21:57 +00:00
color: color.withAlpha(200),
2020-03-13 19:09:32 +00:00
fontSize: 11,
),
),
if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit))
2020-09-19 14:21:57 +00:00
Padding(
padding: const EdgeInsets.only(left: 2.0),
child: Icon(
Icons.edit,
size: 12,
color: color,
),
),
2020-03-13 19:09:32 +00:00
if (ownMessage) SizedBox(width: 2),
if (ownMessage)
Icon(
displayEvent.statusIcon,
2020-03-13 19:09:32 +00:00
size: 12,
2020-04-08 10:39:49 +00:00
color: color,
2020-03-13 19:09:32 +00:00
),
],
);
}
}