2023-08-14 10:25:37 +00:00
|
|
|
import 'package:dynamic_color/dynamic_color.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/scheduler.dart';
|
|
|
|
import 'package:lightmeter/data/models/dynamic_colors_state.dart';
|
|
|
|
import 'package:lightmeter/data/models/ev_source_type.dart';
|
|
|
|
import 'package:lightmeter/data/models/metering_screen_layout_config.dart';
|
|
|
|
import 'package:lightmeter/data/models/supported_locale.dart';
|
|
|
|
import 'package:lightmeter/data/models/theme_type.dart';
|
|
|
|
import 'package:lightmeter/data/shared_prefs_service.dart';
|
|
|
|
import 'package:lightmeter/generated/l10n.dart';
|
|
|
|
import 'package:lightmeter/res/theme.dart';
|
|
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
|
|
|
|
class UserPreferencesProvider extends StatefulWidget {
|
2023-10-20 14:12:43 +00:00
|
|
|
final bool hasLightSensor;
|
|
|
|
final UserPreferencesService userPreferencesService;
|
2023-08-14 10:25:37 +00:00
|
|
|
final Widget child;
|
|
|
|
|
2023-10-20 14:12:43 +00:00
|
|
|
const UserPreferencesProvider({
|
|
|
|
required this.hasLightSensor,
|
|
|
|
required this.userPreferencesService,
|
|
|
|
required this.child,
|
|
|
|
super.key,
|
|
|
|
});
|
2023-08-14 10:25:37 +00:00
|
|
|
|
|
|
|
static _UserPreferencesProviderState of(BuildContext context) {
|
|
|
|
return context.findAncestorStateOfType<_UserPreferencesProviderState>()!;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DynamicColorState dynamicColorStateOf(BuildContext context) {
|
|
|
|
return _inheritFromEnumsModel(context, _Aspect.dynamicColorState).dynamicColorState;
|
|
|
|
}
|
|
|
|
|
|
|
|
static EvSourceType evSourceTypeOf(BuildContext context) {
|
|
|
|
return _inheritFromEnumsModel(context, _Aspect.evSourceType).evSourceType;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SupportedLocale localeOf(BuildContext context) {
|
|
|
|
return _inheritFromEnumsModel(context, _Aspect.locale).locale;
|
|
|
|
}
|
|
|
|
|
|
|
|
static MeteringScreenLayoutConfig meteringScreenConfigOf(BuildContext context) {
|
|
|
|
return context.findAncestorWidgetOfExactType<_MeteringScreenLayoutModel>()!.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool meteringScreenFeatureOf(BuildContext context, MeteringScreenLayoutFeature feature) {
|
2023-10-20 14:12:43 +00:00
|
|
|
return InheritedModel.inheritFrom<_MeteringScreenLayoutModel>(context, aspect: feature)!.data[feature]!;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static StopType stopTypeOf(BuildContext context) {
|
|
|
|
return _inheritFromEnumsModel(context, _Aspect.stopType).stopType;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ThemeData themeOf(BuildContext context) {
|
|
|
|
return _inheritFromEnumsModel(context, _Aspect.theme).theme;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ThemeType themeTypeOf(BuildContext context) {
|
|
|
|
return _inheritFromEnumsModel(context, _Aspect.themeType).themeType;
|
|
|
|
}
|
|
|
|
|
|
|
|
static _UserPreferencesModel _inheritFromEnumsModel(
|
|
|
|
BuildContext context,
|
|
|
|
_Aspect aspect,
|
|
|
|
) {
|
|
|
|
return InheritedModel.inheritFrom<_UserPreferencesModel>(context, aspect: aspect)!;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<UserPreferencesProvider> createState() => _UserPreferencesProviderState();
|
|
|
|
}
|
|
|
|
|
2023-10-20 14:12:43 +00:00
|
|
|
class _UserPreferencesProviderState extends State<UserPreferencesProvider> with WidgetsBindingObserver {
|
|
|
|
late EvSourceType _evSourceType;
|
|
|
|
late StopType _stopType = widget.userPreferencesService.stopType;
|
|
|
|
late MeteringScreenLayoutConfig _meteringScreenLayout = widget.userPreferencesService.meteringScreenLayout;
|
|
|
|
late SupportedLocale _locale = widget.userPreferencesService.locale;
|
|
|
|
late ThemeType _themeType = widget.userPreferencesService.themeType;
|
|
|
|
late Color _primaryColor = widget.userPreferencesService.primaryColor;
|
|
|
|
late bool _dynamicColor = widget.userPreferencesService.dynamicColor;
|
2023-08-14 10:25:37 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2023-10-20 14:12:43 +00:00
|
|
|
_evSourceType = widget.userPreferencesService.evSourceType;
|
|
|
|
_evSourceType = _evSourceType == EvSourceType.sensor && !widget.hasLightSensor ? EvSourceType.camera : _evSourceType;
|
2023-08-14 10:25:37 +00:00
|
|
|
WidgetsBinding.instance.addObserver(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void didChangePlatformBrightness() {
|
|
|
|
super.didChangePlatformBrightness();
|
|
|
|
setState(() {});
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
WidgetsBinding.instance.removeObserver(this);
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return DynamicColorBuilder(
|
|
|
|
builder: (lightDynamic, darkDynamic) {
|
|
|
|
late final DynamicColorState state;
|
|
|
|
late final Color? dynamicPrimaryColor;
|
|
|
|
if (lightDynamic != null && darkDynamic != null) {
|
2023-10-20 14:12:43 +00:00
|
|
|
if (_dynamicColor) {
|
|
|
|
dynamicPrimaryColor = (_themeBrightness == Brightness.light ? lightDynamic : darkDynamic).primary;
|
2023-08-14 10:25:37 +00:00
|
|
|
state = DynamicColorState.enabled;
|
|
|
|
} else {
|
|
|
|
dynamicPrimaryColor = null;
|
|
|
|
state = DynamicColorState.disabled;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dynamicPrimaryColor = null;
|
|
|
|
state = DynamicColorState.unavailable;
|
|
|
|
}
|
|
|
|
return _UserPreferencesModel(
|
|
|
|
brightness: _themeBrightness,
|
|
|
|
dynamicColorState: state,
|
2023-10-20 14:12:43 +00:00
|
|
|
evSourceType: _evSourceType,
|
|
|
|
locale: _locale,
|
|
|
|
primaryColor: dynamicPrimaryColor ?? _primaryColor,
|
|
|
|
stopType: _stopType,
|
|
|
|
themeType: _themeType,
|
2023-08-14 10:25:37 +00:00
|
|
|
child: _MeteringScreenLayoutModel(
|
2023-10-20 14:12:43 +00:00
|
|
|
data: _meteringScreenLayout,
|
2023-08-14 10:25:37 +00:00
|
|
|
child: widget.child,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void enableDynamicColor(bool enable) {
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
_dynamicColor = enable;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.dynamicColor = enable;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void toggleEvSourceType() {
|
2023-10-20 14:12:43 +00:00
|
|
|
if (!widget.hasLightSensor) {
|
2023-08-14 10:25:37 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
switch (_evSourceType) {
|
2023-08-14 10:25:37 +00:00
|
|
|
case EvSourceType.camera:
|
2023-10-20 14:12:43 +00:00
|
|
|
_evSourceType = EvSourceType.sensor;
|
2023-08-14 10:25:37 +00:00
|
|
|
case EvSourceType.sensor:
|
2023-10-20 14:12:43 +00:00
|
|
|
_evSourceType = EvSourceType.camera;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.evSourceType = _evSourceType;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setLocale(SupportedLocale locale) {
|
|
|
|
S.load(Locale(locale.intlName)).then((value) {
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
_locale = locale;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.locale = locale;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void setMeteringScreenLayout(MeteringScreenLayoutConfig config) {
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
_meteringScreenLayout = config;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.meteringScreenLayout = _meteringScreenLayout;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setPrimaryColor(Color primaryColor) {
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
_primaryColor = primaryColor;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.primaryColor = primaryColor;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setStopType(StopType stopType) {
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
_stopType = stopType;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.stopType = stopType;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setThemeType(ThemeType themeType) {
|
|
|
|
setState(() {
|
2023-10-20 14:12:43 +00:00
|
|
|
_themeType = themeType;
|
2023-08-14 10:25:37 +00:00
|
|
|
});
|
2023-10-20 14:12:43 +00:00
|
|
|
widget.userPreferencesService.themeType = themeType;
|
2023-08-14 10:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Brightness get _themeBrightness {
|
2023-10-20 14:12:43 +00:00
|
|
|
switch (_themeType) {
|
2023-08-14 10:25:37 +00:00
|
|
|
case ThemeType.light:
|
|
|
|
return Brightness.light;
|
|
|
|
case ThemeType.dark:
|
|
|
|
return Brightness.dark;
|
|
|
|
case ThemeType.systemDefault:
|
|
|
|
return SchedulerBinding.instance.platformDispatcher.platformBrightness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum _Aspect {
|
|
|
|
dynamicColorState,
|
|
|
|
evSourceType,
|
|
|
|
locale,
|
|
|
|
stopType,
|
|
|
|
theme,
|
|
|
|
themeType,
|
|
|
|
}
|
|
|
|
|
|
|
|
class _UserPreferencesModel extends InheritedModel<_Aspect> {
|
|
|
|
final DynamicColorState dynamicColorState;
|
|
|
|
final EvSourceType evSourceType;
|
|
|
|
final SupportedLocale locale;
|
|
|
|
final StopType stopType;
|
|
|
|
final ThemeType themeType;
|
|
|
|
|
|
|
|
final Brightness _brightness;
|
|
|
|
final Color _primaryColor;
|
|
|
|
|
|
|
|
const _UserPreferencesModel({
|
|
|
|
required Brightness brightness,
|
|
|
|
required this.dynamicColorState,
|
|
|
|
required this.evSourceType,
|
|
|
|
required this.locale,
|
|
|
|
required Color primaryColor,
|
|
|
|
required this.stopType,
|
|
|
|
required this.themeType,
|
|
|
|
required super.child,
|
|
|
|
}) : _brightness = brightness,
|
|
|
|
_primaryColor = primaryColor;
|
|
|
|
|
|
|
|
ThemeData get theme => themeFrom(_primaryColor, _brightness);
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool updateShouldNotify(_UserPreferencesModel oldWidget) {
|
|
|
|
return _brightness != oldWidget._brightness ||
|
|
|
|
dynamicColorState != oldWidget.dynamicColorState ||
|
|
|
|
evSourceType != oldWidget.evSourceType ||
|
|
|
|
locale != oldWidget.locale ||
|
|
|
|
_primaryColor != oldWidget._primaryColor ||
|
|
|
|
stopType != oldWidget.stopType ||
|
|
|
|
themeType != oldWidget.themeType;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool updateShouldNotifyDependent(
|
|
|
|
_UserPreferencesModel oldWidget,
|
|
|
|
Set<_Aspect> dependencies,
|
|
|
|
) {
|
2023-10-20 14:12:43 +00:00
|
|
|
return (dependencies.contains(_Aspect.dynamicColorState) && dynamicColorState != oldWidget.dynamicColorState) ||
|
2023-08-14 10:25:37 +00:00
|
|
|
(dependencies.contains(_Aspect.evSourceType) && evSourceType != oldWidget.evSourceType) ||
|
|
|
|
(dependencies.contains(_Aspect.locale) && locale != oldWidget.locale) ||
|
|
|
|
(dependencies.contains(_Aspect.stopType) && stopType != oldWidget.stopType) ||
|
|
|
|
(dependencies.contains(_Aspect.theme) &&
|
|
|
|
(_brightness != oldWidget._brightness || _primaryColor != oldWidget._primaryColor)) ||
|
|
|
|
(dependencies.contains(_Aspect.themeType) && themeType != oldWidget.themeType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MeteringScreenLayoutModel extends InheritedModel<MeteringScreenLayoutFeature> {
|
|
|
|
final Map<MeteringScreenLayoutFeature, bool> data;
|
|
|
|
|
|
|
|
const _MeteringScreenLayoutModel({
|
|
|
|
required this.data,
|
|
|
|
required super.child,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool updateShouldNotify(_MeteringScreenLayoutModel oldWidget) => oldWidget.data != data;
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool updateShouldNotifyDependent(
|
|
|
|
_MeteringScreenLayoutModel oldWidget,
|
|
|
|
Set<MeteringScreenLayoutFeature> dependencies,
|
|
|
|
) {
|
|
|
|
for (final dependecy in dependencies) {
|
|
|
|
if (oldWidget.data[dependecy] != data[dependecy]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|