ente/lib/ui/map/map_screen.dart
2023-07-06 09:42:17 +05:30

233 lines
6.6 KiB
Dart

import "dart:async";
import "dart:isolate";
import "package:collection/collection.dart";
import "package:flutter/foundation.dart";
import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';
import "package:latlong2/latlong.dart";
import "package:logging/logging.dart";
import "package:photos/generated/l10n.dart";
import "package:photos/models/file.dart";
import "package:photos/theme/ente_theme.dart";
import "package:photos/ui/common/loading_widget.dart";
import "package:photos/ui/map/image_marker.dart";
import "package:photos/ui/map/map_isolate.dart";
import "package:photos/ui/map/map_pull_up_gallery.dart";
import "package:photos/ui/map/map_view.dart";
import "package:photos/utils/toast_util.dart";
class MapScreen extends StatefulWidget {
// Add a function parameter where the function returns a Future<List<File>>
final Future<List<File>> Function() filesFutureFn;
const MapScreen({
super.key,
required this.filesFutureFn,
});
@override
State<StatefulWidget> createState() {
return _MapScreenState();
}
}
class _MapScreenState extends State<MapScreen> {
List<ImageMarker> imageMarkers = [];
List<File> allImages = [];
StreamController<List<File>> visibleImages =
StreamController<List<File>>.broadcast();
MapController mapController = MapController();
bool isLoading = true;
double initialZoom = 4.5;
double maxZoom = 18.0;
double minZoom = 2.8;
int debounceDuration = 500;
LatLng center = LatLng(46.7286, 4.8614);
final Logger _logger = Logger("_MapScreenState");
StreamSubscription? _mapMoveSubscription;
Isolate? isolate;
static const bottomSheetDraggableAreaHeight = 32.0;
List<File>? prevMessage;
@override
void initState() {
super.initState();
initialize();
}
@override
void dispose() {
super.dispose();
visibleImages.close();
_mapMoveSubscription?.cancel();
}
Future<void> initialize() async {
try {
allImages = await widget.filesFutureFn();
processFiles(allImages);
} catch (e, s) {
_logger.severe("Error initializing map screen", e, s);
}
}
Future<void> processFiles(List<File> files) async {
final List<ImageMarker> tempMarkers = [];
bool hasAnyLocation = false;
File? mostRecentFile;
for (var file in files) {
if (file.hasLocation && file.location != null) {
hasAnyLocation = true;
if (mostRecentFile == null) {
mostRecentFile = file;
} else {
if ((mostRecentFile.creationTime ?? 0) < (file.creationTime ?? 0)) {
mostRecentFile = file;
}
}
tempMarkers.add(
ImageMarker(
latitude: file.location!.latitude!,
longitude: file.location!.longitude!,
imageFile: file,
),
);
}
}
if (hasAnyLocation) {
center = LatLng(
mostRecentFile!.location!.latitude!,
mostRecentFile.location!.longitude!,
);
if (kDebugMode) {
debugPrint("Info for map: center $center, initialZoom $initialZoom");
}
} else {
showShortToast(context, S.of(context).noImagesWithLocation);
}
setState(() {
imageMarkers = tempMarkers;
});
mapController.move(
center,
initialZoom,
);
Timer(Duration(milliseconds: debounceDuration), () {
calculateVisibleMarkers(mapController.bounds!);
setState(() {
isLoading = false;
});
});
}
void calculateVisibleMarkers(LatLngBounds bounds) async {
final ReceivePort receivePort = ReceivePort();
isolate = await Isolate.spawn<MapIsolate>(
_calculateMarkersIsolate,
MapIsolate(
bounds: bounds,
imageMarkers: imageMarkers,
sendPort: receivePort.sendPort,
),
);
_mapMoveSubscription = receivePort.listen((dynamic message) async {
if (message is List<File>) {
if (!message.equals(prevMessage ?? [])) {
visibleImages.sink.add(message);
}
prevMessage = message;
} else {
_mapMoveSubscription?.cancel();
isolate?.kill();
}
});
}
@pragma('vm:entry-point')
static void _calculateMarkersIsolate(MapIsolate message) async {
final bounds = message.bounds;
final imageMarkers = message.imageMarkers;
final SendPort sendPort = message.sendPort;
try {
final List<File> visibleFiles = [];
for (var imageMarker in imageMarkers) {
final point = LatLng(imageMarker.latitude, imageMarker.longitude);
if (bounds.contains(point)) {
visibleFiles.add(imageMarker.imageFile);
}
}
sendPort.send(visibleFiles);
} catch (e) {
sendPort.send(e.toString());
}
}
@override
Widget build(BuildContext context) {
final colorScheme = getEnteColorScheme(context);
final bottomUnsafeArea = MediaQuery.of(context).padding.bottom;
return Container(
color: colorScheme.backgroundBase,
child: Theme(
data: Theme.of(context).copyWith(
bottomSheetTheme: const BottomSheetThemeData(
backgroundColor: Colors.transparent,
),
),
child: Scaffold(
body: Stack(
children: [
LayoutBuilder(
builder: (context, constrains) {
return SizedBox(
height: constrains.maxHeight * 0.75 +
bottomSheetDraggableAreaHeight -
bottomUnsafeArea,
child: MapView(
key: ValueKey(
'image-marker-count-${imageMarkers.length}',
),
controller: mapController,
imageMarkers: imageMarkers,
updateVisibleImages: calculateVisibleMarkers,
center: center,
initialZoom: initialZoom,
minZoom: minZoom,
maxZoom: maxZoom,
debounceDuration: debounceDuration,
bottomSheetDraggableAreaHeight:
bottomSheetDraggableAreaHeight,
),
);
},
),
isLoading
? EnteLoadingWidget(
size: 28,
color: getEnteColorScheme(context).primary700,
)
: const SizedBox.shrink(),
],
),
bottomSheet: MapPullUpGallery(
visibleImages,
bottomSheetDraggableAreaHeight,
bottomUnsafeArea,
),
),
),
);
}
}