Surface/lib/widgets/post/post_item.dart

335 lines
11 KiB
Dart
Raw Normal View History

2024-11-10 10:37:34 +00:00
import 'package:easy_localization/easy_localization.dart';
2024-11-08 17:11:56 +00:00
import 'package:flutter/material.dart';
2024-11-10 10:37:34 +00:00
import 'package:go_router/go_router.dart';
2024-11-09 03:16:14 +00:00
import 'package:material_symbols_icons/symbols.dart';
import 'package:provider/provider.dart';
2024-11-09 03:16:14 +00:00
import 'package:relative_time/relative_time.dart';
2024-11-13 16:20:59 +00:00
import 'package:responsive_framework/responsive_framework.dart';
2024-11-09 03:16:14 +00:00
import 'package:styled_widget/styled_widget.dart';
import 'package:surface/providers/userinfo.dart';
2024-11-08 17:11:56 +00:00
import 'package:surface/types/post.dart';
2024-11-09 03:16:14 +00:00
import 'package:surface/widgets/account/account_image.dart';
2024-11-09 04:04:03 +00:00
import 'package:surface/widgets/attachment/attachment_list.dart';
2024-11-09 03:16:14 +00:00
import 'package:surface/widgets/markdown_content.dart';
import 'package:gap/gap.dart';
2024-11-11 12:06:00 +00:00
import 'package:surface/widgets/post/post_comment_list.dart';
2024-11-12 12:47:40 +00:00
import 'package:surface/widgets/post/post_reaction.dart';
2024-11-08 17:11:56 +00:00
class PostItem extends StatelessWidget {
final SnPost data;
2024-11-12 12:47:40 +00:00
final bool showReactions;
2024-11-11 12:06:00 +00:00
final bool showComments;
2024-11-12 12:47:40 +00:00
final Function(SnPost data)? onChanged;
2024-11-11 12:06:00 +00:00
const PostItem({
super.key,
required this.data,
2024-11-12 12:47:40 +00:00
this.showReactions = true,
2024-11-11 12:06:00 +00:00
this.showComments = true,
2024-11-12 12:47:40 +00:00
this.onChanged,
2024-11-11 12:06:00 +00:00
});
2024-11-08 17:11:56 +00:00
2024-11-12 12:47:40 +00:00
void _onChanged(SnPost data) {
if (onChanged != null) onChanged!(data);
}
2024-11-08 17:11:56 +00:00
@override
Widget build(BuildContext context) {
2024-11-13 16:20:59 +00:00
final isListAttachments =
ResponsiveBreakpoints.of(context).largerThan(MOBILE) ||
(data.preload?.attachments?.length ?? 0) > 1;
2024-11-08 17:11:56 +00:00
return Column(
2024-11-09 03:16:14 +00:00
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_PostContentHeader(data: data).padding(horizontal: 12, vertical: 8),
2024-11-09 03:16:14 +00:00
_PostContentBody(data: data.body).padding(horizontal: 16, bottom: 6),
2024-11-13 14:05:40 +00:00
if (data.repostTo != null)
_PostQuoteContent(child: data.repostTo!).padding(
2024-11-13 16:20:59 +00:00
horizontal: 12,
2024-11-13 14:05:40 +00:00
),
2024-11-09 04:04:03 +00:00
if (data.preload?.attachments?.isNotEmpty ?? true)
2024-11-11 12:06:00 +00:00
AttachmentList(
data: data.preload!.attachments!,
bordered: true,
2024-11-13 16:20:59 +00:00
maxHeight: 520,
).padding(horizontal: isListAttachments ? 12 : 0),
2024-11-12 12:47:40 +00:00
_PostBottomAction(
data: data,
showComments: showComments,
showReactions: showReactions,
onChanged: _onChanged,
).padding(left: 12, right: 18),
],
);
}
}
class _PostBottomAction extends StatelessWidget {
final SnPost data;
2024-11-11 12:06:00 +00:00
final bool showComments;
2024-11-12 12:47:40 +00:00
final bool showReactions;
final Function(SnPost data) onChanged;
const _PostBottomAction({
required this.data,
required this.showComments,
required this.showReactions,
required this.onChanged,
});
@override
Widget build(BuildContext context) {
final iconColor = Theme.of(context).colorScheme.onSurface.withAlpha(
(255 * 0.8).round(),
);
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Row(
children: [
2024-11-12 12:47:40 +00:00
if (showReactions)
InkWell(
child: Row(
children: [
Icon(Symbols.add_reaction, size: 20, color: iconColor),
const Gap(8),
if (data.totalDownvote > 0 || data.totalUpvote > 0)
Text('postReactionPoints').plural(
data.totalUpvote - data.totalDownvote,
)
else
Text('postReact').tr(),
],
).padding(horizontal: 8, vertical: 8),
onTap: () {
showModalBottomSheet(
context: context,
builder: (context) => PostReactionPopup(
data: data,
onChanged: (value, isPositive, delta) {
onChanged(data.copyWith(
totalUpvote: isPositive
? data.totalUpvote + delta
: data.totalUpvote,
totalDownvote: !isPositive
? data.totalDownvote + delta
: data.totalDownvote,
metric: data.metric.copyWith(reactionList: value),
));
},
),
);
},
),
2024-11-11 12:06:00 +00:00
if (showComments)
InkWell(
child: Row(
children: [
Icon(Symbols.comment, size: 20, color: iconColor),
const Gap(8),
Text('postComments').plural(data.metric.replyCount),
],
).padding(horizontal: 8, vertical: 8),
onTap: () {
showModalBottomSheet(
context: context,
useRootNavigator: true,
builder: (context) => PostCommentListPopup(
postId: data.id,
commentCount: data.metric.replyCount,
),
);
},
),
].expand((ele) => [ele, const Gap(8)]).toList()
..removeLast(),
),
InkWell(
2024-11-11 12:06:00 +00:00
child: Icon(
Symbols.share,
size: 20,
color: iconColor,
).padding(horizontal: 8, vertical: 8),
onTap: () {},
),
2024-11-09 03:16:14 +00:00
],
2024-11-08 17:11:56 +00:00
);
}
}
2024-11-09 03:16:14 +00:00
class _PostContentHeader extends StatelessWidget {
final SnPost data;
2024-11-13 14:05:40 +00:00
final bool isCompact;
final bool showActions;
const _PostContentHeader({
required this.data,
this.isCompact = false,
this.showActions = true,
});
2024-11-09 03:16:14 +00:00
@override
Widget build(BuildContext context) {
final ua = context.read<UserProvider>();
final isAuthor = ua.isAuthorized && data.publisher.accountId == ua.user!.id;
2024-11-09 03:16:14 +00:00
return Row(
children: [
2024-11-13 14:05:40 +00:00
AccountImage(
content: data.publisher.avatar,
radius: isCompact ? 12 : 20,
),
Gap(isCompact ? 8 : 12),
if (isCompact)
Row(
2024-11-09 03:16:14 +00:00
children: [
Text(data.publisher.nick).bold(),
2024-11-13 14:05:40 +00:00
const Gap(4),
2024-11-09 03:16:14 +00:00
Row(
children: [
Text('@${data.publisher.name}').fontSize(13),
const Gap(4),
Text(RelativeTime(context).format(
data.publishedAt ?? data.createdAt,
)).fontSize(13),
2024-11-09 03:16:14 +00:00
],
).opacity(0.8),
],
2024-11-13 14:05:40 +00:00
)
else
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(data.publisher.nick).bold(),
Row(
children: [
Text('@${data.publisher.name}').fontSize(13),
const Gap(4),
Text(RelativeTime(context).format(
data.publishedAt ?? data.createdAt,
)).fontSize(13),
],
).opacity(0.8),
],
),
2024-11-09 03:16:14 +00:00
),
2024-11-13 14:05:40 +00:00
if (showActions)
PopupMenuButton(
icon: const Icon(Symbols.more_horiz),
style: const ButtonStyle(
visualDensity: VisualDensity(horizontal: -4, vertical: -4),
),
itemBuilder: (BuildContext context) => <PopupMenuEntry>[
if (isAuthor)
PopupMenuItem(
child: Row(
children: [
const Icon(Symbols.edit),
const Gap(16),
Text('edit').tr(),
],
),
onTap: () {
GoRouter.of(context).pushNamed(
'postEditor',
pathParameters: {'mode': data.typePlural},
queryParameters: {'editing': data.id.toString()},
);
},
),
if (isAuthor)
PopupMenuItem(
child: Row(
children: [
const Icon(Symbols.delete),
const Gap(16),
Text('delete').tr(),
],
),
),
if (isAuthor) const PopupMenuDivider(),
PopupMenuItem(
child: Row(
children: [
2024-11-13 14:05:40 +00:00
const Icon(Symbols.reply),
const Gap(16),
2024-11-13 14:05:40 +00:00
Text('reply').tr(),
],
),
onTap: () {
GoRouter.of(context).pushNamed(
'postEditor',
pathParameters: {'mode': data.typePlural},
2024-11-13 14:05:40 +00:00
queryParameters: {'replying': data.id.toString()},
);
},
),
PopupMenuItem(
child: Row(
children: [
2024-11-13 14:05:40 +00:00
const Icon(Symbols.forward),
const Gap(16),
2024-11-13 14:05:40 +00:00
Text('repost').tr(),
],
),
2024-11-13 14:05:40 +00:00
onTap: () {
GoRouter.of(context).pushNamed(
'postEditor',
pathParameters: {'mode': data.typePlural},
queryParameters: {'reposting': data.id.toString()},
);
},
),
2024-11-13 14:05:40 +00:00
const PopupMenuDivider(),
PopupMenuItem(
child: Row(
children: [
const Icon(Symbols.flag),
const Gap(16),
Text('report').tr(),
],
),
2024-11-10 10:37:34 +00:00
),
2024-11-13 14:05:40 +00:00
],
),
2024-11-09 03:16:14 +00:00
],
);
2024-11-09 03:16:14 +00:00
}
}
class _PostContentBody extends StatelessWidget {
final dynamic data;
const _PostContentBody({this.data});
2024-11-08 17:11:56 +00:00
@override
Widget build(BuildContext context) {
2024-11-09 03:16:14 +00:00
if (data['content'] == null) return const SizedBox.shrink();
return MarkdownTextContent(content: data['content']);
2024-11-08 17:11:56 +00:00
}
}
2024-11-13 14:05:40 +00:00
class _PostQuoteContent extends StatelessWidget {
final SnPost child;
const _PostQuoteContent({super.key, required this.child});
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
borderRadius: const BorderRadius.all(Radius.circular(8)),
border: Border.all(
color: Theme.of(context).dividerColor,
width: 1,
),
),
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: Column(
children: [
_PostContentHeader(data: child, isCompact: true, showActions: false)
.padding(bottom: 4),
_PostContentBody(data: child.body),
],
),
);
}
}