mirror of
https://github.com/immich-app/immich.git
synced 2024-12-21 01:39:59 +02:00
bffc2cdf60
* refactor: move all extensions to separate package * refactor(mobile): add BuildContext extension * refactor(mobile): use theme getters from context * refactor(mobile): use media query size from context * refactor(mobile): use auto router methods from context * refactor(mobile): use navigator methods from context --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
115 lines
4.3 KiB
Dart
115 lines
4.3 KiB
Dart
import 'dart:io';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart' show useEffect, useState;
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/settings/providers/app_settings.provider.dart';
|
|
import 'package:immich_mobile/modules/settings/services/app_settings.service.dart';
|
|
import 'package:immich_mobile/modules/settings/ui/settings_switch_list_tile.dart';
|
|
import 'package:immich_mobile/shared/services/immich_logger.service.dart';
|
|
import 'package:immich_mobile/utils/http_ssl_cert_override.dart';
|
|
import 'package:logging/logging.dart';
|
|
|
|
class AdvancedSettings extends HookConsumerWidget {
|
|
const AdvancedSettings({super.key});
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
bool isLoggedIn = Store.tryGet(StoreKey.currentUser) != null;
|
|
final appSettingService = ref.watch(appSettingsServiceProvider);
|
|
final isEnabled =
|
|
useState(AppSettingsEnum.advancedTroubleshooting.defaultValue);
|
|
final levelId = useState(AppSettingsEnum.logLevel.defaultValue);
|
|
final preferRemote =
|
|
useState(AppSettingsEnum.preferRemoteImage.defaultValue);
|
|
final allowSelfSignedSSLCert =
|
|
useState(AppSettingsEnum.allowSelfSignedSSLCert.defaultValue);
|
|
|
|
useEffect(
|
|
() {
|
|
isEnabled.value = appSettingService.getSetting<bool>(
|
|
AppSettingsEnum.advancedTroubleshooting,
|
|
);
|
|
levelId.value = appSettingService.getSetting(AppSettingsEnum.logLevel);
|
|
preferRemote.value =
|
|
appSettingService.getSetting(AppSettingsEnum.preferRemoteImage);
|
|
allowSelfSignedSSLCert.value = appSettingService
|
|
.getSetting(AppSettingsEnum.allowSelfSignedSSLCert);
|
|
return null;
|
|
},
|
|
[],
|
|
);
|
|
|
|
final logLevel = Level.LEVELS[levelId.value].name;
|
|
|
|
return ExpansionTile(
|
|
textColor: context.primaryColor,
|
|
title: const Text(
|
|
"advanced_settings_tile_title",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
).tr(),
|
|
subtitle: const Text(
|
|
"advanced_settings_tile_subtitle",
|
|
style: TextStyle(
|
|
fontSize: 13,
|
|
),
|
|
).tr(),
|
|
children: [
|
|
SettingsSwitchListTile(
|
|
enabled: true,
|
|
appSettingService: appSettingService,
|
|
valueNotifier: isEnabled,
|
|
settingsEnum: AppSettingsEnum.advancedTroubleshooting,
|
|
title: "advanced_settings_troubleshooting_title".tr(),
|
|
subtitle: "advanced_settings_troubleshooting_subtitle".tr(),
|
|
),
|
|
ListTile(
|
|
dense: true,
|
|
title: Text(
|
|
// Not translated because the levels are only English
|
|
"Log level: $logLevel",
|
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
|
),
|
|
subtitle: Slider(
|
|
value: levelId.value.toDouble(),
|
|
onChanged: (double v) => levelId.value = v.toInt(),
|
|
onChangeEnd: (double v) {
|
|
appSettingService.setSetting(
|
|
AppSettingsEnum.logLevel,
|
|
v.toInt(),
|
|
);
|
|
ImmichLogger().level = Level.LEVELS[v.toInt()];
|
|
},
|
|
max: 8,
|
|
min: 1.0,
|
|
divisions: 7,
|
|
label: logLevel,
|
|
activeColor: context.primaryColor,
|
|
),
|
|
),
|
|
SettingsSwitchListTile(
|
|
appSettingService: appSettingService,
|
|
valueNotifier: preferRemote,
|
|
settingsEnum: AppSettingsEnum.preferRemoteImage,
|
|
title: "advanced_settings_prefer_remote_title".tr(),
|
|
subtitle: "advanced_settings_prefer_remote_subtitle".tr(),
|
|
),
|
|
SettingsSwitchListTile(
|
|
enabled: !isLoggedIn,
|
|
appSettingService: appSettingService,
|
|
valueNotifier: allowSelfSignedSSLCert,
|
|
settingsEnum: AppSettingsEnum.allowSelfSignedSSLCert,
|
|
title: "advanced_settings_self_signed_ssl_title".tr(),
|
|
subtitle: "advanced_settings_self_signed_ssl_subtitle".tr(),
|
|
onChanged: (value) {
|
|
HttpOverrides.global = HttpSSLCertOverride();
|
|
},
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|