169 lines
6.5 KiB
Dart
169 lines
6.5 KiB
Dart
/*
|
|
* Copyright (c) 2024-2026 Fabian Freund.
|
|
*
|
|
* This file is part of WebLibre
|
|
* (see https://weblibre.eu).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_material_design_icons/flutter_material_design_icons.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:nullability/nullability.dart';
|
|
import 'package:timeago/timeago.dart' as timeago;
|
|
import 'package:weblibre/core/routing/routes.dart';
|
|
import 'package:weblibre/extensions/uri.dart';
|
|
import 'package:weblibre/features/web_feed/data/database/definitions.drift.dart';
|
|
import 'package:weblibre/features/web_feed/domain/providers.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/widgets/authors_horizontal_list.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/widgets/tags_horizontal_list.dart';
|
|
import 'package:weblibre/presentation/widgets/rounded_text.dart';
|
|
import 'package:weblibre/presentation/widgets/url_icon.dart';
|
|
|
|
class FeedCard extends HookConsumerWidget {
|
|
final FeedData feed;
|
|
|
|
const FeedCard({super.key, required this.feed});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final theme = Theme.of(context);
|
|
|
|
return Card(
|
|
color: Theme.of(context).colorScheme.surfaceContainerHigh,
|
|
clipBehavior: Clip.antiAlias,
|
|
child: InkWell(
|
|
onTap: () async {
|
|
await FeedArticleListRoute(feedId: feed.url).push(context);
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
UrlIcon([
|
|
feed.icon ?? feed.siteLink ?? feed.url.base,
|
|
], iconSize: 34.0),
|
|
const SizedBox(width: 12.0),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
feed.title ?? feed.url.host,
|
|
style: theme.textTheme.titleMedium,
|
|
),
|
|
if (feed.description != null)
|
|
Text(
|
|
feed.description!,
|
|
style: theme.textTheme.bodySmall,
|
|
maxLines: 3,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
IconButton(
|
|
onPressed: () async {
|
|
await FeedEditRoute(feedId: feed.url).push(context);
|
|
},
|
|
icon: const Icon(Icons.edit),
|
|
),
|
|
],
|
|
),
|
|
if (feed.authors.isNotEmpty || feed.tags.isNotEmpty) ...[
|
|
if (feed.authors.isNotEmpty)
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: AuthorsHorizontalList(authors: feed.authors!),
|
|
),
|
|
if (feed.tags.isNotEmpty)
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: TagsHorizontalList(tags: feed.tags!),
|
|
),
|
|
],
|
|
const Divider(),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text(
|
|
'Last fetched: ${(feed.lastFetched != null) ? timeago.format(feed.lastFetched!) : 'N/A'}',
|
|
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
|
fontStyle: FontStyle.italic,
|
|
),
|
|
),
|
|
Consumer(
|
|
builder: (context, ref, child) {
|
|
final countAsync = ref.watch(
|
|
unreadFeedArticleCountProvider(feed.url),
|
|
);
|
|
|
|
return countAsync.when(
|
|
skipLoadingOnReload: true,
|
|
data: (count) {
|
|
if (count == null) {
|
|
return const SizedBox();
|
|
}
|
|
|
|
return RoundedBackground(
|
|
child: Row(
|
|
children: [
|
|
Icon(
|
|
MdiIcons.newspaperVariantMultipleOutline,
|
|
size: 18,
|
|
color: Theme.of(
|
|
context,
|
|
).colorScheme.onPrimary,
|
|
),
|
|
const SizedBox(width: 4),
|
|
Text(
|
|
count.toString(),
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Theme.of(
|
|
context,
|
|
).colorScheme.onPrimary,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
error: (error, stackTrace) => const Text('N/A'),
|
|
loading: () => const SizedBox(
|
|
height: 16,
|
|
width: 16,
|
|
child: Center(
|
|
child: CircularProgressIndicator(strokeWidth: 2),
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|