nc-photos/app/lib/widget/settings/metadata/bloc.dart

57 lines
1.6 KiB
Dart
Raw Normal View History

2023-07-27 17:14:50 +02:00
part of '../metadata_settings.dart';
@npLog
2024-06-17 18:04:53 +02:00
class _Bloc extends Bloc<_Event, _State>
with BlocLogger, BlocForEachMixin<_Event, _State> {
2023-07-27 17:14:50 +02:00
_Bloc({
required this.prefController,
}) : super(_State(
isEnable: prefController.isEnableExifValue,
isWifiOnly: prefController.shouldProcessExifWifiOnlyValue,
2023-07-27 17:14:50 +02:00
)) {
on<_Init>(_onInit);
on<_SetEnable>(_onSetEnable);
on<_SetWifiOnly>(_onSetWifiOnly);
}
2023-07-28 18:48:50 +02:00
@override
String get tag => _log.fullName;
2023-07-27 17:14:50 +02:00
Future<void> _onInit(_Init ev, Emitter<_State> emit) async {
_log.info(ev);
await Future.wait([
2024-06-17 18:04:53 +02:00
forEach(
emit,
prefController.isEnableExifChange,
2023-07-27 17:14:50 +02:00
onData: (data) => state.copyWith(isEnable: data),
onError: (e, stackTrace) {
_log.severe("[_onInit] Uncaught exception", e, stackTrace);
return state.copyWith(error: ExceptionEvent(e, stackTrace));
},
),
2024-06-17 18:04:53 +02:00
forEach(
emit,
prefController.shouldProcessExifWifiOnlyChange,
2023-07-27 17:14:50 +02:00
onData: (data) => state.copyWith(isWifiOnly: data),
onError: (e, stackTrace) {
_log.severe("[_onInit] Uncaught exception", e, stackTrace);
return state.copyWith(error: ExceptionEvent(e, stackTrace));
},
),
]);
}
void _onSetEnable(_SetEnable ev, Emitter<_State> emit) {
_log.info(ev);
prefController.setEnableExif(ev.value);
}
Future<void> _onSetWifiOnly(_SetWifiOnly ev, Emitter<_State> emit) async {
_log.info(ev);
await prefController.setProcessExifWifiOnly(ev.value);
ServiceConfig.setProcessExifWifiOnly(ev.value).ignore();
}
final PrefController prefController;
}