2023-02-01 18:59:34 +02:00
|
|
|
import 'dart:io';
|
2023-06-26 18:54:08 +02:00
|
|
|
import 'dart:math';
|
2023-05-09 15:58:27 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2022-08-03 22:36:12 +02:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2023-02-01 18:59:34 +02:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2022-08-03 22:36:12 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-10-14 18:26:10 +02:00
|
|
|
import 'package:flutter/services.dart';
|
2023-03-23 03:36:44 +02:00
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart' hide Store;
|
2022-08-03 22:36:12 +02:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-06-26 17:27:47 +02:00
|
|
|
import 'package:immich_mobile/modules/asset_viewer/providers/show_controls.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/asset_viewer/providers/video_player_controls_provider.dart';
|
2023-01-27 23:05:08 +02:00
|
|
|
import 'package:immich_mobile/modules/album/ui/add_to_album_bottom_sheet.dart';
|
2022-08-03 22:36:12 +02:00
|
|
|
import 'package:immich_mobile/modules/asset_viewer/providers/image_viewer_page_state.provider.dart';
|
2023-06-26 17:27:47 +02:00
|
|
|
import 'package:immich_mobile/modules/asset_viewer/providers/video_player_value_provider.dart';
|
2023-04-11 19:21:00 +02:00
|
|
|
import 'package:immich_mobile/modules/asset_viewer/ui/advanced_bottom_sheet.dart';
|
2022-08-03 22:36:12 +02:00
|
|
|
import 'package:immich_mobile/modules/asset_viewer/ui/exif_bottom_sheet.dart';
|
|
|
|
import 'package:immich_mobile/modules/asset_viewer/ui/top_control_app_bar.dart';
|
|
|
|
import 'package:immich_mobile/modules/asset_viewer/views/video_viewer_page.dart';
|
2023-03-23 03:36:44 +02:00
|
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
2023-02-11 22:23:32 +02:00
|
|
|
import 'package:immich_mobile/modules/home/ui/delete_dialog.dart';
|
2022-08-16 01:53:30 +02:00
|
|
|
import 'package:immich_mobile/modules/settings/providers/app_settings.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/settings/services/app_settings.service.dart';
|
2023-03-15 23:29:07 +02:00
|
|
|
import 'package:immich_mobile/shared/ui/immich_image.dart';
|
2023-02-01 18:59:34 +02:00
|
|
|
import 'package:immich_mobile/shared/ui/photo_view/photo_view_gallery.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/photo_view/src/photo_view_computed_scale.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/photo_view/src/photo_view_scale_state.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/photo_view/src/utils/photo_view_hero_attributes.dart';
|
2022-11-08 19:00:24 +02:00
|
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
2022-12-22 22:10:21 +02:00
|
|
|
import 'package:immich_mobile/shared/providers/asset.provider.dart';
|
2023-02-01 18:59:34 +02:00
|
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
|
|
|
import 'package:immich_mobile/utils/image_url_builder.dart';
|
|
|
|
import 'package:photo_manager/photo_manager.dart';
|
|
|
|
import 'package:openapi/api.dart' as api;
|
2022-08-03 22:36:12 +02:00
|
|
|
|
|
|
|
// ignore: must_be_immutable
|
|
|
|
class GalleryViewerPage extends HookConsumerWidget {
|
2023-05-17 19:36:02 +02:00
|
|
|
final Asset Function(int index) loadAsset;
|
|
|
|
final int totalAssets;
|
|
|
|
final int initialIndex;
|
2022-08-08 02:43:09 +02:00
|
|
|
|
2022-08-03 22:36:12 +02:00
|
|
|
GalleryViewerPage({
|
2023-02-18 04:47:28 +02:00
|
|
|
super.key,
|
2023-05-17 19:36:02 +02:00
|
|
|
required this.initialIndex,
|
|
|
|
required this.loadAsset,
|
|
|
|
required this.totalAssets,
|
|
|
|
}) : controller = PageController(initialPage: initialIndex);
|
2022-08-13 22:51:09 +02:00
|
|
|
|
2023-02-23 04:50:13 +02:00
|
|
|
final PageController controller;
|
2023-02-18 04:47:28 +02:00
|
|
|
|
2022-08-03 22:36:12 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-12-02 22:55:10 +02:00
|
|
|
final settings = ref.watch(appSettingsServiceProvider);
|
|
|
|
final isLoadPreview = useState(AppSettingsEnum.loadPreview.defaultValue);
|
|
|
|
final isLoadOriginal = useState(AppSettingsEnum.loadOriginal.defaultValue);
|
2022-08-13 22:51:09 +02:00
|
|
|
final isZoomed = useState<bool>(false);
|
2022-11-19 07:12:54 +02:00
|
|
|
final isPlayingMotionVideo = useState(false);
|
2023-02-05 14:57:07 +02:00
|
|
|
final isPlayingVideo = useState(false);
|
2023-06-26 17:27:47 +02:00
|
|
|
final progressValue = useState(0.0);
|
2023-06-21 02:58:17 +02:00
|
|
|
Offset? localPosition;
|
2023-03-23 03:36:44 +02:00
|
|
|
final authToken = 'Bearer ${Store.get(StoreKey.accessToken)}';
|
2023-05-17 19:36:02 +02:00
|
|
|
final currentIndex = useState(initialIndex);
|
|
|
|
final currentAsset = loadAsset(currentIndex.value);
|
|
|
|
final watchedAsset = ref.watch(assetDetailProvider(currentAsset));
|
|
|
|
|
|
|
|
Asset asset() => watchedAsset.value ?? currentAsset;
|
2022-08-13 22:51:09 +02:00
|
|
|
|
|
|
|
useEffect(
|
|
|
|
() {
|
2022-12-02 22:55:10 +02:00
|
|
|
isLoadPreview.value =
|
|
|
|
settings.getSetting<bool>(AppSettingsEnum.loadPreview);
|
|
|
|
isLoadOriginal.value =
|
|
|
|
settings.getSetting<bool>(AppSettingsEnum.loadOriginal);
|
2022-11-19 07:12:54 +02:00
|
|
|
isPlayingMotionVideo.value = false;
|
2022-08-13 22:51:09 +02:00
|
|
|
return null;
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
2022-08-03 22:36:12 +02:00
|
|
|
|
2023-05-17 19:36:02 +02:00
|
|
|
void toggleFavorite(Asset asset) => ref
|
|
|
|
.watch(assetProvider.notifier)
|
|
|
|
.toggleFavorite([asset], !asset.isFavorite);
|
2022-08-03 22:36:12 +02:00
|
|
|
|
2023-02-04 22:42:42 +02:00
|
|
|
/// Thumbnail image of a remote asset. Required asset.isRemote
|
|
|
|
ImageProvider remoteThumbnailImageProvider(
|
|
|
|
Asset asset,
|
|
|
|
api.ThumbnailFormat type,
|
|
|
|
) {
|
2023-02-01 18:59:34 +02:00
|
|
|
return CachedNetworkImageProvider(
|
|
|
|
getThumbnailUrl(
|
2023-02-04 22:42:42 +02:00
|
|
|
asset,
|
2023-02-01 18:59:34 +02:00
|
|
|
type: type,
|
2023-01-11 22:54:12 +02:00
|
|
|
),
|
2023-02-01 18:59:34 +02:00
|
|
|
cacheKey: getThumbnailCacheKey(
|
2023-02-04 22:42:42 +02:00
|
|
|
asset,
|
2023-02-01 18:59:34 +02:00
|
|
|
type: type,
|
|
|
|
),
|
|
|
|
headers: {"Authorization": authToken},
|
2022-08-03 22:36:12 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-04 22:42:42 +02:00
|
|
|
/// Original (large) image of a remote asset. Required asset.isRemote
|
2023-02-01 18:59:34 +02:00
|
|
|
ImageProvider originalImageProvider(Asset asset) {
|
|
|
|
return CachedNetworkImageProvider(
|
2023-02-04 22:42:42 +02:00
|
|
|
getImageUrl(asset),
|
|
|
|
cacheKey: getImageCacheKey(asset),
|
2023-02-01 18:59:34 +02:00
|
|
|
headers: {"Authorization": authToken},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-04 22:42:42 +02:00
|
|
|
/// Thumbnail image of a local asset. Required asset.isLocal
|
2023-02-01 18:59:34 +02:00
|
|
|
ImageProvider localThumbnailImageProvider(Asset asset) {
|
|
|
|
return AssetEntityImageProvider(
|
|
|
|
asset.local!,
|
|
|
|
isOriginal: false,
|
2023-02-02 21:29:52 +02:00
|
|
|
thumbnailSize: ThumbnailSize(
|
|
|
|
MediaQuery.of(context).size.width.floor(),
|
|
|
|
MediaQuery.of(context).size.height.floor(),
|
|
|
|
),
|
2023-02-01 18:59:34 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-04 22:42:42 +02:00
|
|
|
/// Original (large) image of a local asset. Required asset.isLocal
|
2023-02-01 18:59:34 +02:00
|
|
|
ImageProvider localImageProvider(Asset asset) {
|
2023-03-04 00:49:40 +02:00
|
|
|
return AssetEntityImageProvider(
|
|
|
|
isOriginal: true,
|
|
|
|
asset.local!,
|
|
|
|
);
|
2023-02-01 18:59:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void precacheNextImage(int index) {
|
2023-05-17 19:36:02 +02:00
|
|
|
if (index < totalAssets && index >= 0) {
|
|
|
|
final asset = loadAsset(index);
|
2023-03-15 23:29:07 +02:00
|
|
|
|
2023-07-01 03:47:44 +02:00
|
|
|
if (!asset.isRemote ||
|
|
|
|
asset.isLocal && !Store.get(StoreKey.preferRemoteImage, false)) {
|
2023-02-01 18:59:34 +02:00
|
|
|
// Preload the local asset
|
|
|
|
precacheImage(localImageProvider(asset), context);
|
|
|
|
} else {
|
2023-03-15 23:29:07 +02:00
|
|
|
onError(Object exception, StackTrace? stackTrace) {
|
|
|
|
// swallow error silently
|
|
|
|
}
|
2023-02-01 18:59:34 +02:00
|
|
|
// Probably load WEBP either way
|
|
|
|
precacheImage(
|
|
|
|
remoteThumbnailImageProvider(
|
2023-02-04 22:42:42 +02:00
|
|
|
asset,
|
2023-02-01 18:59:34 +02:00
|
|
|
api.ThumbnailFormat.WEBP,
|
|
|
|
),
|
|
|
|
context,
|
2023-03-15 23:29:07 +02:00
|
|
|
onError: onError,
|
2023-02-01 18:59:34 +02:00
|
|
|
);
|
|
|
|
if (isLoadPreview.value) {
|
|
|
|
// Precache the JPEG thumbnail
|
|
|
|
precacheImage(
|
|
|
|
remoteThumbnailImageProvider(
|
|
|
|
asset,
|
|
|
|
api.ThumbnailFormat.JPEG,
|
|
|
|
),
|
|
|
|
context,
|
2023-03-15 23:29:07 +02:00
|
|
|
onError: onError,
|
2023-02-01 18:59:34 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if (isLoadOriginal.value) {
|
|
|
|
// Preload the original asset
|
|
|
|
precacheImage(
|
|
|
|
originalImageProvider(asset),
|
|
|
|
context,
|
2023-03-15 23:29:07 +02:00
|
|
|
onError: onError,
|
2023-02-01 18:59:34 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void showInfo() {
|
2023-02-04 22:42:42 +02:00
|
|
|
showModalBottomSheet(
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(15.0),
|
|
|
|
),
|
|
|
|
barrierColor: Colors.transparent,
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
isScrollControlled: true,
|
|
|
|
context: context,
|
|
|
|
builder: (context) {
|
2023-04-11 19:21:00 +02:00
|
|
|
if (ref
|
|
|
|
.watch(appSettingsServiceProvider)
|
|
|
|
.getSetting<bool>(AppSettingsEnum.advancedTroubleshooting)) {
|
2023-05-17 19:36:02 +02:00
|
|
|
return AdvancedBottomSheet(assetDetail: asset());
|
2023-04-11 19:21:00 +02:00
|
|
|
}
|
2023-04-13 17:22:06 +02:00
|
|
|
return Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
bottom: MediaQuery.of(context).viewInsets.bottom,
|
|
|
|
),
|
2023-05-17 19:36:02 +02:00
|
|
|
child: ExifBottomSheet(asset: asset()),
|
2023-04-13 17:22:06 +02:00
|
|
|
);
|
2023-02-04 22:42:42 +02:00
|
|
|
},
|
|
|
|
);
|
2022-08-03 22:36:12 +02:00
|
|
|
}
|
|
|
|
|
2022-12-22 22:10:21 +02:00
|
|
|
void handleDelete(Asset deleteAsset) {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext _) {
|
|
|
|
return DeleteDialog(
|
|
|
|
onDelete: () {
|
2023-05-17 19:36:02 +02:00
|
|
|
if (totalAssets == 1) {
|
2023-02-18 04:47:28 +02:00
|
|
|
// Handle only one asset
|
|
|
|
AutoRouter.of(context).pop();
|
|
|
|
} else {
|
|
|
|
// Go to next page otherwise
|
|
|
|
controller.nextPage(
|
|
|
|
duration: const Duration(milliseconds: 100),
|
|
|
|
curve: Curves.fastLinearToSlowEaseIn,
|
|
|
|
);
|
|
|
|
}
|
2022-12-22 22:10:21 +02:00
|
|
|
ref.watch(assetProvider.notifier).deleteAssets({deleteAsset});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-01-27 07:16:28 +02:00
|
|
|
void addToAlbum(Asset addToAlbumAsset) {
|
|
|
|
showModalBottomSheet(
|
2023-04-17 07:02:07 +02:00
|
|
|
elevation: 0,
|
2023-01-27 07:16:28 +02:00
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(15.0),
|
|
|
|
),
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext _) {
|
2023-01-27 23:05:08 +02:00
|
|
|
return AddToAlbumBottomSheet(
|
|
|
|
assets: [addToAlbumAsset],
|
2023-01-27 07:16:28 +02:00
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-01 18:59:34 +02:00
|
|
|
void handleSwipeUpDown(DragUpdateDetails details) {
|
|
|
|
int sensitivity = 15;
|
2023-02-11 22:23:32 +02:00
|
|
|
int dxThreshold = 50;
|
2023-02-01 18:59:34 +02:00
|
|
|
|
|
|
|
if (isZoomed.value) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-21 02:58:17 +02:00
|
|
|
// Guard [localPosition] null
|
|
|
|
if (localPosition == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-02-01 18:59:34 +02:00
|
|
|
// Check for delta from initial down point
|
2023-06-21 02:58:17 +02:00
|
|
|
final d = details.localPosition - localPosition!;
|
2023-02-01 18:59:34 +02:00
|
|
|
// If the magnitude of the dx swipe is large, we probably didn't mean to go down
|
2023-02-11 22:23:32 +02:00
|
|
|
if (d.dx.abs() > dxThreshold) {
|
2023-02-01 18:59:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (details.delta.dy > sensitivity) {
|
|
|
|
AutoRouter.of(context).pop();
|
|
|
|
} else if (details.delta.dy < -sensitivity) {
|
|
|
|
showInfo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-17 07:02:07 +02:00
|
|
|
shareAsset() {
|
2023-05-17 19:36:02 +02:00
|
|
|
ref.watch(imageViewerStateProvider.notifier).shareAsset(asset(), context);
|
2023-04-17 07:02:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
handleArchive(Asset asset) {
|
|
|
|
ref
|
|
|
|
.watch(assetProvider.notifier)
|
|
|
|
.toggleArchive([asset], !asset.isArchived);
|
|
|
|
AutoRouter.of(context).pop();
|
|
|
|
}
|
|
|
|
|
2023-02-03 18:26:05 +02:00
|
|
|
buildAppBar() {
|
2023-06-11 20:10:17 +02:00
|
|
|
return IgnorePointer(
|
2023-06-26 17:27:47 +02:00
|
|
|
ignoring: !ref.watch(showControlsProvider),
|
2023-06-11 20:10:17 +02:00
|
|
|
child: AnimatedOpacity(
|
|
|
|
duration: const Duration(milliseconds: 100),
|
2023-06-26 17:27:47 +02:00
|
|
|
opacity: ref.watch(showControlsProvider) ? 1.0 : 0.0,
|
2023-06-11 20:10:17 +02:00
|
|
|
child: Container(
|
|
|
|
color: Colors.black.withOpacity(0.4),
|
|
|
|
child: TopControlAppBar(
|
|
|
|
isPlayingMotionVideo: isPlayingMotionVideo.value,
|
|
|
|
asset: asset(),
|
|
|
|
isFavorite: asset().isFavorite,
|
|
|
|
onMoreInfoPressed: showInfo,
|
|
|
|
onFavorite:
|
|
|
|
asset().isRemote ? () => toggleFavorite(asset()) : null,
|
|
|
|
onDownloadPressed: asset().isLocal
|
|
|
|
? null
|
|
|
|
: () => ref
|
|
|
|
.watch(imageViewerStateProvider.notifier)
|
|
|
|
.downloadAsset(
|
|
|
|
asset(),
|
|
|
|
context,
|
|
|
|
),
|
|
|
|
onToggleMotionVideo: (() {
|
|
|
|
isPlayingMotionVideo.value = !isPlayingMotionVideo.value;
|
|
|
|
}),
|
|
|
|
onAddToAlbumPressed: () => addToAlbum(asset()),
|
|
|
|
),
|
2023-02-03 18:26:05 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-06-26 17:27:47 +02:00
|
|
|
Widget buildProgressBar() {
|
|
|
|
final playerValue = ref.watch(videoPlaybackValueProvider);
|
|
|
|
|
|
|
|
return Expanded(
|
|
|
|
child: Slider(
|
|
|
|
value: playerValue.duration == Duration.zero
|
|
|
|
? 0.0
|
2023-06-26 18:54:08 +02:00
|
|
|
: min(
|
|
|
|
playerValue.position.inMicroseconds /
|
|
|
|
playerValue.duration.inMicroseconds *
|
|
|
|
100,
|
2023-06-26 17:27:47 +02:00
|
|
|
100,
|
2023-06-26 18:54:08 +02:00
|
|
|
),
|
2023-06-26 17:27:47 +02:00
|
|
|
min: 0,
|
|
|
|
max: 100,
|
|
|
|
thumbColor: Colors.white,
|
|
|
|
activeColor: Colors.white,
|
|
|
|
inactiveColor: Colors.white.withOpacity(0.75),
|
|
|
|
onChanged: (position) {
|
|
|
|
progressValue.value = position;
|
|
|
|
ref.read(videoPlayerControlsProvider.notifier).position = position;
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Text buildPosition() {
|
|
|
|
final position = ref
|
|
|
|
.watch(videoPlaybackValueProvider.select((value) => value.position));
|
|
|
|
|
|
|
|
return Text(
|
|
|
|
_formatDuration(position),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14.0,
|
|
|
|
color: Colors.white.withOpacity(.75),
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Text buildDuration() {
|
|
|
|
final duration = ref
|
|
|
|
.watch(videoPlaybackValueProvider.select((value) => value.duration));
|
|
|
|
|
|
|
|
return Text(
|
|
|
|
_formatDuration(duration),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14.0,
|
|
|
|
color: Colors.white.withOpacity(.75),
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2023-06-11 20:10:17 +02:00
|
|
|
|
2023-06-26 17:27:47 +02:00
|
|
|
Widget buildMuteButton() {
|
|
|
|
return IconButton(
|
|
|
|
icon: Icon(
|
|
|
|
ref.watch(videoPlayerControlsProvider.select((value) => value.mute))
|
|
|
|
? Icons.volume_off
|
|
|
|
: Icons.volume_up,
|
|
|
|
),
|
|
|
|
onPressed: () =>
|
|
|
|
ref.read(videoPlayerControlsProvider.notifier).toggleMute(),
|
|
|
|
color: Colors.white,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
buildBottomBar() {
|
2023-06-11 20:10:17 +02:00
|
|
|
return IgnorePointer(
|
2023-06-26 17:27:47 +02:00
|
|
|
ignoring: !ref.watch(showControlsProvider),
|
2023-06-11 20:10:17 +02:00
|
|
|
child: AnimatedOpacity(
|
|
|
|
duration: const Duration(milliseconds: 100),
|
2023-06-26 17:27:47 +02:00
|
|
|
opacity: ref.watch(showControlsProvider) ? 1.0 : 0.0,
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Visibility(
|
|
|
|
visible: !asset().isImage && !isPlayingMotionVideo.value,
|
|
|
|
child: Container(
|
|
|
|
color: Colors.black.withOpacity(0.4),
|
|
|
|
child: Padding(
|
|
|
|
padding: MediaQuery.of(context).orientation ==
|
|
|
|
Orientation.portrait
|
|
|
|
? const EdgeInsets.symmetric(horizontal: 12.0)
|
|
|
|
: const EdgeInsets.symmetric(horizontal: 64.0),
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
buildPosition(),
|
|
|
|
buildProgressBar(),
|
|
|
|
buildDuration(),
|
|
|
|
buildMuteButton(),
|
|
|
|
],
|
2023-06-11 20:10:17 +02:00
|
|
|
),
|
2023-06-26 17:27:47 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
BottomNavigationBar(
|
|
|
|
backgroundColor: Colors.black.withOpacity(0.4),
|
|
|
|
unselectedIconTheme: const IconThemeData(color: Colors.white),
|
|
|
|
selectedIconTheme: const IconThemeData(color: Colors.white),
|
|
|
|
unselectedLabelStyle: const TextStyle(color: Colors.black),
|
|
|
|
selectedLabelStyle: const TextStyle(color: Colors.black),
|
|
|
|
showSelectedLabels: false,
|
|
|
|
showUnselectedLabels: false,
|
|
|
|
items: [
|
|
|
|
BottomNavigationBarItem(
|
|
|
|
icon: const Icon(Icons.ios_share_rounded),
|
|
|
|
label: 'control_bottom_app_bar_share'.tr(),
|
|
|
|
tooltip: 'control_bottom_app_bar_share'.tr(),
|
|
|
|
),
|
|
|
|
asset().isArchived
|
|
|
|
? BottomNavigationBarItem(
|
|
|
|
icon: const Icon(Icons.unarchive_rounded),
|
|
|
|
label: 'control_bottom_app_bar_unarchive'.tr(),
|
|
|
|
tooltip: 'control_bottom_app_bar_unarchive'.tr(),
|
|
|
|
)
|
|
|
|
: BottomNavigationBarItem(
|
|
|
|
icon: const Icon(Icons.archive_outlined),
|
|
|
|
label: 'control_bottom_app_bar_archive'.tr(),
|
|
|
|
tooltip: 'control_bottom_app_bar_archive'.tr(),
|
|
|
|
),
|
|
|
|
BottomNavigationBarItem(
|
|
|
|
icon: const Icon(Icons.delete_outline),
|
|
|
|
label: 'control_bottom_app_bar_delete'.tr(),
|
|
|
|
tooltip: 'control_bottom_app_bar_delete'.tr(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
onTap: (index) {
|
|
|
|
switch (index) {
|
|
|
|
case 0:
|
|
|
|
shareAsset();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
handleArchive(asset());
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
handleDelete(asset());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
2023-06-11 20:10:17 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2023-04-17 07:02:07 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-06-26 17:27:47 +02:00
|
|
|
ref.listen(showControlsProvider, (_, show) {
|
|
|
|
if (show) {
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
|
|
|
|
} else {
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersive);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-06-20 23:17:43 +02:00
|
|
|
ImageProvider imageProvider(Asset asset) {
|
2023-07-01 03:47:44 +02:00
|
|
|
if (!asset.isRemote ||
|
|
|
|
asset.isLocal && !Store.get(StoreKey.preferRemoteImage, false)) {
|
2023-06-20 23:17:43 +02:00
|
|
|
return localImageProvider(asset);
|
|
|
|
} else {
|
|
|
|
if (isLoadOriginal.value) {
|
|
|
|
return originalImageProvider(asset);
|
|
|
|
} else if (isLoadPreview.value) {
|
|
|
|
return remoteThumbnailImageProvider(
|
|
|
|
asset,
|
|
|
|
api.ThumbnailFormat.JPEG,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return remoteThumbnailImageProvider(
|
|
|
|
asset,
|
|
|
|
api.ThumbnailFormat.WEBP,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 22:36:12 +02:00
|
|
|
return Scaffold(
|
|
|
|
backgroundColor: Colors.black,
|
2023-03-06 06:51:18 +02:00
|
|
|
body: WillPopScope(
|
|
|
|
onWillPop: () async {
|
|
|
|
// Change immersive mode back to normal "edgeToEdge" mode
|
|
|
|
await SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
PhotoViewGallery.builder(
|
|
|
|
scaleStateChangedCallback: (state) {
|
|
|
|
isZoomed.value = state != PhotoViewScaleState.initial;
|
|
|
|
},
|
|
|
|
pageController: controller,
|
|
|
|
scrollPhysics: isZoomed.value
|
|
|
|
? const NeverScrollableScrollPhysics() // Don't allow paging while scrolled in
|
|
|
|
: (Platform.isIOS
|
2023-04-18 18:23:56 +02:00
|
|
|
? const ScrollPhysics() // Use bouncing physics for iOS
|
2023-03-06 06:51:18 +02:00
|
|
|
: const ClampingScrollPhysics() // Use heavy physics for Android
|
|
|
|
),
|
2023-05-17 19:36:02 +02:00
|
|
|
itemCount: totalAssets,
|
2023-03-06 06:51:18 +02:00
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
onPageChanged: (value) {
|
|
|
|
// Precache image
|
2023-05-17 19:36:02 +02:00
|
|
|
if (currentIndex.value < value) {
|
2023-03-06 06:51:18 +02:00
|
|
|
// Moving forwards, so precache the next asset
|
|
|
|
precacheNextImage(value + 1);
|
|
|
|
} else {
|
|
|
|
// Moving backwards, so precache previous asset
|
|
|
|
precacheNextImage(value - 1);
|
|
|
|
}
|
2023-05-17 19:36:02 +02:00
|
|
|
currentIndex.value = value;
|
2023-06-26 17:27:47 +02:00
|
|
|
progressValue.value = 0.0;
|
|
|
|
|
2023-03-06 06:51:18 +02:00
|
|
|
HapticFeedback.selectionClick();
|
|
|
|
},
|
|
|
|
loadingBuilder: isLoadPreview.value
|
|
|
|
? (context, event) {
|
2023-05-17 19:36:02 +02:00
|
|
|
final a = asset();
|
2023-07-01 03:47:44 +02:00
|
|
|
if (!a.isLocal ||
|
|
|
|
(a.isRemote &&
|
|
|
|
Store.get(StoreKey.preferRemoteImage, false))) {
|
2023-03-06 06:51:18 +02:00
|
|
|
// Use the WEBP Thumbnail as a placeholder for the JPEG thumbnail to achieve
|
|
|
|
// Three-Stage Loading (WEBP -> JPEG -> Original)
|
|
|
|
final webPThumbnail = CachedNetworkImage(
|
|
|
|
imageUrl: getThumbnailUrl(
|
2023-05-17 19:36:02 +02:00
|
|
|
a,
|
2023-03-06 06:51:18 +02:00
|
|
|
type: api.ThumbnailFormat.WEBP,
|
|
|
|
),
|
|
|
|
cacheKey: getThumbnailCacheKey(
|
2023-05-17 19:36:02 +02:00
|
|
|
a,
|
2023-03-06 06:51:18 +02:00
|
|
|
type: api.ThumbnailFormat.WEBP,
|
|
|
|
),
|
|
|
|
httpHeaders: {'Authorization': authToken},
|
2023-03-15 23:29:07 +02:00
|
|
|
progressIndicatorBuilder: (_, __, ___) =>
|
|
|
|
const Center(
|
2023-03-06 06:51:18 +02:00
|
|
|
child: ImmichLoadingIndicator(),
|
|
|
|
),
|
|
|
|
fadeInDuration: const Duration(milliseconds: 0),
|
|
|
|
fit: BoxFit.contain,
|
2023-03-15 23:29:07 +02:00
|
|
|
errorWidget: (context, url, error) =>
|
|
|
|
const Icon(Icons.image_not_supported_outlined),
|
2023-03-06 06:51:18 +02:00
|
|
|
);
|
2023-02-04 22:42:42 +02:00
|
|
|
|
2023-03-15 23:29:07 +02:00
|
|
|
if (isLoadOriginal.value) {
|
|
|
|
// loading the preview in the loadingBuilder only
|
|
|
|
// makes sense if the original is loaded in the builder
|
|
|
|
return CachedNetworkImage(
|
|
|
|
imageUrl: getThumbnailUrl(
|
2023-05-17 19:36:02 +02:00
|
|
|
a,
|
2023-03-15 23:29:07 +02:00
|
|
|
type: api.ThumbnailFormat.JPEG,
|
|
|
|
),
|
|
|
|
cacheKey: getThumbnailCacheKey(
|
2023-05-17 19:36:02 +02:00
|
|
|
a,
|
2023-03-15 23:29:07 +02:00
|
|
|
type: api.ThumbnailFormat.JPEG,
|
|
|
|
),
|
|
|
|
httpHeaders: {'Authorization': authToken},
|
|
|
|
fit: BoxFit.contain,
|
|
|
|
fadeInDuration: const Duration(milliseconds: 0),
|
|
|
|
placeholder: (_, __) => webPThumbnail,
|
|
|
|
errorWidget: (_, __, ___) => webPThumbnail,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return webPThumbnail;
|
|
|
|
}
|
2023-03-06 06:51:18 +02:00
|
|
|
} else {
|
|
|
|
return Image(
|
2023-05-17 19:36:02 +02:00
|
|
|
image: localThumbnailImageProvider(a),
|
2023-03-06 06:51:18 +02:00
|
|
|
fit: BoxFit.contain,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
: null,
|
|
|
|
builder: (context, index) {
|
2023-05-17 19:36:02 +02:00
|
|
|
final asset = loadAsset(index);
|
2023-06-20 23:17:43 +02:00
|
|
|
final ImageProvider provider = imageProvider(asset);
|
|
|
|
|
2023-05-17 19:36:02 +02:00
|
|
|
if (asset.isImage && !isPlayingMotionVideo.value) {
|
2023-03-06 06:51:18 +02:00
|
|
|
return PhotoViewGalleryPageOptions(
|
|
|
|
onDragStart: (_, details, __) =>
|
|
|
|
localPosition = details.localPosition,
|
2023-03-15 23:29:07 +02:00
|
|
|
onDragUpdate: (_, details, __) =>
|
|
|
|
handleSwipeUpDown(details),
|
2023-06-26 17:27:47 +02:00
|
|
|
onTapDown: (_, __, ___) {
|
|
|
|
ref.read(showControlsProvider.notifier).toggle();
|
|
|
|
},
|
2023-03-06 06:51:18 +02:00
|
|
|
imageProvider: provider,
|
|
|
|
heroAttributes: PhotoViewHeroAttributes(
|
2023-05-17 19:36:02 +02:00
|
|
|
tag: asset.id,
|
2023-03-06 06:51:18 +02:00
|
|
|
),
|
|
|
|
filterQuality: FilterQuality.high,
|
|
|
|
tightMode: true,
|
|
|
|
minScale: PhotoViewComputedScale.contained,
|
2023-03-15 23:29:07 +02:00
|
|
|
errorBuilder: (context, error, stackTrace) => ImmichImage(
|
2023-05-17 19:36:02 +02:00
|
|
|
asset,
|
2023-03-15 23:29:07 +02:00
|
|
|
fit: BoxFit.contain,
|
|
|
|
),
|
2023-03-06 06:51:18 +02:00
|
|
|
);
|
2023-02-01 18:59:34 +02:00
|
|
|
} else {
|
2023-03-06 06:51:18 +02:00
|
|
|
return PhotoViewGalleryPageOptions.customChild(
|
|
|
|
onDragStart: (_, details, __) =>
|
|
|
|
localPosition = details.localPosition,
|
2023-03-15 23:29:07 +02:00
|
|
|
onDragUpdate: (_, details, __) =>
|
|
|
|
handleSwipeUpDown(details),
|
2023-03-06 06:51:18 +02:00
|
|
|
heroAttributes: PhotoViewHeroAttributes(
|
2023-05-17 19:36:02 +02:00
|
|
|
tag: asset.id,
|
2023-02-04 22:42:42 +02:00
|
|
|
),
|
2023-03-06 06:51:18 +02:00
|
|
|
filterQuality: FilterQuality.high,
|
|
|
|
maxScale: 1.0,
|
|
|
|
minScale: 1.0,
|
2023-06-26 17:27:47 +02:00
|
|
|
basePosition: Alignment.center,
|
2023-06-20 23:17:43 +02:00
|
|
|
child: VideoViewerPage(
|
|
|
|
onPlaying: () => isPlayingVideo.value = true,
|
|
|
|
onPaused: () => isPlayingVideo.value = false,
|
|
|
|
asset: asset,
|
|
|
|
isMotionVideo: isPlayingMotionVideo.value,
|
|
|
|
placeholder: Image(
|
|
|
|
image: provider,
|
|
|
|
fit: BoxFit.fitWidth,
|
|
|
|
height: MediaQuery.of(context).size.height,
|
|
|
|
width: MediaQuery.of(context).size.width,
|
|
|
|
alignment: Alignment.center,
|
2023-03-06 06:51:18 +02:00
|
|
|
),
|
2023-06-20 23:17:43 +02:00
|
|
|
onVideoEnded: () {
|
|
|
|
if (isPlayingMotionVideo.value) {
|
|
|
|
isPlayingMotionVideo.value = false;
|
|
|
|
}
|
|
|
|
},
|
2023-03-06 06:51:18 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
Positioned(
|
|
|
|
top: 0,
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
child: buildAppBar(),
|
|
|
|
),
|
2023-04-17 07:02:07 +02:00
|
|
|
Positioned(
|
|
|
|
bottom: 0,
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
child: buildBottomBar(),
|
|
|
|
),
|
2023-03-06 06:51:18 +02:00
|
|
|
],
|
|
|
|
),
|
2022-08-03 22:36:12 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2023-06-26 17:27:47 +02:00
|
|
|
|
|
|
|
String _formatDuration(Duration position) {
|
|
|
|
final ms = position.inMilliseconds;
|
|
|
|
|
|
|
|
int seconds = ms ~/ 1000;
|
|
|
|
final int hours = seconds ~/ 3600;
|
|
|
|
seconds = seconds % 3600;
|
|
|
|
final minutes = seconds ~/ 60;
|
|
|
|
seconds = seconds % 60;
|
|
|
|
|
|
|
|
final hoursString = hours >= 10
|
|
|
|
? '$hours'
|
|
|
|
: hours == 0
|
|
|
|
? '00'
|
|
|
|
: '0$hours';
|
|
|
|
|
|
|
|
final minutesString = minutes >= 10
|
|
|
|
? '$minutes'
|
|
|
|
: minutes == 0
|
|
|
|
? '00'
|
|
|
|
: '0$minutes';
|
|
|
|
|
|
|
|
final secondsString = seconds >= 10
|
|
|
|
? '$seconds'
|
|
|
|
: seconds == 0
|
|
|
|
? '00'
|
|
|
|
: '0$seconds';
|
|
|
|
|
|
|
|
final formattedTime =
|
|
|
|
'${hoursString == '00' ? '' : '$hoursString:'}$minutesString:$secondsString';
|
|
|
|
|
|
|
|
return formattedTime;
|
|
|
|
}
|
2022-08-03 22:36:12 +02:00
|
|
|
}
|