2022-05-13 13:57:56 +00:00
|
|
|
import 'package:cubit_form/cubit_form.dart';
|
2022-05-10 20:42:33 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2022-05-17 13:29:04 +00:00
|
|
|
import 'package:selfprivacy/logic/cubit/server_installation/server_installation_cubit.dart';
|
2022-05-13 13:57:56 +00:00
|
|
|
import 'package:selfprivacy/logic/cubit/forms/factories/field_cubit_factory.dart';
|
|
|
|
import 'package:selfprivacy/logic/cubit/forms/setup/recovering/recovery_domain_form_cubit.dart';
|
2022-05-16 22:41:00 +00:00
|
|
|
import 'package:selfprivacy/ui/components/brand_button/FilledButton.dart';
|
2022-05-11 18:37:08 +00:00
|
|
|
import 'package:selfprivacy/ui/components/brand_hero_screen/brand_hero_screen.dart';
|
2022-05-10 20:42:33 +00:00
|
|
|
|
2022-05-13 13:57:56 +00:00
|
|
|
class RecoveryDomain extends StatelessWidget {
|
2022-05-10 20:42:33 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-05-17 20:08:28 +00:00
|
|
|
var serverInstallation = context.watch<ServerInstallationCubit>();
|
2022-05-11 18:37:08 +00:00
|
|
|
|
2022-05-13 13:57:56 +00:00
|
|
|
return BlocProvider(
|
2022-05-17 20:08:28 +00:00
|
|
|
create: (context) => RecoveryDomainFormCubit(
|
|
|
|
serverInstallation, FieldCubitFactory(context)),
|
2022-05-17 12:33:30 +00:00
|
|
|
child: Builder(
|
|
|
|
builder: (context) {
|
|
|
|
var formCubitState = context.watch<RecoveryDomainFormCubit>().state;
|
2022-05-13 13:57:56 +00:00
|
|
|
|
2022-05-17 12:33:30 +00:00
|
|
|
return BrandHeroScreen(
|
|
|
|
heroTitle: "recovering.recovery_main_header".tr(),
|
|
|
|
heroSubtitle: "recovering.domain_recovery_description".tr(),
|
|
|
|
hasBackButton: true,
|
|
|
|
hasFlashButton: false,
|
|
|
|
children: [
|
|
|
|
CubitFormTextField(
|
|
|
|
formFieldCubit:
|
|
|
|
context.read<RecoveryDomainFormCubit>().serverDomainField,
|
|
|
|
decoration: InputDecoration(
|
|
|
|
border: OutlineInputBorder(),
|
|
|
|
labelText: "recovering.domain_recover_placeholder".tr(),
|
|
|
|
),
|
2022-05-11 18:37:08 +00:00
|
|
|
),
|
2022-05-17 12:33:30 +00:00
|
|
|
SizedBox(height: 16),
|
|
|
|
FilledButton(
|
|
|
|
title: "more.continue".tr(),
|
|
|
|
onPressed: formCubitState.isSubmitting
|
|
|
|
? null
|
|
|
|
: () => context.read<RecoveryDomainFormCubit>().trySubmit(),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2022-05-11 18:37:08 +00:00
|
|
|
);
|
|
|
|
}
|
2022-05-13 13:57:56 +00:00
|
|
|
}
|