selfprivacy.org.app/lib/ui/components/jobs_content/jobs_content.dart

136 lines
5.3 KiB
Dart
Raw Normal View History

2021-05-26 00:53:54 +03:00
import 'package:flutter/material.dart';
import 'package:easy_localization/easy_localization.dart';
2021-07-29 08:24:42 +03:00
import 'package:flutter_bloc/flutter_bloc.dart';
2021-06-21 00:08:52 +03:00
import 'package:selfprivacy/config/brand_theme.dart';
2021-12-06 20:31:19 +02:00
import 'package:selfprivacy/config/get_it_config.dart';
2022-08-30 06:09:09 +03:00
import 'package:selfprivacy/logic/cubit/client_jobs/client_jobs_cubit.dart';
import 'package:selfprivacy/logic/cubit/server_installation/server_installation_cubit.dart';
2022-08-30 06:09:09 +03:00
import 'package:selfprivacy/logic/cubit/server_jobs/server_jobs_cubit.dart';
2021-12-06 20:31:19 +02:00
import 'package:selfprivacy/ui/components/action_button/action_button.dart';
import 'package:selfprivacy/ui/components/brand_alert/brand_alert.dart';
2021-05-26 00:53:54 +03:00
import 'package:selfprivacy/ui/components/brand_button/brand_button.dart';
import 'package:selfprivacy/ui/components/brand_cards/brand_cards.dart';
2021-07-29 08:24:42 +03:00
import 'package:selfprivacy/ui/components/brand_loader/brand_loader.dart';
2021-05-26 00:53:54 +03:00
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
2022-08-26 05:34:25 +03:00
import 'package:selfprivacy/ui/components/jobs_content/server_job_card.dart';
2021-05-26 00:53:54 +03:00
class JobsContent extends StatelessWidget {
const JobsContent({final super.key});
2021-05-26 00:53:54 +03:00
@override
2022-06-05 22:36:32 +03:00
Widget build(final BuildContext context) => BlocBuilder<JobsCubit, JobsState>(
builder: (final context, final state) {
late List<Widget> widgets;
final ServerInstallationState installationState =
context.read<ServerInstallationCubit>().state;
if (state is JobsStateEmpty) {
widgets = [
2022-05-24 21:55:39 +03:00
const SizedBox(height: 80),
Center(child: BrandText.body1('jobs.empty'.tr())),
];
if (installationState is ServerInstallationFinished) {
widgets = [
...widgets,
const SizedBox(height: 80),
BrandButton.rised(
onPressed: () => context.read<JobsCubit>().upgradeServer(),
text: 'jobs.upgradeServer'.tr(),
),
const SizedBox(height: 10),
BrandButton.text(
onPressed: () {
final NavigationService nav = getIt<NavigationService>();
nav.showPopUpDialog(
BrandAlert(
title: 'jobs.rebootServer'.tr(),
contentText: 'modals.3'.tr(),
actions: [
ActionButton(
text: 'basis.cancel'.tr(),
),
ActionButton(
onPressed: () =>
{context.read<JobsCubit>().rebootServer()},
text: 'modals.9'.tr(),
)
],
2021-05-26 00:53:54 +03:00
),
);
},
title: 'jobs.rebootServer'.tr(),
),
];
}
} else if (state is JobsStateLoading) {
widgets = [
const SizedBox(height: 80),
BrandLoader.horizontal(),
];
} else if (state is JobsStateWithJobs) {
widgets = [
...state.clientJobList
.map(
(final j) => Row(
children: [
Expanded(
child: BrandCards.small(
child: Text(j.title),
2021-07-29 08:24:42 +03:00
),
2021-05-26 00:53:54 +03:00
),
const SizedBox(width: 10),
ElevatedButton(
style: ElevatedButton.styleFrom(
primary:
Theme.of(context).colorScheme.errorContainer,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
onPressed: () =>
context.read<JobsCubit>().removeJob(j.id),
child: Text(
'basis.remove'.tr(),
2022-06-05 22:36:32 +03:00
style: TextStyle(
color: Theme.of(context)
.colorScheme
.onErrorContainer,
),
),
),
],
),
)
.toList(),
const SizedBox(height: 20),
BrandButton.rised(
onPressed: () => context.read<JobsCubit>().applyAll(),
text: 'jobs.start'.tr(),
),
];
}
return ListView(
padding: paddingH15V0,
children: [
const SizedBox(height: 15),
Center(
child: BrandText.h2(
'jobs.title'.tr(),
),
2021-07-29 08:24:42 +03:00
),
const SizedBox(height: 20),
2022-08-26 05:34:25 +03:00
...widgets,
const SizedBox(height: 8),
const Divider(),
const SizedBox(height: 8),
2022-08-30 06:09:09 +03:00
...context.read<ServerJobsCubit>().state.serverJobList.map(
(final job) => ServerJobCard(
serverJob: job,
),
),
],
);
},
);
2021-05-26 00:53:54 +03:00
}