selfprivacy.org.app/lib/ui/pages/server_details/server_settings.dart

136 lines
3.7 KiB
Dart
Raw Normal View History

part of 'server_details_screen.dart';
2021-03-26 15:38:39 +02:00
class _ServerSettings extends StatefulWidget {
const _ServerSettings();
2021-03-26 15:38:39 +02:00
@override
State<_ServerSettings> createState() => _ServerSettingsState();
}
class _ServerSettingsState extends State<_ServerSettings> {
bool? allowAutoUpgrade;
bool? rebootAfterUpgrade;
2021-03-26 15:38:39 +02:00
@override
Widget build(final BuildContext context) {
final serverDetailsState = context.watch<ServerDetailsCubit>().state;
2022-02-08 23:01:08 +02:00
if (serverDetailsState is ServerDetailsNotReady) {
2022-09-12 20:38:22 +03:00
return Text('basis.loading'.tr());
2022-02-08 23:01:08 +02:00
} else if (serverDetailsState is! Loaded) {
return BrandLoader.horizontal();
}
if (allowAutoUpgrade == null || rebootAfterUpgrade == null) {
allowAutoUpgrade = serverDetailsState.autoUpgradeSettings.enable;
rebootAfterUpgrade = serverDetailsState.autoUpgradeSettings.allowReboot;
}
return Column(
2021-03-26 15:38:39 +02:00
children: [
SwitcherBlock(
onChange: (final switched) {
context
.read<ServerDetailsCubit>()
.repository
.setAutoUpgradeSettings(
AutoUpgradeSettings(
enable: switched,
allowReboot: rebootAfterUpgrade ?? false,
),
);
setState(() {
allowAutoUpgrade = switched;
});
},
isActive: allowAutoUpgrade ?? false,
2022-09-12 20:38:22 +03:00
child: _TextColumn(
title: 'providers.server.settings.allow_autoupgrade'.tr(),
value: 'providers.server.settings.allow_autoupgrade_hint'.tr(),
2021-03-26 15:38:39 +02:00
),
),
const Divider(height: 0),
2021-03-26 15:38:39 +02:00
SwitcherBlock(
onChange: (final switched) {
context
.read<ServerDetailsCubit>()
.repository
.setAutoUpgradeSettings(
AutoUpgradeSettings(
enable: allowAutoUpgrade ?? false,
allowReboot: switched,
),
);
setState(
() {
rebootAfterUpgrade = switched;
},
);
},
isActive: rebootAfterUpgrade ?? false,
2022-09-12 20:38:22 +03:00
child: _TextColumn(
title: 'providers.server.settings.reboot_after_upgrade'.tr(),
value: 'providers.server.settings.reboot_after_upgrade_hint'.tr(),
2021-03-26 15:38:39 +02:00
),
),
const Divider(height: 0),
2021-03-26 15:38:39 +02:00
_Button(
2022-01-25 19:00:47 +02:00
onTap: () {
Navigator.of(context).push(
materialRoute(
const SelectTimezone(),
),
);
2022-01-25 19:00:47 +02:00
},
2021-03-26 15:38:39 +02:00
child: _TextColumn(
2022-09-12 20:38:22 +03:00
title: 'providers.server.settings.server_timezone'.tr(),
value: serverDetailsState.serverTimezone.toString(),
2021-03-26 15:38:39 +02:00
),
),
],
);
}
}
class _Button extends StatelessWidget {
const _Button({
required this.onTap,
required this.child,
});
2021-03-26 15:38:39 +02:00
final Widget child;
final VoidCallback onTap;
@override
Widget build(final BuildContext context) => InkWell(
onTap: onTap,
child: Container(
padding: const EdgeInsets.symmetric(vertical: 16),
child: child,
),
);
2021-03-26 15:38:39 +02:00
}
class _TextColumn extends StatelessWidget {
const _TextColumn({
required this.title,
required this.value,
});
2021-03-26 15:38:39 +02:00
final String title;
final String value;
@override
Widget build(final BuildContext context) => Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
BrandText.body1(
title,
2022-09-12 20:38:22 +03:00
style: Theme.of(context).textTheme.bodyLarge,
2021-03-26 15:38:39 +02:00
),
const SizedBox(height: 5),
BrandText.body1(
value,
2022-09-12 20:38:22 +03:00
style: Theme.of(context).textTheme.bodyMedium,
),
],
);
2021-03-26 15:38:39 +02:00
}