Surface/lib/screens/explore.dart

166 lines
5.3 KiB
Dart
Raw Normal View History

2024-11-08 16:09:46 +00:00
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
2024-11-09 17:34:58 +00:00
import 'package:flutter_expandable_fab/flutter_expandable_fab.dart';
import 'package:gap/gap.dart';
import 'package:go_router/go_router.dart';
import 'package:material_symbols_icons/symbols.dart';
2024-11-08 16:09:46 +00:00
import 'package:provider/provider.dart';
2024-11-09 04:04:03 +00:00
import 'package:surface/providers/sn_attachment.dart';
2024-11-08 16:09:46 +00:00
import 'package:surface/providers/sn_network.dart';
import 'package:surface/types/post.dart';
import 'package:surface/widgets/navigation/app_scaffold.dart';
2024-11-09 03:16:14 +00:00
import 'package:surface/widgets/post/post_item.dart';
2024-11-08 16:09:46 +00:00
import 'package:very_good_infinite_list/very_good_infinite_list.dart';
class ExploreScreen extends StatefulWidget {
const ExploreScreen({super.key});
@override
State<ExploreScreen> createState() => _ExploreScreenState();
}
class _ExploreScreenState extends State<ExploreScreen> {
2024-11-09 17:34:58 +00:00
final _fabKey = GlobalKey<ExpandableFabState>();
2024-11-08 16:09:46 +00:00
bool _isBusy = true;
final List<SnPost> _posts = List.empty(growable: true);
2024-11-09 03:16:14 +00:00
int? _postCount;
2024-11-08 16:09:46 +00:00
void _fetchPosts() async {
2024-11-09 03:16:14 +00:00
if (_postCount != null && _posts.length >= _postCount!) return;
2024-11-08 16:09:46 +00:00
setState(() => _isBusy = true);
final sn = context.read<SnNetworkProvider>();
final resp = await sn.client.get('/cgi/co/posts', queryParameters: {
'take': 10,
2024-11-09 03:16:14 +00:00
'offset': _posts.length,
2024-11-08 16:09:46 +00:00
});
2024-11-09 04:04:03 +00:00
final List<SnPost> out =
List.from(resp.data['data']?.map((e) => SnPost.fromJson(e)) ?? []);
Set<String> rids = {};
for (var i = 0; i < out.length; i++) {
rids.addAll(out[i].body['attachments']?.cast<String>() ?? []);
}
if (!mounted) return;
final attach = context.read<SnAttachmentProvider>();
final attachments = await attach.getMultiple(rids.toList());
for (var i = 0; i < out.length; i++) {
out[i] = out[i].copyWith(
preload: SnPostPreload(
attachments: attachments
.where(
(ele) => out[i].body['attachments']?.contains(ele.rid) ?? false,
)
.toList(),
),
);
}
2024-11-08 16:09:46 +00:00
_postCount = resp.data['count'];
2024-11-09 04:04:03 +00:00
_posts.addAll(out);
2024-11-08 16:09:46 +00:00
if (mounted) setState(() => _isBusy = false);
}
@override
void initState() {
super.initState();
_fetchPosts();
}
@override
Widget build(BuildContext context) {
return AppScaffold(
appBar: AppBar(
title: Text('screenExplore').tr(),
),
2024-11-09 17:34:58 +00:00
floatingActionButtonLocation: ExpandableFab.location,
floatingActionButton: ExpandableFab(
key: _fabKey,
distance: 75,
type: ExpandableFabType.up,
childrenAnimation: ExpandableFabAnimation.none,
overlayStyle: ExpandableFabOverlayStyle(blur: 10),
openButtonBuilder: RotateFloatingActionButtonBuilder(
child: const Icon(Symbols.add, size: 28),
fabSize: ExpandableFabSize.regular,
foregroundColor:
Theme.of(context).floatingActionButtonTheme.foregroundColor,
backgroundColor:
Theme.of(context).floatingActionButtonTheme.backgroundColor,
shape: const CircleBorder(),
),
closeButtonBuilder: DefaultFloatingActionButtonBuilder(
child: const Icon(Symbols.close, size: 28),
fabSize: ExpandableFabSize.regular,
foregroundColor:
Theme.of(context).floatingActionButtonTheme.foregroundColor,
backgroundColor:
Theme.of(context).floatingActionButtonTheme.backgroundColor,
shape: const CircleBorder(),
),
children: [
Row(
children: [
Text('writePostTypeStory').tr(),
const Gap(20),
FloatingActionButton(
heroTag: null,
tooltip: 'writePostTypeStory'.tr(),
onPressed: () {
GoRouter.of(context).pushNamed('postEditor', pathParameters: {
'mode': 'story',
}).then((value) {
if (value == true) {
_posts.clear();
_fetchPosts();
}
});
_fabKey.currentState!.toggle();
},
child: const Icon(Symbols.post_rounded),
),
],
),
Row(
children: [
Text('writePostTypeArticle').tr(),
const Gap(20),
FloatingActionButton(
heroTag: null,
tooltip: 'writePostTypeArticle'.tr(),
onPressed: () {
GoRouter.of(context).pushNamed('postEditor', pathParameters: {
'mode': 'article',
}).then((value) {
if (value == true) {
_posts.clear();
_fetchPosts();
}
});
_fabKey.currentState!.toggle();
},
child: const Icon(Symbols.news),
),
],
),
],
),
2024-11-08 16:09:46 +00:00
body: InfiniteList(
itemCount: _posts.length,
isLoading: _isBusy,
2024-11-09 03:16:14 +00:00
hasReachedMax: _postCount != null && _posts.length >= _postCount!,
2024-11-08 16:09:46 +00:00
onFetchData: _fetchPosts,
itemBuilder: (context, idx) {
2024-11-09 03:16:14 +00:00
return PostItem(data: _posts[idx]);
2024-11-08 16:09:46 +00:00
},
2024-11-09 03:16:14 +00:00
separatorBuilder: (context, index) => const Divider(),
2024-11-08 16:09:46 +00:00
),
);
}
}