2020-01-01 19:10:13 +01:00
|
|
|
import 'package:bubble/bubble.dart';
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:fluffychat/components/message_content.dart';
|
2020-02-11 12:49:39 +01:00
|
|
|
import 'package:fluffychat/components/reply_content.dart';
|
2020-01-20 13:46:39 +01:00
|
|
|
import 'package:fluffychat/i18n/i18n.dart';
|
2020-01-17 11:08:12 +01:00
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
2020-01-09 12:16:34 +01:00
|
|
|
import 'package:fluffychat/utils/date_time_extension.dart';
|
2020-01-18 13:22:22 +01:00
|
|
|
import 'package:fluffychat/utils/string_color.dart';
|
2020-01-17 11:08:12 +01:00
|
|
|
import 'package:fluffychat/views/content_web_view.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import '../avatar.dart';
|
|
|
|
import '../matrix.dart';
|
|
|
|
import 'state_message.dart';
|
|
|
|
|
|
|
|
class Message extends StatelessWidget {
|
|
|
|
final Event event;
|
2020-01-17 10:39:46 +01:00
|
|
|
final Event nextEvent;
|
2020-02-09 15:15:29 +01:00
|
|
|
final Function(Event) onSelect;
|
|
|
|
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,
|
|
|
|
this.selected,
|
|
|
|
this.timeline});
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-01-04 13:53:49 +01:00
|
|
|
if (![EventTypes.Message, EventTypes.Sticker].contains(event.type)) {
|
|
|
|
return StateMessage(event);
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
Client client = Matrix.of(context).client;
|
|
|
|
final bool ownMessage = event.senderId == client.userID;
|
|
|
|
Alignment alignment = ownMessage ? Alignment.topRight : Alignment.topLeft;
|
2020-02-07 20:00:20 +01:00
|
|
|
Color color = Theme.of(context).secondaryHeaderColor;
|
2020-01-17 11:08:12 +01:00
|
|
|
final bool sameSender = nextEvent != null &&
|
|
|
|
[EventTypes.Message, EventTypes.Sticker].contains(nextEvent.type)
|
|
|
|
? nextEvent.sender.id == event.sender.id
|
|
|
|
: false;
|
2020-01-17 10:39:46 +01:00
|
|
|
BubbleNip nip = sameSender
|
|
|
|
? BubbleNip.no
|
|
|
|
: ownMessage ? BubbleNip.rightBottom : BubbleNip.leftBottom;
|
2020-01-01 19:10:13 +01:00
|
|
|
final Color textColor = ownMessage ? Colors.white : Colors.black;
|
|
|
|
MainAxisAlignment rowMainAxisAlignment =
|
|
|
|
ownMessage ? MainAxisAlignment.end : MainAxisAlignment.start;
|
|
|
|
|
|
|
|
if (ownMessage) {
|
2020-01-03 11:57:00 +01:00
|
|
|
color = event.status == -1
|
|
|
|
? Colors.redAccent
|
|
|
|
: Theme.of(context).primaryColor;
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
List<Widget> rowChildren = [
|
|
|
|
Expanded(
|
2020-02-09 16:26:24 +01:00
|
|
|
child: AnimatedOpacity(
|
|
|
|
duration: Duration(milliseconds: 500),
|
|
|
|
opacity: (event.status == 0 || event.redacted) ? 0.5 : 1,
|
|
|
|
child: Bubble(
|
|
|
|
elevation: 0,
|
|
|
|
radius: Radius.circular(8),
|
|
|
|
alignment: alignment,
|
|
|
|
margin: BubbleEdges.symmetric(horizontal: 4),
|
|
|
|
color: color,
|
|
|
|
nip: nip,
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
|
|
|
Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
ownMessage
|
|
|
|
? I18n.of(context).you
|
|
|
|
: event.sender.calcDisplayname(),
|
|
|
|
style: TextStyle(
|
|
|
|
color: ownMessage
|
|
|
|
? textColor
|
|
|
|
: event.sender.calcDisplayname().color,
|
|
|
|
fontWeight: FontWeight.bold,
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
2020-02-09 16:26:24 +01:00
|
|
|
),
|
|
|
|
SizedBox(width: 4),
|
|
|
|
Text(
|
|
|
|
event.time.localizedTime(context),
|
|
|
|
style: TextStyle(
|
|
|
|
color: textColor.withAlpha(180),
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
2020-02-09 16:26:24 +01:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-02-11 12:49:39 +01:00
|
|
|
if (event.isReply)
|
|
|
|
FutureBuilder<Event>(
|
|
|
|
future: timeline.getEventById(event.content['m.relates_to']
|
|
|
|
['m.in_reply_to']['event_id']),
|
|
|
|
builder: (BuildContext context, snapshot) {
|
|
|
|
final Event replyEvent = snapshot.hasData
|
|
|
|
? snapshot.data
|
|
|
|
: Event(
|
|
|
|
eventId: event.content['m.relates_to']
|
|
|
|
['m.in_reply_to']['event_id'],
|
|
|
|
content: {"msgtype": "m.text", "body": "..."},
|
|
|
|
senderId: event.senderId,
|
|
|
|
typeKey: "m.room.message",
|
|
|
|
room: event.room,
|
|
|
|
roomId: event.roomId,
|
|
|
|
status: 1,
|
|
|
|
time: DateTime.now(),
|
|
|
|
);
|
|
|
|
return Container(
|
|
|
|
margin: EdgeInsets.symmetric(vertical: 4.0),
|
|
|
|
child: ReplyContent(replyEvent, lightText: ownMessage),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2020-02-09 16:26:24 +01:00
|
|
|
MessageContent(
|
|
|
|
event,
|
|
|
|
textColor: textColor,
|
|
|
|
),
|
|
|
|
],
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
];
|
2020-01-17 11:08:12 +01:00
|
|
|
final Widget avatarOrSizedBox = sameSender
|
|
|
|
? SizedBox(width: 40)
|
|
|
|
: Avatar(
|
|
|
|
event.sender.avatarUrl,
|
2020-01-18 13:22:22 +01:00
|
|
|
event.sender.calcDisplayname(),
|
2020-01-17 11:08:12 +01:00
|
|
|
onTap: () => Navigator.of(context).push(
|
|
|
|
AppRoute.defaultRoute(
|
|
|
|
context,
|
|
|
|
ContentWebView(event.sender.avatarUrl),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
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
|
|
|
}
|
2020-01-17 10:39:46 +01:00
|
|
|
|
2020-02-09 16:26:24 +01:00
|
|
|
return InkWell(
|
|
|
|
onTap: longPressSelect ? () => null : () => onSelect(event),
|
|
|
|
splashColor: Theme.of(context).primaryColor.withAlpha(100),
|
|
|
|
onLongPress: !longPressSelect ? null : () => onSelect(event),
|
|
|
|
child: AnimatedContainer(
|
|
|
|
duration: Duration(milliseconds: 300),
|
|
|
|
curve: Curves.fastOutSlowIn,
|
|
|
|
color: selected
|
|
|
|
? Theme.of(context).primaryColor.withAlpha(100)
|
|
|
|
: Theme.of(context).primaryColor.withAlpha(0),
|
2020-02-14 14:34:28 +01:00
|
|
|
child: Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
left: 8.0, right: 8.0, bottom: sameSender ? 4.0 : 8.0),
|
|
|
|
child: Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
|
|
|
mainAxisAlignment: rowMainAxisAlignment,
|
|
|
|
children: rowChildren,
|
|
|
|
),
|
2020-02-09 16:26:24 +01:00
|
|
|
),
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|