mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-08-05 04:36:41 +00:00
97 lines
2.6 KiB
Dart
97 lines
2.6 KiB
Dart
import 'package:collection/collection.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/utils/context_utils.dart';
|
|
import 'package:m3_lightmeter_iap/m3_lightmeter_iap.dart';
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
class LogbookPhotosProvider extends StatefulWidget {
|
|
final LogbookPhotosStorageService storageService;
|
|
final VoidCallback? onInitialized;
|
|
final Widget child;
|
|
|
|
const LogbookPhotosProvider({
|
|
required this.storageService,
|
|
this.onInitialized,
|
|
required this.child,
|
|
super.key,
|
|
});
|
|
|
|
static LogbookPhotosProviderState of(BuildContext context) {
|
|
return context.findAncestorStateOfType<LogbookPhotosProviderState>()!;
|
|
}
|
|
|
|
@override
|
|
State<LogbookPhotosProvider> createState() => LogbookPhotosProviderState();
|
|
}
|
|
|
|
class LogbookPhotosProviderState extends State<LogbookPhotosProvider> {
|
|
final Map<String, LogbookPhoto> _photos = {};
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_init();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LogbookPhotos(
|
|
photos: context.isPro ? _photos.values.toList(growable: false) : [],
|
|
child: widget.child,
|
|
);
|
|
}
|
|
|
|
Future<void> _init() async {
|
|
_photos.addAll(
|
|
Map.fromIterable(
|
|
await widget.storageService.getPhotos(),
|
|
key: (photo) => (photo as LogbookPhoto).id,
|
|
),
|
|
);
|
|
if (mounted) setState(() {});
|
|
widget.onInitialized?.call();
|
|
}
|
|
|
|
Future<void> addPhoto(LogbookPhoto photo) async {
|
|
await widget.storageService.addPhoto(photo);
|
|
_photos[photo.id] = photo;
|
|
setState(() {});
|
|
}
|
|
|
|
Future<void> updateProfile(LogbookPhoto photo) async {
|
|
final oldProfile = _photos[photo.id]!;
|
|
if (oldProfile.note != photo.note) {
|
|
await widget.storageService.updatePhoto(
|
|
id: photo.id,
|
|
note: photo.note,
|
|
);
|
|
_photos[photo.id] = photo;
|
|
setState(() {});
|
|
}
|
|
}
|
|
|
|
Future<void> deleteProfile(LogbookPhoto photo) async {
|
|
await widget.storageService.deletePhoto(photo.id);
|
|
_photos.remove(photo.id);
|
|
setState(() {});
|
|
}
|
|
}
|
|
|
|
class LogbookPhotos extends InheritedWidget {
|
|
final List<LogbookPhoto> photos;
|
|
|
|
const LogbookPhotos({
|
|
required this.photos,
|
|
required super.child,
|
|
});
|
|
|
|
static List<LogbookPhoto> of(BuildContext context, {bool listen = false}) {
|
|
return (listen
|
|
? context.dependOnInheritedWidgetOfExactType<LogbookPhotos>()
|
|
: context.getInheritedWidgetOfExactType<LogbookPhotos>())!
|
|
.photos;
|
|
}
|
|
|
|
@override
|
|
bool updateShouldNotify(LogbookPhotos oldWidget) => const DeepCollectionEquality().equals(oldWidget.photos, photos);
|
|
}
|