2021-02-09 19:25:17 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
import 'package:lemmy_api_client/v2.dart';
|
|
|
|
|
2021-02-09 20:39:45 +01:00
|
|
|
import '../hooks/stores.dart';
|
2021-03-01 14:21:45 +01:00
|
|
|
import '../l10n/l10n.dart';
|
2021-02-09 20:39:45 +01:00
|
|
|
import '../widgets/sortable_infinite_list.dart';
|
2021-02-09 19:25:17 +01:00
|
|
|
|
|
|
|
/// Page with saved posts/comments. Fetches such saved data from the default user
|
|
|
|
/// Assumes there is at least one logged in user
|
|
|
|
class SavedPage extends HookWidget {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final accountStore = useAccountsStore();
|
|
|
|
|
|
|
|
return DefaultTabController(
|
|
|
|
length: 2,
|
|
|
|
child: Scaffold(
|
|
|
|
appBar: AppBar(
|
2021-03-01 14:21:45 +01:00
|
|
|
title: Text(L10n.of(context).saved),
|
|
|
|
bottom: TabBar(
|
2021-02-09 19:25:17 +01:00
|
|
|
tabs: [
|
2021-03-01 14:21:45 +01:00
|
|
|
Tab(text: L10n.of(context).posts),
|
|
|
|
Tab(text: L10n.of(context).comments),
|
2021-02-09 19:25:17 +01:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
body: TabBarView(
|
|
|
|
children: [
|
|
|
|
InfinitePostList(
|
|
|
|
fetcher: (page, batchSize, sortType) =>
|
|
|
|
LemmyApiV2(accountStore.defaultInstanceHost)
|
|
|
|
.run(
|
|
|
|
GetUserDetails(
|
|
|
|
userId: accountStore.defaultToken.payload.id,
|
|
|
|
sort: sortType,
|
|
|
|
savedOnly: true,
|
|
|
|
page: page,
|
|
|
|
limit: batchSize,
|
|
|
|
auth: accountStore.defaultToken.raw,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.then((value) => value.posts),
|
|
|
|
),
|
|
|
|
InfiniteCommentList(
|
|
|
|
fetcher: (page, batchSize, sortType) =>
|
|
|
|
LemmyApiV2(accountStore.defaultInstanceHost)
|
|
|
|
.run(
|
|
|
|
GetUserDetails(
|
|
|
|
userId: accountStore.defaultToken.payload.id,
|
|
|
|
sort: sortType,
|
|
|
|
savedOnly: true,
|
|
|
|
page: page,
|
|
|
|
limit: batchSize,
|
|
|
|
auth: accountStore.defaultToken.raw,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.then((value) => value.comments),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|