2020-12-30 14:13:25 +00:00
|
|
|
|
import 'package:cubit_form/cubit_form.dart';
|
2020-12-10 20:33:19 +00:00
|
|
|
|
import 'package:flutter/material.dart';
|
2020-12-30 14:13:25 +00:00
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2021-01-27 18:33:00 +00:00
|
|
|
|
import 'package:selfprivacy/config/brand_colors.dart';
|
2020-12-10 20:33:19 +00:00
|
|
|
|
import 'package:selfprivacy/config/brand_theme.dart';
|
|
|
|
|
import 'package:selfprivacy/config/text_themes.dart';
|
2021-02-03 19:51:07 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/forms/initializing/backblaze_form_cubit.dart';
|
2021-01-06 17:35:57 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/forms/initializing/cloudflare_form_cubit.dart';
|
2021-02-15 18:58:29 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/forms/initializing/domain_cloudflare.dart';
|
2020-12-30 14:13:25 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/forms/initializing/hetzner_form_cubit.dart';
|
2021-01-14 18:45:10 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/forms/initializing/root_user_form_cubit.dart';
|
2021-01-06 17:35:57 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/app_config/app_config_cubit.dart';
|
2020-12-10 20:33:19 +00:00
|
|
|
|
import 'package:selfprivacy/logic/cubit/providers/providers_cubit.dart';
|
|
|
|
|
import 'package:selfprivacy/ui/components/brand_button/brand_button.dart';
|
|
|
|
|
import 'package:selfprivacy/ui/components/brand_card/brand_card.dart';
|
|
|
|
|
import 'package:selfprivacy/ui/components/brand_modal_sheet/brand_modal_sheet.dart';
|
|
|
|
|
import 'package:selfprivacy/ui/components/brand_span_button/brand_span_button.dart';
|
|
|
|
|
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
|
2021-02-16 18:48:15 +00:00
|
|
|
|
import 'package:selfprivacy/ui/components/brand_timer/brand_timer.dart';
|
2020-12-30 14:13:25 +00:00
|
|
|
|
import 'package:selfprivacy/ui/components/progress_bar/progress_bar.dart';
|
|
|
|
|
import 'package:selfprivacy/ui/pages/rootRoute.dart';
|
|
|
|
|
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
2020-12-10 20:33:19 +00:00
|
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
|
class InitializingPage extends StatelessWidget {
|
2020-12-10 20:33:19 +00:00
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2021-01-06 17:35:57 +00:00
|
|
|
|
var cubit = context.watch<AppConfigCubit>();
|
|
|
|
|
var actualPage = [
|
2021-02-16 18:48:15 +00:00
|
|
|
|
() => _stepHetzner(cubit),
|
|
|
|
|
() => _stepCloudflare(cubit),
|
|
|
|
|
() => _stepBackblaze(cubit),
|
|
|
|
|
() => _stepDomain(cubit),
|
|
|
|
|
() => _stepUser(cubit),
|
|
|
|
|
() => _stepServer(cubit),
|
|
|
|
|
() => _stepCheck(cubit),
|
|
|
|
|
() => _stepCheck(cubit),
|
|
|
|
|
() => _stepCheck(cubit),
|
|
|
|
|
() => Container(child: Text('Everythigng is initialized'))
|
|
|
|
|
][cubit.state.progress]();
|
2021-01-06 17:35:57 +00:00
|
|
|
|
return BlocListener<AppConfigCubit, AppConfigState>(
|
|
|
|
|
listener: (context, state) {
|
|
|
|
|
if (state.isFullyInitilized) {
|
|
|
|
|
Navigator.of(context).pushReplacement(materialRoute(RootPage()));
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
child: SafeArea(
|
|
|
|
|
child: Scaffold(
|
|
|
|
|
body: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
Padding(
|
|
|
|
|
padding: brandPagePadding1,
|
|
|
|
|
child: Column(
|
2021-02-03 19:51:07 +00:00
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
2021-01-06 17:35:57 +00:00
|
|
|
|
children: [
|
|
|
|
|
ProgressBar(
|
|
|
|
|
steps: [
|
|
|
|
|
'Hetzner',
|
|
|
|
|
'CloudFlare',
|
2021-02-03 19:51:07 +00:00
|
|
|
|
'Backblaze',
|
2021-01-06 17:35:57 +00:00
|
|
|
|
'Domain',
|
|
|
|
|
'User',
|
|
|
|
|
'Server',
|
2021-02-17 16:20:09 +00:00
|
|
|
|
'Check1',
|
|
|
|
|
'Check2',
|
|
|
|
|
'Check3'
|
2020-12-30 14:13:25 +00:00
|
|
|
|
],
|
2021-01-06 17:35:57 +00:00
|
|
|
|
activeIndex: cubit.state.progress,
|
2020-12-30 14:13:25 +00:00
|
|
|
|
),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
],
|
|
|
|
|
),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
_addCard(
|
|
|
|
|
AnimatedSwitcher(
|
|
|
|
|
duration: Duration(milliseconds: 300),
|
|
|
|
|
child: actualPage,
|
|
|
|
|
),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
BrandButton.text(
|
|
|
|
|
title:
|
|
|
|
|
cubit.state.isFullyInitilized ? 'Close' : 'Настрою потом',
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.of(context).pushAndRemoveUntil(
|
|
|
|
|
materialRoute(RootPage()),
|
|
|
|
|
(predicate) => predicate == null,
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
SizedBox(height: 30),
|
|
|
|
|
],
|
|
|
|
|
),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
),
|
2020-12-10 20:33:19 +00:00
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Widget _stepHetzner(AppConfigCubit initializingCubit) {
|
2020-12-30 14:13:25 +00:00
|
|
|
|
return BlocProvider(
|
|
|
|
|
create: (context) => HetznerFormCubit(initializingCubit),
|
|
|
|
|
child: Builder(builder: (context) {
|
|
|
|
|
var formCubit = context.watch<HetznerFormCubit>();
|
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
2021-02-15 18:58:29 +00:00
|
|
|
|
Image.asset(
|
|
|
|
|
'assets/images/logos/hetzner.png',
|
|
|
|
|
width: 150,
|
|
|
|
|
),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandText.h2('Подключите сервер Hetzner'),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandText.body2(
|
|
|
|
|
'Здесь будут жить наши данные и SelfPrivacy-сервисы'),
|
|
|
|
|
Spacer(),
|
|
|
|
|
CubitFormTextField(
|
|
|
|
|
formFieldCubit: formCubit.apiKey,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
scrollPadding: EdgeInsets.only(bottom: 70),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
hintText: 'Hetzner API Token',
|
|
|
|
|
),
|
|
|
|
|
),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Spacer(),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
BrandButton.rised(
|
|
|
|
|
onPressed:
|
|
|
|
|
formCubit.state.isSubmitting ? null : formCubit.trySubmit,
|
|
|
|
|
title: 'Подключить',
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () => _showModal(context, _HowHetzner()),
|
|
|
|
|
title: 'Как получить API Token',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-10 20:33:19 +00:00
|
|
|
|
void _showModal(BuildContext context, Widget widget) {
|
|
|
|
|
showModalBottomSheet<void>(
|
|
|
|
|
context: context,
|
|
|
|
|
isScrollControlled: true,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
|
return widget;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Widget _stepCloudflare(AppConfigCubit initializingCubit) {
|
|
|
|
|
return BlocProvider(
|
|
|
|
|
create: (context) => CloudFlareFormCubit(initializingCubit),
|
|
|
|
|
child: Builder(builder: (context) {
|
|
|
|
|
var formCubit = context.watch<CloudFlareFormCubit>();
|
|
|
|
|
|
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
2021-02-15 18:58:29 +00:00
|
|
|
|
Image.asset(
|
|
|
|
|
'assets/images/logos/cloudflare.png',
|
|
|
|
|
width: 150,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
BrandText.h2('Подключите CloudFlare'),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandText.body2('Для управления DNS вашего домена'),
|
|
|
|
|
Spacer(),
|
|
|
|
|
CubitFormTextField(
|
|
|
|
|
formFieldCubit: formCubit.apiKey,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
scrollPadding: EdgeInsets.only(bottom: 70),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
hintText: 'CloudFlare API Token',
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
BrandButton.rised(
|
|
|
|
|
onPressed:
|
|
|
|
|
formCubit.state.isSubmitting ? null : formCubit.trySubmit,
|
|
|
|
|
title: 'Подключить',
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () {},
|
|
|
|
|
title: 'Как получить API Token',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-03 19:51:07 +00:00
|
|
|
|
Widget _stepBackblaze(AppConfigCubit initializingCubit) {
|
|
|
|
|
return BlocProvider(
|
|
|
|
|
create: (context) => BackblazeFormCubit(initializingCubit),
|
|
|
|
|
child: Builder(builder: (context) {
|
|
|
|
|
var formCubit = context.watch<BackblazeFormCubit>();
|
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
2021-02-15 18:58:29 +00:00
|
|
|
|
Image.asset(
|
|
|
|
|
'assets/images/logos/backblaze.png',
|
|
|
|
|
height: 50,
|
|
|
|
|
),
|
2021-02-03 19:51:07 +00:00
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandText.h2('Подключите облачное хранилище Backblaze'),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
Spacer(),
|
|
|
|
|
CubitFormTextField(
|
|
|
|
|
formFieldCubit: formCubit.keyId,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
scrollPadding: EdgeInsets.only(bottom: 70),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
hintText: 'KeyID',
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
CubitFormTextField(
|
|
|
|
|
formFieldCubit: formCubit.applicationKey,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
scrollPadding: EdgeInsets.only(bottom: 70),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
hintText: 'Master Application Key',
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
BrandButton.rised(
|
|
|
|
|
onPressed:
|
|
|
|
|
formCubit.state.isSubmitting ? null : formCubit.trySubmit,
|
|
|
|
|
title: 'Подключить',
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () => _showModal(context, _HowHetzner()),
|
|
|
|
|
title: 'Как получить API Token',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Widget _stepDomain(AppConfigCubit initializingCubit) {
|
|
|
|
|
return BlocProvider(
|
2021-02-15 18:58:29 +00:00
|
|
|
|
create: (context) => DomainSetupCubit(initializingCubit)..load(),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
child: Builder(builder: (context) {
|
2021-02-15 18:58:29 +00:00
|
|
|
|
var domainSetup = context.watch<DomainSetupCubit>();
|
|
|
|
|
var state = domainSetup.state;
|
2021-01-06 17:35:57 +00:00
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
2021-02-15 18:58:29 +00:00
|
|
|
|
Image.asset(
|
|
|
|
|
'assets/images/logos/cloudflare.png',
|
|
|
|
|
width: 150,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 30),
|
|
|
|
|
BrandText.h2('Домен'),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
SizedBox(height: 10),
|
2021-02-15 18:58:29 +00:00
|
|
|
|
if (state is Empty)
|
|
|
|
|
BrandText.body2('На данный момент подлюченных доменов нет'),
|
|
|
|
|
if (state is Loading)
|
|
|
|
|
BrandText.body2(
|
|
|
|
|
state.type == LoadingTypes.loadingDomain
|
|
|
|
|
? 'Загружаем список доменов'
|
|
|
|
|
: 'Сохранение..',
|
2021-01-06 17:35:57 +00:00
|
|
|
|
),
|
2021-02-15 18:58:29 +00:00
|
|
|
|
if (state is MoreThenOne)
|
|
|
|
|
BrandText.body2(
|
|
|
|
|
'Найдено больше одного домена, для вашей безопастности, просим вам удалить не нужные домены',
|
|
|
|
|
),
|
|
|
|
|
if (state is Loaded) ...[
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: BrandText.h3(
|
|
|
|
|
'${state.domain}',
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
width: 50,
|
|
|
|
|
child: BrandButton.rised(
|
|
|
|
|
onPressed: () => domainSetup.load(),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
Icon(
|
|
|
|
|
Icons.refresh,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
if (state is Empty) ...[
|
|
|
|
|
SizedBox(height: 30),
|
|
|
|
|
BrandButton.rised(
|
|
|
|
|
onPressed: () => domainSetup.load(),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
Icon(
|
|
|
|
|
Icons.refresh,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(width: 10),
|
|
|
|
|
BrandText.buttonTitleText('Обновить cписок'),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
if (state is Loaded) ...[
|
|
|
|
|
SizedBox(height: 30),
|
|
|
|
|
BrandButton.rised(
|
|
|
|
|
onPressed: () => domainSetup.saveDomain(),
|
|
|
|
|
title: 'Сохранить домен',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
SizedBox(height: 10),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Spacer(),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () => _showModal(context, _HowHetzner()),
|
|
|
|
|
title: 'Как получить API Token',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Widget _stepUser(AppConfigCubit initializingCubit) {
|
|
|
|
|
return BlocProvider(
|
2021-01-14 18:45:10 +00:00
|
|
|
|
create: (context) => RootUserFormCubit(initializingCubit),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
child: Builder(builder: (context) {
|
2021-01-14 18:45:10 +00:00
|
|
|
|
var formCubit = context.watch<RootUserFormCubit>();
|
2021-01-06 17:35:57 +00:00
|
|
|
|
|
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Spacer(),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
CubitFormTextField(
|
|
|
|
|
formFieldCubit: formCubit.userName,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
scrollPadding: EdgeInsets.only(bottom: 70),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
hintText: 'Никнейм',
|
2020-12-10 20:33:19 +00:00
|
|
|
|
),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10),
|
2021-02-15 18:58:29 +00:00
|
|
|
|
BlocBuilder<FieldCubit<bool>, FieldCubitState<bool>>(
|
2021-03-14 19:18:51 +00:00
|
|
|
|
bloc: formCubit.isVisible,
|
2021-02-15 18:58:29 +00:00
|
|
|
|
builder: (context, state) {
|
|
|
|
|
var isVisible = state.value;
|
|
|
|
|
return CubitFormTextField(
|
|
|
|
|
obscureText: !isVisible,
|
|
|
|
|
formFieldCubit: formCubit.password,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
scrollPadding: EdgeInsets.only(bottom: 70),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
hintText: 'Пароль',
|
|
|
|
|
suffixIcon: IconButton(
|
|
|
|
|
icon: Icon(
|
|
|
|
|
isVisible ? Icons.visibility : Icons.visibility_off,
|
|
|
|
|
),
|
|
|
|
|
onPressed: () => formCubit.isVisible.setValue(!isVisible),
|
|
|
|
|
),
|
|
|
|
|
suffixIconConstraints: BoxConstraints(minWidth: 60),
|
|
|
|
|
prefixIconConstraints: BoxConstraints(maxWidth: 85),
|
|
|
|
|
prefixIcon: Container(),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
2021-01-06 17:35:57 +00:00
|
|
|
|
),
|
|
|
|
|
Spacer(),
|
|
|
|
|
BrandButton.rised(
|
|
|
|
|
onPressed:
|
|
|
|
|
formCubit.state.isSubmitting ? null : formCubit.trySubmit,
|
|
|
|
|
title: 'Подключить',
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () => _showModal(context, _HowHetzner()),
|
|
|
|
|
title: 'Как получить API Token',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
2020-12-10 20:33:19 +00:00
|
|
|
|
|
2021-01-06 17:35:57 +00:00
|
|
|
|
Widget _stepServer(AppConfigCubit appConfigCubit) {
|
|
|
|
|
var isLoading = appConfigCubit.state.isLoading;
|
|
|
|
|
return Builder(builder: (context) {
|
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
2021-01-08 12:37:28 +00:00
|
|
|
|
Spacer(flex: 2),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
BrandText.h2('Создать сервер'),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandText.body2('Создать сервер'),
|
|
|
|
|
Spacer(),
|
|
|
|
|
BrandButton.rised(
|
2021-01-21 21:01:42 +00:00
|
|
|
|
onPressed:
|
|
|
|
|
isLoading ? null : appConfigCubit.createServerAndSetDnsRecords,
|
2021-01-06 17:35:57 +00:00
|
|
|
|
title: isLoading ? 'loading' : 'Создать сервер',
|
|
|
|
|
),
|
2021-01-08 12:37:28 +00:00
|
|
|
|
Spacer(flex: 2),
|
2021-01-06 17:35:57 +00:00
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () => _showModal(context, _HowHetzner()),
|
|
|
|
|
title: 'Что это значит?',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-06 19:25:53 +00:00
|
|
|
|
Widget _stepCheck(AppConfigCubit appConfigCubit) {
|
2021-02-16 18:48:15 +00:00
|
|
|
|
assert(appConfigCubit.state is TimerState, 'wronge state');
|
|
|
|
|
var state = appConfigCubit.state as TimerState;
|
|
|
|
|
|
|
|
|
|
String text;
|
|
|
|
|
if (state.isServerReseted) {
|
|
|
|
|
text = 'Сервер презагружен, ждем последнюю проверку';
|
|
|
|
|
} else if (state.isServerStarted) {
|
|
|
|
|
text = 'Cервер запушен, сейчас он будет проверен и перезагружен';
|
|
|
|
|
} else if (state.isServerCreated) {
|
|
|
|
|
text = 'Cервер создан, идет проверка ДНС адресов и запуск сервера';
|
|
|
|
|
}
|
|
|
|
|
return Builder(builder: (context) {
|
|
|
|
|
return Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Spacer(flex: 2),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
BrandText.body2(text),
|
|
|
|
|
SizedBox(height: 10),
|
|
|
|
|
if (!state.isLoading)
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
BrandText.body2('До следующей проверки: '),
|
|
|
|
|
BrandTimer(
|
|
|
|
|
startDateTime: state.timerStart,
|
|
|
|
|
duration: state.duration,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (state.isLoading) BrandText.body2('Проверка'),
|
|
|
|
|
Spacer(
|
|
|
|
|
flex: 2,
|
|
|
|
|
),
|
|
|
|
|
BrandButton.text(
|
|
|
|
|
onPressed: () => _showModal(context, _HowHetzner()),
|
|
|
|
|
title: 'Что это значит?',
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
});
|
2021-01-06 19:25:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-30 14:13:25 +00:00
|
|
|
|
Widget _addCard(Widget child) {
|
2021-01-06 17:35:57 +00:00
|
|
|
|
return Container(
|
|
|
|
|
height: 500,
|
2020-12-30 14:13:25 +00:00
|
|
|
|
padding: brandPagePadding2,
|
2021-01-08 12:37:28 +00:00
|
|
|
|
child: BrandCard(child: child),
|
2020-12-30 14:13:25 +00:00
|
|
|
|
);
|
2020-12-10 20:33:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _HowHetzner extends StatelessWidget {
|
|
|
|
|
const _HowHetzner({
|
|
|
|
|
Key key,
|
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2021-01-27 18:33:00 +00:00
|
|
|
|
var isDark = Theme.of(context).brightness == Brightness.dark;
|
|
|
|
|
|
2020-12-10 20:33:19 +00:00
|
|
|
|
return BrandModalSheet(
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: brandPagePadding2,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(height: 40),
|
|
|
|
|
BrandText.h2('Как получить Hetzner API Token'),
|
|
|
|
|
SizedBox(height: 20),
|
|
|
|
|
RichText(
|
|
|
|
|
text: TextSpan(
|
|
|
|
|
children: [
|
|
|
|
|
TextSpan(
|
|
|
|
|
text: '1 Переходим по ссылке ',
|
2021-01-27 18:33:00 +00:00
|
|
|
|
style: body1Style.copyWith(
|
|
|
|
|
color: isDark ? BrandColors.white : BrandColors.black,
|
|
|
|
|
),
|
2020-12-10 20:33:19 +00:00
|
|
|
|
),
|
|
|
|
|
BrandSpanButton.link(
|
2021-01-27 19:54:37 +00:00
|
|
|
|
text: 'hetzner.com',
|
|
|
|
|
urlString: 'https://hetzner.com',
|
2020-12-10 20:33:19 +00:00
|
|
|
|
),
|
|
|
|
|
TextSpan(
|
|
|
|
|
text: '''
|
|
|
|
|
|
|
|
|
|
2 Заходим в созданный нами проект. Если такового - нет, значит создаём.
|
|
|
|
|
|
|
|
|
|
3 Наводим мышкой на боковую панель. Она должна раскрыться, показав нам пункты меню. Нас интересует последний — Security (с иконкой ключика).
|
|
|
|
|
|
|
|
|
|
4 Далее, в верхней части интерфейса видим примерно такой список: SSH Keys, API Tokens, Certificates, Members. Нам нужен API Tokens. Переходим по нему.
|
|
|
|
|
|
|
|
|
|
5 В правой части интерфейса, нас будет ожидать кнопка Generate API token. Если же вы используете мобильную версию сайта, в нижнем правом углу вы увидите красный плюсик. Нажимаем на эту кнопку.
|
|
|
|
|
|
|
|
|
|
6 В поле Description, даём нашему токену название (это может быть любое название, которые вам нравиться. Сути оно не меняет.
|
|
|
|
|
|
|
|
|
|
''',
|
2021-01-27 18:33:00 +00:00
|
|
|
|
style: body1Style.copyWith(
|
|
|
|
|
color: isDark ? BrandColors.white : BrandColors.black,
|
|
|
|
|
),
|
2020-12-10 20:33:19 +00:00
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|