mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-10-31 22:17:29 +00:00
16094a3257
Also implemented tracking of the jobs and rebuild status
112 lines
3.5 KiB
Dart
112 lines
3.5 KiB
Dart
part of 'server_details_screen.dart';
|
|
|
|
class _ServerSettings extends StatefulWidget {
|
|
const _ServerSettings();
|
|
|
|
@override
|
|
State<_ServerSettings> createState() => _ServerSettingsState();
|
|
}
|
|
|
|
class _ServerSettingsState extends State<_ServerSettings> {
|
|
bool? allowAutoUpgrade;
|
|
bool? rebootAfterUpgrade;
|
|
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
final serverDetailsState = context.watch<ServerDetailsCubit>().state;
|
|
if (serverDetailsState is ServerDetailsNotReady) {
|
|
return Text('basis.loading'.tr());
|
|
} else if (serverDetailsState is! Loaded) {
|
|
return BrandLoader.horizontal();
|
|
}
|
|
if (allowAutoUpgrade == null || rebootAfterUpgrade == null) {
|
|
allowAutoUpgrade = serverDetailsState.autoUpgradeSettings.enable;
|
|
rebootAfterUpgrade = serverDetailsState.autoUpgradeSettings.allowReboot;
|
|
}
|
|
|
|
return Column(
|
|
children: [
|
|
SwitchListTile(
|
|
value: allowAutoUpgrade ?? false,
|
|
onChanged: (final switched) {
|
|
context.read<JobsCubit>().addJob(
|
|
ChangeAutoUpgradeSettingsJob(
|
|
allowReboot: rebootAfterUpgrade ?? false,
|
|
enable: switched,
|
|
),
|
|
);
|
|
setState(() {
|
|
allowAutoUpgrade = switched;
|
|
});
|
|
},
|
|
title: Text(
|
|
'server.allow_autoupgrade'.tr(),
|
|
style: TextStyle(
|
|
fontStyle: allowAutoUpgrade !=
|
|
serverDetailsState.autoUpgradeSettings.enable
|
|
? FontStyle.italic
|
|
: FontStyle.normal,
|
|
),
|
|
),
|
|
subtitle: Text(
|
|
'server.allow_autoupgrade_hint'.tr(),
|
|
style: TextStyle(
|
|
fontStyle: allowAutoUpgrade !=
|
|
serverDetailsState.autoUpgradeSettings.enable
|
|
? FontStyle.italic
|
|
: FontStyle.normal,
|
|
),
|
|
),
|
|
activeColor: Theme.of(context).colorScheme.primary,
|
|
),
|
|
SwitchListTile(
|
|
value: rebootAfterUpgrade ?? false,
|
|
onChanged: (final switched) {
|
|
context.read<JobsCubit>().addJob(
|
|
ChangeAutoUpgradeSettingsJob(
|
|
allowReboot: switched,
|
|
enable: allowAutoUpgrade ?? false,
|
|
),
|
|
);
|
|
setState(() {
|
|
rebootAfterUpgrade = switched;
|
|
});
|
|
},
|
|
title: Text(
|
|
'server.reboot_after_upgrade'.tr(),
|
|
style: TextStyle(
|
|
fontStyle: rebootAfterUpgrade !=
|
|
serverDetailsState.autoUpgradeSettings.allowReboot
|
|
? FontStyle.italic
|
|
: FontStyle.normal,
|
|
),
|
|
),
|
|
subtitle: Text(
|
|
'server.reboot_after_upgrade_hint'.tr(),
|
|
style: TextStyle(
|
|
fontStyle: rebootAfterUpgrade !=
|
|
serverDetailsState.autoUpgradeSettings.allowReboot
|
|
? FontStyle.italic
|
|
: FontStyle.normal,
|
|
),
|
|
),
|
|
activeColor: Theme.of(context).colorScheme.primary,
|
|
),
|
|
ListTile(
|
|
title: Text('server.server_timezone'.tr()),
|
|
subtitle: Text(
|
|
serverDetailsState.serverTimezone.toString(),
|
|
),
|
|
onTap: () {
|
|
Navigator.of(context).push(
|
|
materialRoute(
|
|
const SelectTimezone(),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|