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.

179 lines
6.0 KiB

part of '../neon_news.dart';
2 years ago
class NewsFeedsView extends StatelessWidget {
const NewsFeedsView({
required this.bloc,
this.folderID,
super.key,
});
final NewsBloc bloc;
final int? folderID;
@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<FeedsSortProperty, NewsFeed>(
sortBox: feedsSortBox,
sortPropertyOption: bloc.options.feedsSortPropertyOption,
sortBoxOrderOption: bloc.options.feedsSortBoxOrderOption,
input: folders.hasData
? feeds.data?.where((final f) => folderID == null || f.folderId == folderID).toList()
: null,
builder: (final context, final sorted) => NeonListView<NewsFeed>(
scrollKey: 'news-feeds',
withFloatingActionButton: true,
items: sorted,
isLoading: feeds.isLoading || folders.isLoading,
error: feeds.error ?? folders.error,
onRefresh: bloc.refresh,
builder: (final context, final feed) => _buildFeed(
context,
feed,
folders.requireData,
2 years ago
),
),
),
),
);
Widget _buildFeed(
final BuildContext context,
final NewsFeed feed,
final List<NewsFolder> folders,
2 years ago
) =>
ListTile(
title: Text(
feed.title,
2 years ago
style: feed.unreadCount! == 0
? Theme.of(context).textTheme.titleMedium!.copyWith(color: Theme.of(context).disabledColor)
2 years ago
: null,
),
subtitle: feed.unreadCount! > 0
? Text(AppLocalizations.of(context).articlesUnread(feed.unreadCount!))
: const SizedBox(),
2 years ago
leading: NewsFeedIcon(
feed: feed,
borderRadius: const BorderRadius.all(Radius.circular(8)),
2 years ago
),
trailing: Row(
mainAxisSize: MainAxisSize.min,
children: [
if (feed.updateErrorCount > 0) ...[
2 years ago
IconButton(
onPressed: () async {
await showDialog(
context: context,
builder: (final context) => NewsFeedUpdateErrorDialog(
feed: feed,
),
);
},
tooltip: AppLocalizations.of(context).feedShowErrorMessage,
iconSize: 30,
2 years ago
icon: Text(
feed.updateErrorCount.toString(),
style: TextStyle(
color: Theme.of(context).colorScheme.error,
2 years ago
),
),
),
],
PopupMenuButton<NewsFeedAction>(
2 years ago
itemBuilder: (final context) => [
PopupMenuItem(
value: NewsFeedAction.showURL,
child: Text(AppLocalizations.of(context).feedShowURL),
2 years ago
),
PopupMenuItem(
value: NewsFeedAction.delete,
child: Text(AppLocalizations.of(context).actionDelete),
2 years ago
),
PopupMenuItem(
value: NewsFeedAction.rename,
child: Text(AppLocalizations.of(context).actionRename),
2 years ago
),
if (folders.isNotEmpty) ...[
PopupMenuItem(
value: NewsFeedAction.move,
child: Text(AppLocalizations.of(context).actionMove),
2 years ago
),
],
],
onSelected: (final action) async {
switch (action) {
case NewsFeedAction.showURL:
2 years ago
await showDialog(
context: context,
builder: (final context) => NewsFeedShowURLDialog(
feed: feed,
),
);
case NewsFeedAction.delete:
if (!context.mounted) {
return;
}
2 years ago
if (await showConfirmationDialog(
context,
AppLocalizations.of(context).feedRemoveConfirm(feed.title),
2 years ago
)) {
bloc.removeFeed(feed.id);
2 years ago
}
case NewsFeedAction.rename:
if (!context.mounted) {
return;
}
2 years ago
final result = await showRenameDialog(
context: context,
title: AppLocalizations.of(context).feedRename,
value: feed.title,
2 years ago
);
if (result != null) {
bloc.renameFeed(feed.id, result);
2 years ago
}
case NewsFeedAction.move:
if (!context.mounted) {
return;
}
2 years ago
final result = await showDialog<List<int?>>(
context: context,
builder: (final context) => NewsMoveFeedDialog(
folders: folders,
feed: feed,
),
);
if (result != null) {
bloc.moveFeed(feed.id, result[0]);
2 years ago
}
}
},
),
],
),
onLongPress: () {
if (feed.unreadCount! > 0) {
bloc.markFeedAsRead(feed.id);
2 years ago
}
},
onTap: () async {
await Navigator.of(context).push(
MaterialPageRoute(
builder: (final context) => NewsFeedPage(
bloc: bloc,
feed: feed,
),
),
);
},
);
}
enum NewsFeedAction {
2 years ago
showURL,
delete,
rename,
move,
}