A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
4.3 KiB

part of '../neon_news.dart';
2 years ago
class NewsFoldersView extends StatelessWidget {
const NewsFoldersView({
required this.bloc,
super.key,
});
final NewsBloc bloc;
@override
Widget build(final BuildContext context) => ResultBuilder<List<NewsFolder>>.behaviorSubject(
stream: bloc.folders,
builder: (final context, final folders) => ResultBuilder<List<NewsFeed>>.behaviorSubject(
stream: bloc.feeds,
builder: (final context, final feeds) => SortBoxBuilder<FoldersSortProperty, FolderFeedsWrapper>(
sortBox: foldersSortBox,
sortPropertyOption: bloc.options.foldersSortPropertyOption,
sortBoxOrderOption: bloc.options.foldersSortBoxOrderOption,
input: feeds.hasData
? folders.data?.map((final folder) {
final feedsInFolder = feeds.requireData.where((final feed) => feed.folderId == folder.id);
final feedCount = feedsInFolder.length;
final unreadCount = feedsInFolder.fold(0, (final a, final b) => a + b.unreadCount!);
return (folder, feedCount, unreadCount);
}).toList()
: null,
builder: (final context, final sorted) => NeonListView<FolderFeedsWrapper>(
scrollKey: 'news-folders',
withFloatingActionButton: true,
items: sorted,
isLoading: feeds.isLoading || folders.isLoading,
error: feeds.error ?? folders.error,
onRefresh: bloc.refresh,
builder: _buildFolder,
2 years ago
),
),
),
);
Widget _buildFolder(
final BuildContext context,
final FolderFeedsWrapper folderFeedsWrapper,
) {
final (folder, feedCount, unreadCount) = folderFeedsWrapper;
2 years ago
return ListTile(
title: Text(
folder.name,
2 years ago
style: unreadCount == 0
? Theme.of(context).textTheme.titleMedium!.copyWith(color: Theme.of(context).disabledColor)
2 years ago
: null,
),
subtitle: unreadCount > 0 ? Text(AppLocalizations.of(context).articlesUnread(unreadCount)) : const SizedBox(),
leading: SizedBox.square(
dimension: largeIconSize,
2 years ago
child: Stack(
children: [
Icon(
Icons.folder,
size: largeIconSize,
2 years ago
color: Theme.of(context).colorScheme.primary,
),
Center(
child: Text(
feedCount.toString(),
style: TextStyle(
color: Theme.of(context).colorScheme.onPrimary,
),
),
2 years ago
),
],
),
),
trailing: PopupMenuButton<NewsFolderAction>(
2 years ago
itemBuilder: (final context) => [
PopupMenuItem(
value: NewsFolderAction.delete,
child: Text(AppLocalizations.of(context).actionDelete),
2 years ago
),
PopupMenuItem(
value: NewsFolderAction.rename,
child: Text(AppLocalizations.of(context).actionRename),
2 years ago
),
],
onSelected: (final action) async {
switch (action) {
case NewsFolderAction.delete:
2 years ago
if (await showConfirmationDialog(
context,
AppLocalizations.of(context).folderDeleteConfirm(folder.name),
2 years ago
)) {
bloc.deleteFolder(folder.id);
2 years ago
}
case NewsFolderAction.rename:
if (!context.mounted) {
return;
}
2 years ago
final result = await showRenameDialog(
context: context,
title: AppLocalizations.of(context).folderRename,
value: folder.name,
2 years ago
);
if (result != null) {
bloc.renameFolder(folder.id, result);
2 years ago
}
}
},
),
onLongPress: () {
if (unreadCount > 0) {
bloc.markFolderAsRead(folder.id);
2 years ago
}
},
onTap: () async {
await Navigator.of(context).push(
MaterialPageRoute<void>(
2 years ago
builder: (final context) => NewsFolderPage(
bloc: bloc,
folder: folder,
2 years ago
),
),
);
},
);
}
}
enum NewsFolderAction {
2 years ago
delete,
rename,
}