mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	* move markers and style to dedicated map endpoint * chore: open api * chore: clean up repos --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:immich_mobile/mixins/error_logger.mixin.dart';
 | 
						|
import 'package:immich_mobile/models/map/map_marker.model.dart';
 | 
						|
import 'package:immich_mobile/services/api.service.dart';
 | 
						|
import 'package:logging/logging.dart';
 | 
						|
 | 
						|
class MapSerivce with ErrorLoggerMixin {
 | 
						|
  final ApiService _apiService;
 | 
						|
  @override
 | 
						|
  final logger = Logger("MapService");
 | 
						|
 | 
						|
  MapSerivce(this._apiService);
 | 
						|
 | 
						|
  Future<Iterable<MapMarker>> getMapMarkers({
 | 
						|
    bool? isFavorite,
 | 
						|
    bool? withArchived,
 | 
						|
    bool? withPartners,
 | 
						|
    DateTime? fileCreatedAfter,
 | 
						|
    DateTime? fileCreatedBefore,
 | 
						|
  }) async {
 | 
						|
    return logError(
 | 
						|
      () async {
 | 
						|
        final markers = await _apiService.mapApi.getMapMarkers(
 | 
						|
          isFavorite: isFavorite,
 | 
						|
          isArchived: withArchived,
 | 
						|
          withPartners: withPartners,
 | 
						|
          fileCreatedAfter: fileCreatedAfter,
 | 
						|
          fileCreatedBefore: fileCreatedBefore,
 | 
						|
        );
 | 
						|
 | 
						|
        return markers?.map(MapMarker.fromDto) ?? [];
 | 
						|
      },
 | 
						|
      defaultValue: [],
 | 
						|
      errorMessage: "Failed to get map markers",
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |