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

238 lines
8.3 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 16:50:34 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:matrix/matrix.dart';
2020-09-05 11:45:03 +00:00
import 'package:matrix_link_text/link_text.dart';
2021-12-27 08:35:07 +00:00
import 'package:fluffychat/pages/chat/events/video_player.dart';
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
2021-11-09 20:32:16 +00:00
import 'package:fluffychat/widgets/matrix.dart';
import '../../../config/app_config.dart';
import '../../../utils/platform_infos.dart';
import '../../../utils/url_launcher.dart';
import '../../bootstrap/bootstrap_dialog.dart';
2021-11-09 20:32:16 +00:00
import 'audio_player.dart';
2021-10-26 16:50:34 +00:00
import 'html_message.dart';
2021-11-09 20:32:16 +00:00
import 'image_bubble.dart';
2021-08-01 07:53:43 +00:00
import 'map_bubble.dart';
2021-10-26 16:50:34 +00:00
import 'message_download_content.dart';
import 'sticker.dart';
2020-01-01 18:10:13 +00:00
class MessageContent extends StatelessWidget {
final Event event;
final Color textColor;
2022-01-29 11:35:03 +00:00
final void Function(Event)? onInfoTab;
2020-01-01 18:10:13 +00:00
const MessageContent(this.event,
{this.onInfoTab, Key? key, required this.textColor})
2021-11-13 12:06:36 +00:00
: super(key: key);
2020-01-01 18:10:13 +00:00
2020-11-22 10:46:31 +00:00
void _verifyOrRequestKey(BuildContext context) async {
if (event.content['can_request_session'] != true) {
2021-05-23 11:11:55 +00:00
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
2021-04-03 11:09:20 +00:00
content: Text(
event.type == EventTypes.Encrypted
2022-01-29 11:35:03 +00:00
? L10n.of(context)!.needPantalaimonWarning
2020-11-22 10:46:31 +00:00
: event.getLocalizedBody(
2022-01-29 11:35:03 +00:00
MatrixLocals(L10n.of(context)!),
2020-11-22 10:46:31 +00:00
),
2021-04-03 11:09:20 +00:00
)));
2020-11-22 10:46:31 +00:00
return;
}
final client = Matrix.of(context).client;
2022-01-29 11:35:03 +00:00
if (client.isUnknownSession && client.encryption!.crossSigning.enabled) {
await BootstrapDialog(
client: Matrix.of(context).client,
).show(context);
final timeline = await event.room.getTimeline();
timeline.requestKeys();
timeline.cancelSubscriptions();
2020-11-22 10:46:31 +00:00
} else {
2020-12-25 08:58:34 +00:00
final success = await showFutureLoadingDialog(
context: context,
future: () => event.requestKey(),
2020-11-22 10:46:31 +00:00
);
2020-12-25 08:58:34 +00:00
if (success.error == null) {
2021-05-23 11:11:55 +00:00
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
2022-01-29 11:35:03 +00:00
content: Text(L10n.of(context)!.requestToReadOlderMessages)));
2020-11-22 10:46:31 +00:00
}
}
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2021-11-13 12:06:36 +00:00
final fontSize = AppConfig.messageFontSize * AppConfig.fontSizeFactor;
2021-11-15 06:59:51 +00:00
final buttonTextColor =
event.senderId == Matrix.of(context).client.userID ? textColor : null;
2020-01-01 18:10:13 +00:00
switch (event.type) {
case EventTypes.Message:
2020-02-21 08:45:37 +00:00
case EventTypes.Encrypted:
case EventTypes.Sticker:
2020-03-29 18:13:25 +00:00
switch (event.messageType) {
case MessageTypes.Image:
2021-11-19 09:01:35 +00:00
return ImageBubble(
event,
width: 400,
height: 300,
fit: BoxFit.cover,
);
case MessageTypes.Sticker:
2021-11-19 09:01:35 +00:00
return Sticker(event);
case MessageTypes.Audio:
if (PlatformInfos.isMobile) {
return AudioPlayerWidget(
event,
color: textColor,
);
}
return MessageDownloadContent(event, textColor);
2020-03-13 20:58:48 +00:00
case MessageTypes.Video:
if (PlatformInfos.isMobile || PlatformInfos.isWeb) {
2021-12-27 08:35:07 +00:00
return EventVideoPlayer(event);
2021-08-08 15:55:00 +00:00
}
return MessageDownloadContent(event, textColor);
2020-03-13 20:58:48 +00:00
case MessageTypes.File:
return MessageDownloadContent(event, textColor);
case MessageTypes.Text:
2020-05-09 11:36:41 +00:00
case MessageTypes.Notice:
case MessageTypes.Emote:
if (AppConfig.renderHtml &&
2020-05-13 13:58:59 +00:00
!event.redacted &&
2020-09-21 07:44:13 +00:00
event.isRichMessage) {
var html = event.formattedText;
2020-05-09 11:36:41 +00:00
if (event.messageType == MessageTypes.Emote) {
2020-05-13 13:58:59 +00:00
html = '* $html';
2020-05-09 11:36:41 +00:00
}
final bigEmotes = event.onlyEmotes &&
event.numberEmotes > 0 &&
event.numberEmotes <= 10;
2020-05-09 11:36:41 +00:00
return HtmlMessage(
html: html,
2020-05-15 05:47:32 +00:00
defaultTextStyle: TextStyle(
color: textColor,
2020-09-20 09:35:28 +00:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
2020-05-15 05:47:32 +00:00
),
2021-01-27 19:08:09 +00:00
linkStyle: TextStyle(
color: textColor.withAlpha(150),
2021-01-27 19:08:09 +00:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: TextDecoration.underline,
),
2020-05-14 05:43:21 +00:00
room: event.room,
2020-09-20 09:35:28 +00:00
emoteSize: bigEmotes ? fontSize * 3 : fontSize * 1.5,
2020-05-09 11:36:41 +00:00
);
}
// else we fall through to the normal message rendering
continue textmessage;
case MessageTypes.BadEncrypted:
2020-11-22 10:46:31 +00:00
case EventTypes.Encrypted:
2021-11-13 12:06:36 +00:00
return _ButtonContent(
2021-11-15 06:59:51 +00:00
textColor: buttonTextColor,
2020-11-22 10:46:31 +00:00
onPressed: () => _verifyOrRequestKey(context),
2021-10-14 16:09:30 +00:00
icon: const Icon(Icons.lock_outline),
2022-01-29 11:35:03 +00:00
label: L10n.of(context)!.encrypted,
2020-11-22 10:46:31 +00:00
);
case MessageTypes.Location:
2021-08-01 07:53:43 +00:00
final geoUri =
2022-01-29 11:35:03 +00:00
Uri.tryParse(event.content.tryGet<String>('geo_uri')!);
if (geoUri != null && geoUri.scheme == 'geo') {
2021-08-01 07:53:43 +00:00
final latlong = geoUri.path
.split(';')
.first
.split(',')
.map((s) => double.tryParse(s))
.toList();
if (latlong.length == 2 &&
latlong.first != null &&
latlong.last != null) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
MapBubble(
2022-01-29 11:35:03 +00:00
latitude: latlong.first!,
longitude: latlong.last!,
2021-08-01 07:53:43 +00:00
),
2021-10-14 16:09:30 +00:00
const SizedBox(height: 6),
2021-08-01 07:53:43 +00:00
OutlinedButton.icon(
icon: Icon(Icons.location_on_outlined, color: textColor),
onPressed:
UrlLauncher(context, geoUri.toString()).launchUrl,
label: Text(
2022-01-29 11:35:03 +00:00
L10n.of(context)!.openInMaps,
2021-08-01 07:53:43 +00:00
style: TextStyle(color: textColor),
),
),
],
);
}
}
continue textmessage;
case MessageTypes.None:
2020-05-09 11:36:41 +00:00
textmessage:
2020-02-21 08:45:37 +00:00
default:
2020-11-22 20:45:23 +00:00
if (event.redacted) {
2021-11-13 12:06:36 +00:00
return _ButtonContent(
2022-01-29 11:35:03 +00:00
label: L10n.of(context)!
2021-11-13 12:06:36 +00:00
.redactedAnEvent(event.sender.calcDisplayname()),
icon: const Icon(Icons.delete_outlined),
2021-11-15 06:59:51 +00:00
textColor: buttonTextColor,
2022-01-29 11:35:03 +00:00
onPressed: () => onInfoTab!(event),
2020-11-22 20:45:23 +00:00
);
}
final bigEmotes = event.onlyEmotes &&
event.numberEmotes > 0 &&
event.numberEmotes <= 10;
2020-01-06 19:36:11 +00:00
return LinkText(
2022-01-29 11:35:03 +00:00
text: event.getLocalizedBody(MatrixLocals(L10n.of(context)!),
hideReply: true),
2020-01-06 19:36:11 +00:00
textStyle: TextStyle(
color: textColor,
2020-09-20 09:35:28 +00:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: event.redacted ? TextDecoration.lineThrough : null,
),
2021-01-27 19:08:09 +00:00
linkStyle: TextStyle(
color: textColor.withAlpha(150),
2021-01-27 19:08:09 +00:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: TextDecoration.underline,
),
2020-09-05 11:45:03 +00:00
onLinkTap: (url) => UrlLauncher(context, url).launchUrl(),
);
2020-01-04 08:37:09 +00:00
}
2020-01-19 14:07:42 +00:00
default:
2021-11-13 12:06:36 +00:00
return _ButtonContent(
2022-01-29 11:35:03 +00:00
label: L10n.of(context)!
2020-06-10 08:07:01 +00:00
.userSentUnknownEvent(event.sender.calcDisplayname(), event.type),
2021-11-13 12:06:36 +00:00
icon: const Icon(Icons.info_outlined),
2021-11-15 06:59:51 +00:00
textColor: buttonTextColor,
2022-01-29 11:35:03 +00:00
onPressed: () => onInfoTab!(event),
2020-01-02 22:38:46 +00:00
);
2020-01-01 18:10:13 +00:00
}
}
}
2021-11-13 12:06:36 +00:00
class _ButtonContent extends StatelessWidget {
final void Function() onPressed;
final String label;
final Icon icon;
2022-01-29 11:35:03 +00:00
final Color? textColor;
2021-11-13 12:06:36 +00:00
const _ButtonContent({
2022-01-29 11:35:03 +00:00
required this.label,
required this.icon,
required this.textColor,
required this.onPressed,
Key? key,
2021-11-13 12:06:36 +00:00
}) : super(key: key);
@override
Widget build(BuildContext context) {
return TextButton.icon(
2021-11-13 12:06:36 +00:00
onPressed: onPressed,
icon: icon,
2021-11-14 11:00:49 +00:00
label: Text(label, overflow: TextOverflow.ellipsis),
2021-11-15 06:59:51 +00:00
style: TextButton.styleFrom(primary: textColor),
2021-11-13 12:06:36 +00:00
);
}
}