ente/lib/ui/collections/album/row_item.dart
2023-06-23 13:57:58 +05:30

120 lines
4.1 KiB
Dart

import 'package:flutter/material.dart';
import "package:intl/intl.dart";
import 'package:photos/db/files_db.dart';
import 'package:photos/models/collection.dart';
import 'package:photos/models/collection_items.dart';
import "package:photos/models/file.dart";
import 'package:photos/models/gallery_type.dart';
import "package:photos/services/collections_service.dart";
import 'package:photos/theme/ente_theme.dart';
import 'package:photos/ui/viewer/file/no_thumbnail_widget.dart';
import 'package:photos/ui/viewer/file/thumbnail_widget.dart';
import 'package:photos/ui/viewer/gallery/collection_page.dart';
import 'package:photos/utils/navigation_util.dart';
class AlbumRowItemWidget extends StatelessWidget {
final Collection c;
final double sideOfThumbnail;
final bool showFileCount;
static const tagPrefix = "collection";
AlbumRowItemWidget(
this.c,
this.sideOfThumbnail, {
this.showFileCount = true,
Key? key,
}) : super(key: Key(c.id.toString()));
@override
Widget build(BuildContext context) {
final enteTextTheme = getEnteTextTheme(context);
return GestureDetector(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Stack(
children: [
ClipRRect(
borderRadius: BorderRadius.circular(1),
child: SizedBox(
height: sideOfThumbnail,
width: sideOfThumbnail,
child: FutureBuilder<File?>(
future: CollectionsService.instance.getCover(c),
builder: (context, snapshot) {
if (snapshot.hasData) {
final thumbnail = snapshot.data!;
final String heroTag = tagPrefix + thumbnail.tag;
return Hero(
tag: heroTag,
child: ThumbnailWidget(
thumbnail,
shouldShowArchiveStatus: c.isArchived(),
showFavForAlbumOnly: true,
key: Key(heroTag),
),
);
} else {
return const NoThumbnailWidget();
}
},
),
),
),
],
),
const SizedBox(height: 4),
Row(
children: [
Container(
constraints: BoxConstraints(maxWidth: sideOfThumbnail - 40),
child: Text(
c.displayName,
style: enteTextTheme.small,
overflow: TextOverflow.ellipsis,
),
),
if (showFileCount)
FutureBuilder<int>(
future: FilesDB.instance.collectionFileCount(c.id),
builder: (context, snapshot) {
if (snapshot.hasData && snapshot.data! > 0) {
return RichText(
text: TextSpan(
style: enteTextTheme.smallMuted,
children: [
const TextSpan(text: " \u2022 "),
TextSpan(
text: NumberFormat().format(snapshot.data),
),
],
),
);
} else {
return const SizedBox.shrink();
}
},
)
else
const SizedBox.shrink(),
],
),
],
),
onTap: () async {
final thumbnail = await CollectionsService.instance.getCover(c);
routeToPage(
context,
CollectionPage(
CollectionWithThumbnail(c, thumbnail),
tagPrefix: tagPrefix,
appBarType: (c.type == CollectionType.favorites
? GalleryType.favorite
: GalleryType.ownedCollection),
),
);
},
);
}
}