2020-02-11 12:49:39 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2020-02-11 12:49:39 +01:00
|
|
|
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import '../../../config/app_config.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'html_message.dart';
|
2020-05-09 13:36:41 +02:00
|
|
|
|
2020-02-11 12:49:39 +01:00
|
|
|
class ReplyContent extends StatelessWidget {
|
|
|
|
final Event replyEvent;
|
2022-05-27 15:13:24 +02:00
|
|
|
final bool ownMessage;
|
2022-01-29 12:35:03 +01:00
|
|
|
final Timeline? timeline;
|
2020-02-11 12:49:39 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
const ReplyContent(
|
|
|
|
this.replyEvent, {
|
2022-05-27 15:13:24 +02:00
|
|
|
this.ownMessage = false,
|
2022-01-29 12:35:03 +01:00
|
|
|
Key? key,
|
|
|
|
this.timeline,
|
|
|
|
}) : super(key: key);
|
2020-02-11 12:49:39 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-05-09 13:36:41 +02:00
|
|
|
Widget replyBody;
|
2022-01-29 12:35:03 +01:00
|
|
|
final timeline = this.timeline;
|
|
|
|
final displayEvent =
|
|
|
|
timeline != null ? replyEvent.getDisplayEvent(timeline) : replyEvent;
|
2021-11-13 13:06:36 +01:00
|
|
|
final fontSize = AppConfig.messageFontSize * AppConfig.fontSizeFactor;
|
2022-01-29 12:35:03 +01:00
|
|
|
if (AppConfig.renderHtml &&
|
2020-08-12 11:30:31 +02:00
|
|
|
[EventTypes.Message, EventTypes.Encrypted]
|
|
|
|
.contains(displayEvent.type) &&
|
2020-05-13 15:58:59 +02:00
|
|
|
[MessageTypes.Text, MessageTypes.Notice, MessageTypes.Emote]
|
2020-08-12 11:30:31 +02:00
|
|
|
.contains(displayEvent.messageType) &&
|
|
|
|
!displayEvent.redacted &&
|
|
|
|
displayEvent.content['format'] == 'org.matrix.custom.html' &&
|
|
|
|
displayEvent.content['formatted_body'] is String) {
|
2022-01-29 12:35:03 +01:00
|
|
|
String? html = displayEvent.content['formatted_body'];
|
2020-08-12 11:30:31 +02:00
|
|
|
if (displayEvent.messageType == MessageTypes.Emote) {
|
2020-05-13 15:58:59 +02:00
|
|
|
html = '* $html';
|
2020-05-09 13:36:41 +02:00
|
|
|
}
|
|
|
|
replyBody = HtmlMessage(
|
2022-01-29 12:35:03 +01:00
|
|
|
html: html!,
|
2020-05-15 07:47:32 +02:00
|
|
|
defaultTextStyle: TextStyle(
|
2022-05-27 15:13:24 +02:00
|
|
|
color: ownMessage
|
|
|
|
? Theme.of(context).colorScheme.onPrimary
|
|
|
|
: Theme.of(context).colorScheme.onBackground,
|
2020-12-27 16:47:03 +01:00
|
|
|
fontSize: fontSize,
|
2020-05-15 07:47:32 +02:00
|
|
|
),
|
2020-05-09 13:36:41 +02:00
|
|
|
maxLines: 1,
|
2020-08-12 11:30:31 +02:00
|
|
|
room: displayEvent.room,
|
2020-12-27 16:47:03 +01:00
|
|
|
emoteSize: fontSize * 1.5,
|
2020-05-09 13:36:41 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
replyBody = Text(
|
2022-05-30 13:44:05 +02:00
|
|
|
displayEvent.calcLocalizedBodyFallback(
|
2022-01-29 12:35:03 +01:00
|
|
|
MatrixLocals(L10n.of(context)!),
|
|
|
|
withSenderNamePrefix: false,
|
|
|
|
hideReply: true,
|
|
|
|
),
|
2020-05-09 13:36:41 +02:00
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
maxLines: 1,
|
|
|
|
style: TextStyle(
|
2022-05-27 15:13:24 +02:00
|
|
|
color: ownMessage
|
|
|
|
? Theme.of(context).colorScheme.onPrimary
|
|
|
|
: Theme.of(context).colorScheme.onBackground,
|
2021-08-01 10:10:22 +02:00
|
|
|
fontSize: fontSize,
|
2020-05-15 07:47:32 +02:00
|
|
|
),
|
2020-05-09 13:36:41 +02:00
|
|
|
);
|
|
|
|
}
|
2020-02-11 12:49:39 +01:00
|
|
|
return Row(
|
2020-05-14 07:43:21 +02:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
2020-02-11 12:49:39 +01:00
|
|
|
children: <Widget>[
|
|
|
|
Container(
|
|
|
|
width: 3,
|
2021-08-01 10:10:22 +02:00
|
|
|
height: fontSize * 2 + 6,
|
2022-05-27 15:13:24 +02:00
|
|
|
color: ownMessage
|
|
|
|
? Theme.of(context).colorScheme.onPrimary
|
|
|
|
: Theme.of(context).colorScheme.onBackground,
|
2020-02-11 12:49:39 +01:00
|
|
|
),
|
2021-10-14 18:09:30 +02:00
|
|
|
const SizedBox(width: 6),
|
2020-05-14 07:43:21 +02:00
|
|
|
Flexible(
|
2020-02-11 12:49:39 +01:00
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
2022-05-30 13:44:05 +02:00
|
|
|
FutureBuilder<User?>(
|
|
|
|
future: displayEvent.fetchSenderUser(),
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
return Text(
|
|
|
|
(snapshot.data?.calcDisplayname() ??
|
|
|
|
displayEvent.senderFromMemoryOrFallback
|
|
|
|
.calcDisplayname()) +
|
|
|
|
':',
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: ownMessage
|
|
|
|
? Theme.of(context).colorScheme.onPrimary
|
|
|
|
: Theme.of(context).colorScheme.onBackground,
|
|
|
|
fontSize: fontSize,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}),
|
2020-05-09 13:36:41 +02:00
|
|
|
replyBody,
|
2020-02-11 12:49:39 +01:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|