2023-02-23 14:49:14 +00:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2022-03-03 17:38:30 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2020-12-02 09:16:23 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2021-09-02 19:32:07 +00:00
|
|
|
import 'package:ionicons/ionicons.dart';
|
2020-12-02 09:16:23 +00:00
|
|
|
import 'package:selfprivacy/config/brand_theme.dart';
|
2022-05-18 09:07:14 +00:00
|
|
|
import 'package:selfprivacy/logic/cubit/server_installation/server_installation_cubit.dart';
|
2022-09-14 16:46:38 +00:00
|
|
|
import 'package:selfprivacy/logic/cubit/server_volumes/server_volume_cubit.dart';
|
|
|
|
import 'package:selfprivacy/logic/cubit/services/services_cubit.dart';
|
2023-04-05 10:33:53 +00:00
|
|
|
import 'package:selfprivacy/ui/components/cards/filled_card.dart';
|
2020-12-02 09:16:23 +00:00
|
|
|
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
|
|
|
import 'package:selfprivacy/ui/components/brand_icons/brand_icons.dart';
|
2023-02-23 14:49:14 +00:00
|
|
|
import 'package:selfprivacy/utils/breakpoints.dart';
|
|
|
|
import 'package:selfprivacy/ui/router/router.dart';
|
2020-12-06 07:46:12 +00:00
|
|
|
|
2023-03-22 11:38:18 +00:00
|
|
|
@RoutePage()
|
2020-12-02 09:16:23 +00:00
|
|
|
class MorePage extends StatelessWidget {
|
2022-10-26 16:26:09 +00:00
|
|
|
const MorePage({super.key});
|
2020-12-02 09:16:23 +00:00
|
|
|
|
|
|
|
@override
|
2022-06-05 19:36:32 +00:00
|
|
|
Widget build(final BuildContext context) {
|
|
|
|
final bool isReady = context.watch<ServerInstallationCubit>().state
|
2022-05-30 23:06:08 +00:00
|
|
|
is ServerInstallationFinished;
|
|
|
|
|
2022-09-14 16:46:38 +00:00
|
|
|
final bool? usesBinds =
|
|
|
|
context.watch<ApiServerVolumeCubit>().state.usesBinds;
|
|
|
|
|
2020-12-03 16:52:53 +00:00
|
|
|
return Scaffold(
|
2023-02-23 14:49:14 +00:00
|
|
|
appBar: Breakpoints.small.isActive(context)
|
|
|
|
? PreferredSize(
|
|
|
|
preferredSize: const Size.fromHeight(52),
|
|
|
|
child: BrandHeader(
|
|
|
|
title: 'basis.more'.tr(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: null,
|
2020-12-03 16:52:53 +00:00
|
|
|
body: ListView(
|
|
|
|
children: [
|
|
|
|
Padding(
|
2021-05-25 21:53:54 +00:00
|
|
|
padding: paddingH15V0,
|
2020-12-03 16:52:53 +00:00
|
|
|
child: Column(
|
|
|
|
children: [
|
2022-09-14 16:46:38 +00:00
|
|
|
if (isReady && usesBinds != null && !usesBinds)
|
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'storage.start_migration_button'.tr(),
|
2022-09-14 16:46:38 +00:00
|
|
|
iconData: Icons.drive_file_move_outline,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => ServicesMigrationRoute(
|
2023-11-30 08:33:54 +00:00
|
|
|
diskStatus:
|
|
|
|
context.read<ApiServerVolumeCubit>().state.diskStatus,
|
2022-09-14 16:46:38 +00:00
|
|
|
services: context
|
|
|
|
.read<ServicesCubit>()
|
|
|
|
.state
|
|
|
|
.services
|
|
|
|
.where(
|
|
|
|
(final service) =>
|
|
|
|
service.id == 'bitwarden' ||
|
|
|
|
service.id == 'gitea' ||
|
|
|
|
service.id == 'pleroma' ||
|
|
|
|
service.id == 'mailserver' ||
|
|
|
|
service.id == 'nextcloud',
|
|
|
|
)
|
|
|
|
.toList(),
|
2022-09-19 00:21:08 +00:00
|
|
|
isMigration: true,
|
2022-09-14 16:46:38 +00:00
|
|
|
),
|
2022-10-03 23:32:35 +00:00
|
|
|
subtitle: 'storage.data_migration_notice'.tr(),
|
2022-09-14 16:46:38 +00:00
|
|
|
accent: true,
|
|
|
|
),
|
2022-05-30 23:06:08 +00:00
|
|
|
if (!isReady)
|
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'more_page.configuration_wizard'.tr(),
|
2022-05-30 23:06:08 +00:00
|
|
|
iconData: Icons.change_history_outlined,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const InitializingRoute(),
|
2022-05-30 23:06:08 +00:00
|
|
|
subtitle: 'not_ready_card.in_menu'.tr(),
|
|
|
|
accent: true,
|
|
|
|
),
|
|
|
|
if (isReady)
|
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'more_page.create_ssh_key'.tr(),
|
2022-06-05 22:40:34 +00:00
|
|
|
iconData: Ionicons.key_outline,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => UserDetailsRoute(
|
2022-09-08 15:13:18 +00:00
|
|
|
login: 'root',
|
2022-06-05 22:40:34 +00:00
|
|
|
),
|
|
|
|
),
|
2022-05-30 23:06:08 +00:00
|
|
|
if (isReady)
|
|
|
|
_MoreMenuItem(
|
|
|
|
iconData: Icons.password_outlined,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const RecoveryKeyRoute(),
|
2022-05-30 23:06:08 +00:00
|
|
|
title: 'recovery_key.key_main_header'.tr(),
|
|
|
|
),
|
2022-05-31 14:30:44 +00:00
|
|
|
if (isReady)
|
|
|
|
_MoreMenuItem(
|
|
|
|
iconData: Icons.devices_outlined,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const DevicesRoute(),
|
2022-05-31 14:30:44 +00:00
|
|
|
title: 'devices.main_screen.header'.tr(),
|
|
|
|
),
|
2022-05-30 23:06:08 +00:00
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'more_page.application_settings'.tr(),
|
2022-05-30 23:06:08 +00:00
|
|
|
iconData: Icons.settings_outlined,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const AppSettingsRoute(),
|
2020-12-03 16:52:53 +00:00
|
|
|
),
|
2022-05-30 23:06:08 +00:00
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'more_page.about_application'.tr(),
|
2021-03-18 07:26:54 +00:00
|
|
|
iconData: BrandIcons.fire,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const AboutApplicationRoute(),
|
|
|
|
longGoTo: const DeveloperSettingsRoute(),
|
2020-12-03 16:52:53 +00:00
|
|
|
),
|
2022-05-30 23:06:08 +00:00
|
|
|
if (!isReady)
|
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'more_page.onboarding'.tr(),
|
2022-05-30 23:06:08 +00:00
|
|
|
iconData: BrandIcons.start,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const OnboardingRoute(),
|
2022-05-30 23:06:08 +00:00
|
|
|
),
|
|
|
|
_MoreMenuItem(
|
2022-10-03 23:32:35 +00:00
|
|
|
title: 'more_page.console'.tr(),
|
2021-03-18 07:26:54 +00:00
|
|
|
iconData: BrandIcons.terminal,
|
2023-02-23 14:49:14 +00:00
|
|
|
goTo: () => const ConsoleRoute(),
|
2021-01-14 21:48:05 +00:00
|
|
|
),
|
2020-12-03 16:52:53 +00:00
|
|
|
],
|
|
|
|
),
|
2023-11-06 13:15:38 +00:00
|
|
|
),
|
2020-12-03 16:52:53 +00:00
|
|
|
],
|
|
|
|
),
|
2020-12-02 09:16:23 +00:00
|
|
|
);
|
|
|
|
}
|
2021-09-02 19:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class _MoreMenuItem extends StatelessWidget {
|
|
|
|
const _MoreMenuItem({
|
|
|
|
required this.iconData,
|
|
|
|
required this.title,
|
2023-02-23 14:49:14 +00:00
|
|
|
required this.goTo,
|
2022-05-30 23:06:08 +00:00
|
|
|
this.subtitle,
|
2023-02-23 14:49:14 +00:00
|
|
|
this.longGoTo,
|
2022-05-30 23:06:08 +00:00
|
|
|
this.accent = false,
|
2022-06-05 19:36:32 +00:00
|
|
|
});
|
2021-09-02 19:32:07 +00:00
|
|
|
|
|
|
|
final IconData iconData;
|
|
|
|
final String title;
|
2023-02-23 14:49:14 +00:00
|
|
|
final PageRouteInfo Function() goTo;
|
|
|
|
final PageRouteInfo? longGoTo;
|
2022-05-30 23:06:08 +00:00
|
|
|
final String? subtitle;
|
|
|
|
final bool accent;
|
2021-09-02 19:32:07 +00:00
|
|
|
|
|
|
|
@override
|
2022-06-05 19:36:32 +00:00
|
|
|
Widget build(final BuildContext context) {
|
|
|
|
final Color color = accent
|
2022-05-30 23:06:08 +00:00
|
|
|
? Theme.of(context).colorScheme.onTertiaryContainer
|
|
|
|
: Theme.of(context).colorScheme.onSurface;
|
2022-09-15 16:57:26 +00:00
|
|
|
return FilledCard(
|
2022-05-30 23:06:08 +00:00
|
|
|
tertiary: accent,
|
|
|
|
child: ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
2023-02-23 14:49:14 +00:00
|
|
|
onTap: () => context.pushRoute(goTo()),
|
|
|
|
onLongPress:
|
|
|
|
longGoTo != null ? () => context.pushRoute(longGoTo!) : null,
|
2022-05-30 23:06:08 +00:00
|
|
|
leading: Icon(
|
|
|
|
iconData,
|
|
|
|
size: 24,
|
|
|
|
color: color,
|
2020-12-02 09:16:23 +00:00
|
|
|
),
|
2022-05-30 23:06:08 +00:00
|
|
|
title: Text(
|
|
|
|
title,
|
|
|
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
|
|
|
color: color,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
subtitle: subtitle != null
|
|
|
|
? Text(
|
|
|
|
subtitle!,
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
|
|
color: color,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: null,
|
2020-12-02 09:16:23 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|