86 lines
2.9 KiB
Dart
86 lines
2.9 KiB
Dart
/*
|
|
* Copyright (c) 2024-2025 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:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:skeletonizer/skeletonizer.dart';
|
|
import 'package:weblibre/data/models/web_page_info.dart';
|
|
import 'package:weblibre/presentation/controllers/website_title.dart';
|
|
import 'package:weblibre/presentation/widgets/failure_widget.dart';
|
|
|
|
class WebsiteTitleTile extends HookConsumerWidget {
|
|
final Uri url;
|
|
final WebPageInfo? precachedInfo;
|
|
|
|
const WebsiteTitleTile(this.url, {this.precachedInfo, super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final pageInfoAsync = ref.watch(
|
|
completePageInfoProvider(url, precachedInfo),
|
|
);
|
|
|
|
return Skeletonizer(
|
|
enabled: pageInfoAsync.isLoading && precachedInfo == null,
|
|
child: pageInfoAsync.when(
|
|
skipLoadingOnReload: true,
|
|
data: (info) {
|
|
return ListTile(
|
|
leading: RawImage(
|
|
image: info.favicon?.image.value,
|
|
height: 24,
|
|
width: 24,
|
|
),
|
|
contentPadding: EdgeInsets.zero,
|
|
title: Text(
|
|
info.title ?? 'Unknown Title',
|
|
maxLines: 6,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
subtitle: Text(url.authority),
|
|
);
|
|
},
|
|
error: (error, stackTrace) {
|
|
return FailureWidget(
|
|
title: error.toString(),
|
|
onRetry: () =>
|
|
ref.refresh(pageInfoProvider(url, isImageRequest: false)),
|
|
);
|
|
},
|
|
loading: () => (precachedInfo != null)
|
|
? ListTile(
|
|
leading: RawImage(
|
|
image: precachedInfo!.favicon?.image.value,
|
|
height: 24,
|
|
width: 24,
|
|
),
|
|
contentPadding: EdgeInsets.zero,
|
|
title: Text(precachedInfo!.title ?? 'Unknown Title'),
|
|
subtitle: Text(url.authority),
|
|
)
|
|
: const ListTile(
|
|
contentPadding: EdgeInsets.zero,
|
|
title: Bone.text(),
|
|
subtitle: Bone.text(),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|