Solian/lib/widgets/posts/post_list.dart

104 lines
2.9 KiB
Dart
Raw Normal View History

2024-05-25 09:21:27 +00:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart';
import 'package:solian/models/post.dart';
import 'package:solian/providers/auth.dart';
2024-05-25 09:21:27 +00:00
import 'package:solian/widgets/posts/post_action.dart';
import 'package:solian/widgets/posts/post_item.dart';
class PostListWidget extends StatelessWidget {
final bool isShowEmbed;
final bool isClickable;
final bool isNestedClickable;
final PagingController<int, Post> controller;
2024-08-01 21:10:10 +00:00
final Color? backgroundColor;
2024-05-25 09:21:27 +00:00
const PostListWidget({
super.key,
required this.controller,
this.isShowEmbed = true,
this.isClickable = true,
this.isNestedClickable = true,
2024-08-01 21:10:10 +00:00
this.backgroundColor,
2024-05-25 09:21:27 +00:00
});
@override
Widget build(BuildContext context) {
2024-05-29 12:13:53 +00:00
return PagedSliverList<int, Post>.separated(
2024-07-11 16:44:57 +00:00
addRepaintBoundaries: true,
2024-05-25 09:21:27 +00:00
pagingController: controller,
builderDelegate: PagedChildBuilderDelegate<Post>(
itemBuilder: (context, item, index) {
return PostListEntryWidget(
isShowEmbed: isShowEmbed,
isNestedClickable: isNestedClickable,
isClickable: isClickable,
2024-09-16 15:35:44 +00:00
showFeaturedReply: true,
item: item,
2024-08-01 21:10:10 +00:00
backgroundColor: backgroundColor,
onUpdate: () {
controller.refresh();
},
2024-05-25 09:21:27 +00:00
);
},
),
separatorBuilder: (_, __) => const Divider(thickness: 0.3, height: 0.3),
);
}
}
class PostListEntryWidget extends StatelessWidget {
2024-07-31 17:21:27 +00:00
final int renderOrder;
final bool isShowEmbed;
final bool isNestedClickable;
final bool isClickable;
2024-09-16 15:35:44 +00:00
final bool showFeaturedReply;
final Post item;
final Function onUpdate;
2024-08-01 21:10:10 +00:00
final Color? backgroundColor;
const PostListEntryWidget({
super.key,
2024-07-31 17:21:27 +00:00
this.renderOrder = 0,
required this.isShowEmbed,
required this.isNestedClickable,
required this.isClickable,
2024-09-16 15:35:44 +00:00
required this.showFeaturedReply,
required this.item,
required this.onUpdate,
2024-08-01 21:10:10 +00:00
this.backgroundColor,
});
@override
Widget build(BuildContext context) {
return GestureDetector(
child: PostItem(
key: Key('p${item.id}'),
item: item,
isShowEmbed: isShowEmbed,
isClickable: isNestedClickable,
2024-09-16 15:35:44 +00:00
showFeaturedReply: showFeaturedReply,
2024-08-01 21:10:10 +00:00
backgroundColor: backgroundColor,
).paddingSymmetric(vertical: 8),
onLongPress: () {
final AuthProvider auth = Get.find();
if (auth.isAuthorized.isFalse) return;
showModalBottomSheet(
useRootNavigator: true,
context: context,
builder: (context) => PostAction(item: item),
).then((value) {
2024-08-04 10:13:59 +00:00
if (value is Future) {
value.then((_) {
onUpdate();
});
} else if (value != null) {
onUpdate();
}
});
},
);
}
}