2024-04-13 11:47:31 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:solian/models/post.dart';
|
|
|
|
import 'package:solian/widgets/posts/content/article.dart';
|
|
|
|
import 'package:solian/widgets/posts/content/attachment.dart';
|
|
|
|
import 'package:solian/widgets/posts/content/moment.dart';
|
2024-04-14 10:38:44 +00:00
|
|
|
import 'package:solian/widgets/posts/item_action.dart';
|
2024-04-15 15:08:32 +00:00
|
|
|
import 'package:solian/widgets/posts/reaction_list.dart';
|
2024-04-13 11:47:31 +00:00
|
|
|
import 'package:timeago/timeago.dart' as timeago;
|
|
|
|
|
|
|
|
class PostItem extends StatefulWidget {
|
|
|
|
final Post item;
|
2024-04-13 17:07:57 +00:00
|
|
|
final bool? brief;
|
2024-04-14 10:38:44 +00:00
|
|
|
final Function? onUpdate;
|
2024-04-15 15:08:32 +00:00
|
|
|
final Function? onDelete;
|
2024-04-13 11:47:31 +00:00
|
|
|
|
2024-04-15 15:08:32 +00:00
|
|
|
const PostItem({
|
|
|
|
super.key,
|
|
|
|
required this.item,
|
|
|
|
this.brief,
|
|
|
|
this.onUpdate,
|
|
|
|
this.onDelete,
|
|
|
|
});
|
2024-04-13 11:47:31 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<PostItem> createState() => _PostItemState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PostItemState extends State<PostItem> {
|
|
|
|
Map<String, dynamic>? reactionList;
|
|
|
|
|
2024-04-14 10:38:44 +00:00
|
|
|
void viewActions(BuildContext context) {
|
|
|
|
showModalBottomSheet(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => PostItemAction(
|
|
|
|
item: widget.item,
|
|
|
|
onUpdate: widget.onUpdate,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-04-13 11:47:31 +00:00
|
|
|
Widget renderContent() {
|
|
|
|
switch (widget.item.modelType) {
|
2024-04-13 17:45:27 +00:00
|
|
|
case 'article':
|
2024-04-13 17:07:57 +00:00
|
|
|
return ArticleContent(item: widget.item, brief: widget.brief ?? true);
|
2024-04-13 11:47:31 +00:00
|
|
|
default:
|
2024-04-13 17:07:57 +00:00
|
|
|
return MomentContent(item: widget.item, brief: widget.brief ?? true);
|
2024-04-13 11:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget renderAttachments() {
|
2024-04-13 17:45:27 +00:00
|
|
|
if (widget.item.modelType == 'article') return Container();
|
|
|
|
|
|
|
|
if (widget.item.attachments != null &&
|
|
|
|
widget.item.attachments!.isNotEmpty) {
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8),
|
|
|
|
child: AttachmentList(items: widget.item.attachments!),
|
|
|
|
);
|
2024-04-13 11:47:31 +00:00
|
|
|
} else {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-15 15:08:32 +00:00
|
|
|
Widget renderReactions() {
|
|
|
|
if (reactionList != null && reactionList!.isNotEmpty) {
|
|
|
|
return Container(
|
|
|
|
height: 48,
|
|
|
|
padding: const EdgeInsets.only(top: 8, left: 4, right: 4),
|
|
|
|
child: ReactionList(
|
|
|
|
item: widget.item,
|
|
|
|
reactionList: reactionList,
|
|
|
|
onReact: (symbol, changes) {
|
|
|
|
setState(() {
|
|
|
|
if (!reactionList!.containsKey(symbol)) {
|
|
|
|
reactionList![symbol] = 0;
|
|
|
|
}
|
|
|
|
reactionList![symbol] += changes;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-13 17:45:27 +00:00
|
|
|
String getAuthorDescribe() => widget.item.author.description.isNotEmpty
|
|
|
|
? widget.item.author.description
|
|
|
|
: 'No description yet.';
|
|
|
|
|
2024-04-15 15:08:32 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
reactionList = widget.item.reactionList;
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2024-04-13 11:47:31 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-04-13 17:45:27 +00:00
|
|
|
final headingParts = [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
widget.item.author.nick,
|
|
|
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
|
|
|
),
|
|
|
|
const SizedBox(width: 4),
|
|
|
|
Text(timeago.format(widget.item.createdAt))
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
];
|
|
|
|
|
2024-04-15 15:08:32 +00:00
|
|
|
Widget content;
|
|
|
|
|
2024-04-13 17:45:27 +00:00
|
|
|
if (widget.brief ?? true) {
|
2024-04-15 15:08:32 +00:00
|
|
|
content = Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
CircleAvatar(
|
|
|
|
backgroundImage: NetworkImage(widget.item.author.avatar),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
...headingParts,
|
|
|
|
Padding(
|
|
|
|
padding:
|
|
|
|
const EdgeInsets.only(left: 12, right: 12, top: 4),
|
|
|
|
child: renderContent(),
|
|
|
|
),
|
|
|
|
renderAttachments(),
|
|
|
|
renderReactions(),
|
|
|
|
],
|
2024-04-14 10:38:44 +00:00
|
|
|
),
|
2024-04-15 15:08:32 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
2024-04-13 17:45:27 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
2024-04-15 15:08:32 +00:00
|
|
|
content = Column(
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 12, right: 12, top: 16),
|
|
|
|
child: Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
CircleAvatar(
|
|
|
|
backgroundImage: NetworkImage(widget.item.author.avatar),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
...headingParts,
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
|
|
child: Text(
|
|
|
|
getAuthorDescribe(),
|
|
|
|
maxLines: 1,
|
2024-04-13 17:45:27 +00:00
|
|
|
),
|
2024-04-15 15:08:32 +00:00
|
|
|
),
|
|
|
|
],
|
2024-04-13 17:45:27 +00:00
|
|
|
),
|
2024-04-15 15:08:32 +00:00
|
|
|
),
|
|
|
|
],
|
2024-04-14 10:38:44 +00:00
|
|
|
),
|
2024-04-15 15:08:32 +00:00
|
|
|
),
|
|
|
|
const Padding(
|
|
|
|
padding: EdgeInsets.only(top: 6),
|
|
|
|
child: Divider(thickness: 0.3),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
|
|
|
|
child: renderContent(),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
|
|
|
child: renderAttachments(),
|
|
|
|
)
|
|
|
|
],
|
2024-04-13 17:45:27 +00:00
|
|
|
);
|
|
|
|
}
|
2024-04-15 15:08:32 +00:00
|
|
|
|
|
|
|
return GestureDetector(
|
|
|
|
child: content,
|
|
|
|
onLongPress: () {
|
|
|
|
viewActions(context);
|
|
|
|
},
|
|
|
|
);
|
2024-04-13 11:47:31 +00:00
|
|
|
}
|
|
|
|
}
|