mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	* feat(mobile): map page - add map view * map: add map-markers * feat(map): add relative date filter * fix: do not let users scroll past map bounds * fix: fetch relative date from store to state on init * feat(mobile):re-fetch markers only on filter change * feat(mobile) - asset bottom sheet in map page * feat(mobile): display markers based on bottom sheet scroll * fix: exif-bottom-sheet - rebase conflict * feat(mobile): map-view - strongly typed map page events * feat(map): zoom to asset * chore: dart analyzer fixes * map-page move attribution to top-right * feat(mobile): map view - asset selection handling * feat(mobile): map-view display map in places row * fix: make asset marker icon responsive * optimise map page rebuilds * refactor(mobile): map page * feat(mobile): map-view: Go to location * map-view(mobile): minor refactor * fix(mobile): Handle invalid coords gracefully * small styling --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:flutter/material.dart';
 | 
						|
import 'package:fluttertoast/fluttertoast.dart';
 | 
						|
import 'package:hooks_riverpod/hooks_riverpod.dart';
 | 
						|
import 'package:immich_mobile/shared/models/asset.dart';
 | 
						|
import 'package:immich_mobile/shared/providers/asset.provider.dart';
 | 
						|
import 'package:immich_mobile/shared/services/share.service.dart';
 | 
						|
import 'package:immich_mobile/shared/ui/immich_toast.dart';
 | 
						|
import 'package:immich_mobile/shared/ui/share_dialog.dart';
 | 
						|
 | 
						|
void handleShareAssets(
 | 
						|
  WidgetRef ref,
 | 
						|
  BuildContext context,
 | 
						|
  List<Asset> selection,
 | 
						|
) {
 | 
						|
  showDialog(
 | 
						|
    context: context,
 | 
						|
    builder: (BuildContext buildContext) {
 | 
						|
      ref
 | 
						|
          .watch(shareServiceProvider)
 | 
						|
          .shareAssets(selection.toList())
 | 
						|
          .then((_) => Navigator.of(buildContext).pop());
 | 
						|
      return const ShareDialog();
 | 
						|
    },
 | 
						|
    barrierDismissible: false,
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
Future<void> handleArchiveAssets(
 | 
						|
  WidgetRef ref,
 | 
						|
  BuildContext context,
 | 
						|
  List<Asset> selection, {
 | 
						|
  bool shouldArchive = true,
 | 
						|
  ToastGravity toastGravity = ToastGravity.BOTTOM,
 | 
						|
}) async {
 | 
						|
  if (selection.isNotEmpty) {
 | 
						|
    await ref
 | 
						|
        .read(assetProvider.notifier)
 | 
						|
        .toggleArchive(selection, shouldArchive);
 | 
						|
 | 
						|
    final assetOrAssets = selection.length > 1 ? 'assets' : 'asset';
 | 
						|
    final archiveOrLibrary = shouldArchive ? 'archive' : 'library';
 | 
						|
    if (context.mounted) {
 | 
						|
      ImmichToast.show(
 | 
						|
        context: context,
 | 
						|
        msg: 'Moved ${selection.length} $assetOrAssets to $archiveOrLibrary',
 | 
						|
        gravity: toastGravity,
 | 
						|
      );
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
Future<void> handleFavoriteAssets(
 | 
						|
  WidgetRef ref,
 | 
						|
  BuildContext context,
 | 
						|
  List<Asset> selection, {
 | 
						|
  bool shouldFavorite = true,
 | 
						|
  ToastGravity toastGravity = ToastGravity.BOTTOM,
 | 
						|
}) async {
 | 
						|
  if (selection.isNotEmpty) {
 | 
						|
    await ref
 | 
						|
        .watch(assetProvider.notifier)
 | 
						|
        .toggleFavorite(selection, shouldFavorite);
 | 
						|
 | 
						|
    final assetOrAssets = selection.length > 1 ? 'assets' : 'asset';
 | 
						|
    final toastMessage = shouldFavorite
 | 
						|
        ? 'Added ${selection.length} $assetOrAssets to favorites'
 | 
						|
        : 'Removed ${selection.length} $assetOrAssets from favorites';
 | 
						|
    if (context.mounted) {
 | 
						|
      ImmichToast.show(
 | 
						|
        context: context,
 | 
						|
        msg: toastMessage,
 | 
						|
        gravity: ToastGravity.BOTTOM,
 | 
						|
      );
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |