mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
5c78f707fe
* Change API to return assets count and change web behavior accordingly * Refactor assets.length * Explicitly declare type of assetCount so Dart SDK understand it * Finished refactoring on mobile
86 lines
2.8 KiB
Dart
86 lines
2.8 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:immich_mobile/constants/hive_box.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
import 'package:openapi/api.dart';
|
|
import 'package:transparent_image/transparent_image.dart';
|
|
|
|
class AlbumThumbnailCard extends StatelessWidget {
|
|
const AlbumThumbnailCard({Key? key, required this.album}) : super(key: key);
|
|
|
|
final AlbumResponseDto album;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var box = Hive.box(userInfoBox);
|
|
|
|
final cardSize = MediaQuery.of(context).size.width / 2 - 18;
|
|
|
|
return GestureDetector(
|
|
onTap: () {
|
|
AutoRouter.of(context).push(AlbumViewerRoute(albumId: album.id));
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 32.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8),
|
|
child: FadeInImage(
|
|
width: cardSize,
|
|
height: cardSize,
|
|
fit: BoxFit.cover,
|
|
placeholder: MemoryImage(kTransparentImage),
|
|
image: NetworkImage(
|
|
'${box.get(serverEndpointKey)}/asset/thumbnail/${album.albumThumbnailAssetId}?format=JPEG',
|
|
headers: {
|
|
"Authorization": "Bearer ${box.get(accessTokenKey)}"
|
|
},
|
|
),
|
|
fadeInDuration: const Duration(milliseconds: 200),
|
|
fadeOutDuration: const Duration(milliseconds: 200),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
child: SizedBox(
|
|
width: cardSize,
|
|
child: Text(
|
|
album.albumName,
|
|
style: const TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Text(
|
|
album.assetCount == 1
|
|
? 'album_thumbnail_card_item'
|
|
: 'album_thumbnail_card_items',
|
|
style: const TextStyle(
|
|
fontSize: 10,
|
|
),
|
|
).tr(args: ['${album.assetCount}']),
|
|
if (album.shared)
|
|
const Text(
|
|
'album_thumbnail_card_shared',
|
|
style: TextStyle(
|
|
fontSize: 10,
|
|
),
|
|
).tr()
|
|
],
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|