mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-02 23:17:17 +00:00
138 lines
5.2 KiB
Dart
138 lines
5.2 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:selfprivacy/logic/cubit/server_installation/server_installation_cubit.dart';
|
|
import 'package:selfprivacy/ui/components/buttons/brand_button.dart';
|
|
import 'package:selfprivacy/ui/components/cards/outlined_card.dart';
|
|
import 'package:selfprivacy/ui/layouts/brand_hero_screen.dart';
|
|
import 'package:selfprivacy/ui/pages/setup/recovering/recover_by_old_token.dart';
|
|
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
|
|
|
class RecoveryMethodSelect extends StatelessWidget {
|
|
const RecoveryMethodSelect({super.key});
|
|
|
|
@override
|
|
Widget build(final BuildContext context) => BrandHeroScreen(
|
|
heroTitle: 'recovering.recovery_main_header'.tr(),
|
|
heroSubtitle: 'recovering.method_select_description'.tr(),
|
|
hasBackButton: true,
|
|
hasFlashButton: false,
|
|
ignoreBreakpoints: true,
|
|
onBackButtonPressed:
|
|
context.read<ServerInstallationCubit>().revertRecoveryStep,
|
|
children: [
|
|
OutlinedCard(
|
|
child: ListTile(
|
|
title: Text(
|
|
'recovering.method_select_other_device'.tr(),
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
leading: const Icon(Icons.offline_share_outlined),
|
|
onTap: () => context
|
|
.read<ServerInstallationCubit>()
|
|
.selectRecoveryMethod(ServerRecoveryMethods.newDeviceKey),
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
OutlinedCard(
|
|
child: ListTile(
|
|
title: Text(
|
|
'recovering.method_select_recovery_key'.tr(),
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
leading: const Icon(Icons.password_outlined),
|
|
onTap: () => context
|
|
.read<ServerInstallationCubit>()
|
|
.selectRecoveryMethod(ServerRecoveryMethods.recoveryKey),
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
BrandButton.text(
|
|
title: 'recovering.method_select_nothing'.tr(),
|
|
onPressed: () => Navigator.of(context)
|
|
.push(materialRoute(const RecoveryFallbackMethodSelect())),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
|
|
class RecoveryFallbackMethodSelect extends StatelessWidget {
|
|
const RecoveryFallbackMethodSelect({super.key});
|
|
|
|
@override
|
|
Widget build(final BuildContext context) =>
|
|
BlocListener<ServerInstallationCubit, ServerInstallationState>(
|
|
listener: (final context, final state) {
|
|
if (state is ServerInstallationRecovery &&
|
|
state.recoveryCapabilities ==
|
|
ServerRecoveryCapabilities.loginTokens &&
|
|
state.currentStep != RecoveryStep.selecting) {
|
|
Navigator.of(context).pop();
|
|
}
|
|
},
|
|
child: BrandHeroScreen(
|
|
heroTitle: 'recovering.recovery_main_header'.tr(),
|
|
heroSubtitle: 'recovering.fallback_select_description'.tr(),
|
|
hasBackButton: true,
|
|
hasFlashButton: false,
|
|
ignoreBreakpoints: true,
|
|
children: [
|
|
OutlinedCard(
|
|
child: ListTile(
|
|
title: Text(
|
|
'recovering.fallback_select_token_copy'.tr(),
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
leading: const Icon(Icons.vpn_key),
|
|
onTap: () => Navigator.of(context).push(
|
|
materialRoute(
|
|
const RecoverByOldTokenInstruction(
|
|
instructionFilename: 'how_fallback_old',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
OutlinedCard(
|
|
child: ListTile(
|
|
title: Text(
|
|
'recovering.fallback_select_root_ssh'.tr(),
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
leading: const Icon(Icons.terminal),
|
|
onTap: () => Navigator.of(context).push(
|
|
materialRoute(
|
|
const RecoverByOldTokenInstruction(
|
|
instructionFilename: 'how_fallback_ssh',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
OutlinedCard(
|
|
child: ListTile(
|
|
title: Text(
|
|
'recovering.fallback_select_provider_console'.tr(),
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
subtitle: Text(
|
|
'recovering.fallback_select_provider_console_hint'.tr(),
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
|
),
|
|
leading: const Icon(Icons.web),
|
|
onTap: () => Navigator.of(context).push(
|
|
materialRoute(
|
|
const RecoverByOldTokenInstruction(
|
|
instructionFilename: 'how_fallback_terminal',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|