2024-11-17 14:42:09 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-11-18 14:52:22 +00:00
|
|
|
import 'package:flutter_context_menu/flutter_context_menu.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
import 'package:gap/gap.dart';
|
2024-11-18 14:33:03 +00:00
|
|
|
import 'package:material_symbols_icons/symbols.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:styled_widget/styled_widget.dart';
|
|
|
|
import 'package:surface/providers/user_directory.dart';
|
2024-11-18 14:52:22 +00:00
|
|
|
import 'package:surface/providers/userinfo.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
import 'package:surface/types/chat.dart';
|
|
|
|
import 'package:surface/widgets/account/account_image.dart';
|
2024-11-17 16:55:39 +00:00
|
|
|
import 'package:surface/widgets/attachment/attachment_list.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
import 'package:surface/widgets/markdown_content.dart';
|
2024-11-18 14:33:03 +00:00
|
|
|
import 'package:swipe_to/swipe_to.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
|
|
|
|
class ChatMessage extends StatelessWidget {
|
|
|
|
final SnChatMessage data;
|
2024-11-18 14:33:03 +00:00
|
|
|
final bool isCompact;
|
2024-11-17 14:42:09 +00:00
|
|
|
final bool isMerged;
|
|
|
|
final bool hasMerged;
|
2024-11-17 13:30:02 +00:00
|
|
|
final bool isPending;
|
2024-11-18 14:52:22 +00:00
|
|
|
final Function(SnChatMessage)? onReply;
|
|
|
|
final Function(SnChatMessage)? onEdit;
|
|
|
|
final Function(SnChatMessage)? onDelete;
|
2024-11-17 14:42:09 +00:00
|
|
|
const ChatMessage({
|
|
|
|
super.key,
|
|
|
|
required this.data,
|
2024-11-18 14:33:03 +00:00
|
|
|
this.isCompact = false,
|
2024-11-17 14:42:09 +00:00
|
|
|
this.isMerged = false,
|
|
|
|
this.hasMerged = false,
|
|
|
|
this.isPending = false,
|
2024-11-18 14:33:03 +00:00
|
|
|
this.onReply,
|
2024-11-18 14:52:22 +00:00
|
|
|
this.onEdit,
|
|
|
|
this.onDelete,
|
2024-11-17 14:42:09 +00:00
|
|
|
});
|
2024-11-16 17:16:54 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-11-18 14:52:22 +00:00
|
|
|
final ua = context.read<UserProvider>();
|
2024-11-16 17:16:54 +00:00
|
|
|
final ud = context.read<UserDirectoryProvider>();
|
|
|
|
final user = ud.getAccountFromCache(data.sender.accountId);
|
|
|
|
|
2024-11-18 14:52:22 +00:00
|
|
|
final isOwner = ua.isAuthorized && data.sender.accountId == ua.user!.id;
|
|
|
|
|
2024-11-17 14:42:09 +00:00
|
|
|
final dateFormatter = DateFormat('MM/dd HH:mm');
|
|
|
|
|
2024-11-18 14:33:03 +00:00
|
|
|
return SwipeTo(
|
|
|
|
key: Key('chat-message-${data.id}'),
|
|
|
|
iconOnLeftSwipe: Symbols.reply,
|
|
|
|
swipeSensitivity: 20,
|
2024-11-18 14:52:22 +00:00
|
|
|
onLeftSwipe: onReply != null ? (_) => onReply!(data) : null,
|
|
|
|
child: ContextMenuRegion(
|
|
|
|
contextMenu: ContextMenu(
|
|
|
|
entries: [
|
|
|
|
MenuHeader(text: "eventResourceTag".tr(args: ['#${data.id}'])),
|
|
|
|
if (onReply != null)
|
|
|
|
MenuItem(
|
|
|
|
label: 'reply'.tr(),
|
|
|
|
icon: Symbols.reply,
|
|
|
|
onSelected: () {
|
|
|
|
onReply!(data);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
if (isOwner && onEdit != null)
|
|
|
|
MenuItem(
|
|
|
|
label: 'edit'.tr(),
|
|
|
|
icon: Symbols.edit,
|
|
|
|
onSelected: () {
|
|
|
|
onEdit!(data);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
if (isOwner && onDelete != null)
|
|
|
|
MenuItem(
|
|
|
|
label: 'delete'.tr(),
|
|
|
|
icon: Symbols.delete,
|
|
|
|
onSelected: () {
|
|
|
|
onDelete!(data);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
if (!isMerged && !isCompact)
|
|
|
|
AccountImage(
|
|
|
|
content: user?.avatar,
|
|
|
|
)
|
|
|
|
else if (isMerged)
|
|
|
|
const Gap(40),
|
|
|
|
const Gap(8),
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
if (!isMerged)
|
|
|
|
Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.baseline,
|
|
|
|
textBaseline: TextBaseline.alphabetic,
|
|
|
|
children: [
|
|
|
|
if (isCompact)
|
|
|
|
AccountImage(
|
|
|
|
content: user?.avatar,
|
|
|
|
radius: 12,
|
|
|
|
).padding(right: 6),
|
|
|
|
Text(
|
|
|
|
(data.sender.nick?.isNotEmpty ?? false)
|
|
|
|
? data.sender.nick!
|
|
|
|
: user!.nick,
|
|
|
|
).bold(),
|
|
|
|
const Gap(6),
|
|
|
|
Text(
|
|
|
|
dateFormatter.format(data.createdAt.toLocal()),
|
|
|
|
).fontSize(13),
|
|
|
|
],
|
2024-11-18 14:33:03 +00:00
|
|
|
),
|
2024-11-18 14:52:22 +00:00
|
|
|
if (isCompact) const Gap(4),
|
|
|
|
if (data.preload?.quoteEvent != null)
|
|
|
|
StyledWidget(Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius:
|
|
|
|
const BorderRadius.all(Radius.circular(8)),
|
|
|
|
border: Border.all(
|
|
|
|
color: Theme.of(context).dividerColor,
|
|
|
|
width: 1,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
padding: const EdgeInsets.only(
|
|
|
|
left: 4,
|
|
|
|
right: 4,
|
|
|
|
top: 8,
|
|
|
|
bottom: 6,
|
|
|
|
),
|
|
|
|
child: ChatMessage(
|
|
|
|
data: data.preload!.quoteEvent!,
|
|
|
|
isCompact: true,
|
|
|
|
onReply: onReply,
|
|
|
|
onEdit: onEdit,
|
|
|
|
onDelete: onDelete,
|
|
|
|
),
|
|
|
|
)).padding(bottom: 4, top: isMerged ? 4 : 2),
|
|
|
|
if (data.body['text'] != null)
|
|
|
|
MarkdownTextContent(
|
|
|
|
content: data.body['text'],
|
|
|
|
isAutoWarp: true,
|
2024-11-18 14:33:03 +00:00
|
|
|
),
|
2024-11-18 15:59:08 +00:00
|
|
|
if (data.type == 'messages.delete' &&
|
|
|
|
data.relatedEventId != null)
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
const Icon(Symbols.delete),
|
|
|
|
const Gap(8),
|
|
|
|
Text(
|
|
|
|
'messageDeleted'
|
|
|
|
.tr(args: ['#${data.relatedEventId}']),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-11-18 14:52:22 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
).opacity(isPending ? 0.5 : 1),
|
|
|
|
if (data.preload?.attachments?.isNotEmpty ?? false)
|
|
|
|
AttachmentList(
|
|
|
|
data: data.preload!.attachments!,
|
|
|
|
bordered: true,
|
|
|
|
noGrow: true,
|
|
|
|
maxHeight: 520,
|
|
|
|
listPadding: const EdgeInsets.only(top: 8),
|
|
|
|
),
|
|
|
|
if (!hasMerged && !isCompact) const Gap(12),
|
|
|
|
],
|
|
|
|
),
|
2024-11-18 14:33:03 +00:00
|
|
|
),
|
2024-11-18 13:38:15 +00:00
|
|
|
);
|
2024-11-16 17:16:54 +00:00
|
|
|
}
|
|
|
|
}
|