Solian/lib/widgets/posts/post_item.dart

85 lines
2.5 KiB
Dart
Raw Normal View History

2024-05-18 10:17:16 +00:00
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:get/get_utils/get_utils.dart';
import 'package:solian/models/post.dart';
import 'package:solian/widgets/account/account_avatar.dart';
2024-05-18 14:23:36 +00:00
import 'package:solian/widgets/attachments/attachment_list.dart';
2024-05-19 12:30:50 +00:00
import 'package:solian/widgets/posts/post_action.dart';
2024-05-18 10:17:16 +00:00
import 'package:timeago/timeago.dart' show format;
class PostItem extends StatefulWidget {
final Post item;
const PostItem({super.key, required this.item});
@override
State<PostItem> createState() => _PostItemState();
}
class _PostItemState extends State<PostItem> {
2024-05-19 12:30:50 +00:00
late final Post item;
@override
void initState() {
item = widget.item;
super.initState();
}
2024-05-18 10:17:16 +00:00
@override
Widget build(BuildContext context) {
2024-05-19 12:30:50 +00:00
final hasAttachment = item.attachments?.isNotEmpty ?? false;
2024-05-18 14:23:36 +00:00
return Column(
2024-05-18 10:17:16 +00:00
children: [
2024-05-18 14:23:36 +00:00
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
AccountAvatar(content: item.author.avatar.toString()),
2024-05-18 14:23:36 +00:00
Expanded(
child: Column(
2024-05-18 10:17:16 +00:00
children: [
2024-05-18 14:23:36 +00:00
Row(
children: [
Text(
2024-05-19 12:30:50 +00:00
item.author.nick,
2024-05-18 14:23:36 +00:00
style: const TextStyle(fontWeight: FontWeight.bold),
2024-05-18 16:56:32 +00:00
).paddingOnly(left: 12),
2024-05-19 12:30:50 +00:00
Text(format(item.createdAt, locale: 'en_short')).paddingOnly(left: 4),
2024-05-18 14:23:36 +00:00
],
),
Markdown(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
2024-05-19 12:30:50 +00:00
data: item.content,
2024-05-18 14:23:36 +00:00
padding: const EdgeInsets.all(0),
2024-05-18 16:56:32 +00:00
).paddingOnly(left: 12, right: 8),
2024-05-18 10:17:16 +00:00
],
),
2024-05-18 14:23:36 +00:00
)
],
).paddingOnly(
top: 18,
2024-05-19 12:30:50 +00:00
bottom: hasAttachment ? 10 : 0,
2024-05-18 14:23:36 +00:00
right: 16,
left: 16,
),
2024-05-19 12:30:50 +00:00
AttachmentList(attachmentsId: item.attachments ?? List.empty()),
PostQuickAction(
item: widget.item,
onReact: (symbol, changes) {
setState(() {
item.reactionList[symbol] = (item.reactionList[symbol] ?? 0) + changes;
});
},
).paddingOnly(
top: hasAttachment ? 10 : 6,
left: hasAttachment ? 16 : 60,
right: 16,
bottom: 10,
),
2024-05-18 10:17:16 +00:00
],
);
}
}