mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
8708867c1c
* feature(mobile): sync assets, albums & users to local database on device * try to fix tests * move DB sync operations to new SyncService * clear db on user logout * fix reason for endless loading timeline * fix error when deleting album * fix thumbnail of device albums * add a few comments * fix Hive box not open in album service when loading local assets * adjust tests to int IDs * fix bug: show all albums when Recent is selected * update generated api * reworked Recents album isAll handling * guard against wrongly interleaved sync operations * fix: timeline asset ordering (sort asset state by created at) * fix: sort assets in albums by created at
167 lines
4.5 KiB
Dart
167 lines
4.5 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/favorite/providers/favorite_provider.dart';
|
|
import 'package:immich_mobile/modules/album/providers/asset_selection.provider.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
|
import 'package:immich_mobile/shared/ui/immich_image.dart';
|
|
|
|
class AlbumViewerThumbnail extends HookConsumerWidget {
|
|
final Asset asset;
|
|
final List<Asset> assetList;
|
|
final bool showStorageIndicator;
|
|
|
|
const AlbumViewerThumbnail({
|
|
Key? key,
|
|
required this.asset,
|
|
required this.assetList,
|
|
this.showStorageIndicator = true,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final selectedAssetsInAlbumViewer =
|
|
ref.watch(assetSelectionProvider).selectedAssetsInAlbumViewer;
|
|
final isMultiSelectionEnable =
|
|
ref.watch(assetSelectionProvider).isMultiselectEnable;
|
|
final isFavorite = ref.watch(favoriteProvider).contains(asset.id);
|
|
|
|
viewAsset() {
|
|
AutoRouter.of(context).push(
|
|
GalleryViewerRoute(
|
|
asset: asset,
|
|
assetList: assetList,
|
|
),
|
|
);
|
|
}
|
|
|
|
BoxBorder drawBorderColor() {
|
|
if (selectedAssetsInAlbumViewer.contains(asset)) {
|
|
return Border.all(
|
|
color: Theme.of(context).primaryColorLight,
|
|
width: 10,
|
|
);
|
|
} else {
|
|
return const Border();
|
|
}
|
|
}
|
|
|
|
enableMultiSelection() {
|
|
ref.watch(assetSelectionProvider.notifier).enableMultiselection();
|
|
ref
|
|
.watch(assetSelectionProvider.notifier)
|
|
.addAssetsInAlbumViewer([asset]);
|
|
}
|
|
|
|
disableMultiSelection() {
|
|
ref.watch(assetSelectionProvider.notifier).disableMultiselection();
|
|
}
|
|
|
|
buildVideoLabel() {
|
|
return Positioned(
|
|
top: 5,
|
|
right: 5,
|
|
child: Row(
|
|
children: [
|
|
Text(
|
|
asset.duration.toString().substring(0, 7),
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 10,
|
|
),
|
|
),
|
|
const Icon(
|
|
Icons.play_circle_outline_rounded,
|
|
color: Colors.white,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
buildAssetStoreLocationIcon() {
|
|
return Positioned(
|
|
right: 10,
|
|
bottom: 5,
|
|
child: Icon(
|
|
asset.isRemote
|
|
? (asset.isLocal
|
|
? Icons.cloud_done_outlined
|
|
: Icons.cloud_outlined)
|
|
: Icons.cloud_off_outlined,
|
|
color: Colors.white,
|
|
size: 18,
|
|
),
|
|
);
|
|
}
|
|
|
|
buildAssetFavoriteIcon() {
|
|
return const Positioned(
|
|
left: 10,
|
|
bottom: 5,
|
|
child: Icon(
|
|
Icons.star,
|
|
color: Colors.white,
|
|
size: 18,
|
|
),
|
|
);
|
|
}
|
|
|
|
buildAssetSelectionIcon() {
|
|
bool isSelected = selectedAssetsInAlbumViewer.contains(asset);
|
|
|
|
return Positioned(
|
|
left: 10,
|
|
top: 5,
|
|
child: isSelected
|
|
? Icon(
|
|
Icons.check_circle_rounded,
|
|
color: Theme.of(context).primaryColor,
|
|
)
|
|
: const Icon(
|
|
Icons.check_circle_outline_rounded,
|
|
color: Colors.white,
|
|
),
|
|
);
|
|
}
|
|
|
|
buildThumbnailImage() {
|
|
return Container(
|
|
decoration: BoxDecoration(border: drawBorderColor()),
|
|
child: ImmichImage(asset, width: 300, height: 300),
|
|
);
|
|
}
|
|
|
|
handleSelectionGesture() {
|
|
if (selectedAssetsInAlbumViewer.contains(asset)) {
|
|
ref
|
|
.watch(assetSelectionProvider.notifier)
|
|
.removeAssetsInAlbumViewer([asset]);
|
|
|
|
if (selectedAssetsInAlbumViewer.isEmpty) {
|
|
disableMultiSelection();
|
|
}
|
|
} else {
|
|
ref
|
|
.watch(assetSelectionProvider.notifier)
|
|
.addAssetsInAlbumViewer([asset]);
|
|
}
|
|
}
|
|
|
|
return GestureDetector(
|
|
onTap: isMultiSelectionEnable ? handleSelectionGesture : viewAsset,
|
|
onLongPress: enableMultiSelection,
|
|
child: Stack(
|
|
children: [
|
|
buildThumbnailImage(),
|
|
if (isFavorite) buildAssetFavoriteIcon(),
|
|
if (showStorageIndicator) buildAssetStoreLocationIcon(),
|
|
if (!asset.isImage) buildVideoLabel(),
|
|
if (isMultiSelectionEnable) buildAssetSelectionIcon(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|