mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 01:43:13 +00:00
503 lines
16 KiB
Dart
503 lines
16 KiB
Dart
import 'dart:ui';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:selfprivacy/config/brand_colors.dart';
|
|
import 'package:selfprivacy/config/brand_theme.dart';
|
|
import 'package:selfprivacy/config/text_themes.dart';
|
|
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
|
|
import 'package:selfprivacy/logic/cubit/server_installation/server_installation_cubit.dart';
|
|
import 'package:selfprivacy/logic/cubit/jobs/jobs_cubit.dart';
|
|
import 'package:selfprivacy/logic/cubit/services/services_cubit.dart';
|
|
import 'package:selfprivacy/logic/models/job.dart';
|
|
import 'package:selfprivacy/logic/models/state_types.dart';
|
|
import 'package:selfprivacy/ui/components/brand_button/brand_button.dart';
|
|
import 'package:selfprivacy/ui/components/brand_cards/brand_cards.dart';
|
|
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
|
import 'package:selfprivacy/ui/components/brand_switch/brand_switch.dart';
|
|
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
|
|
import 'package:selfprivacy/ui/components/icon_status_mask/icon_status_mask.dart';
|
|
import 'package:selfprivacy/ui/components/not_ready_card/not_ready_card.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:selfprivacy/utils/ui_helpers.dart';
|
|
import 'package:url_launcher/url_launcher_string.dart';
|
|
|
|
import 'package:selfprivacy/ui/pages/root_route.dart';
|
|
|
|
const switchableServices = [
|
|
ServiceTypes.passwordManager,
|
|
ServiceTypes.cloud,
|
|
ServiceTypes.socialNetwork,
|
|
ServiceTypes.git,
|
|
ServiceTypes.vpn,
|
|
];
|
|
|
|
class ServicesPage extends StatefulWidget {
|
|
const ServicesPage({final super.key});
|
|
|
|
@override
|
|
State<ServicesPage> createState() => _ServicesPageState();
|
|
}
|
|
|
|
void _launchURL(final url) async {
|
|
final canLaunch = await canLaunchUrlString(url);
|
|
|
|
if (canLaunch) {
|
|
try {
|
|
await launchUrlString(
|
|
url,
|
|
);
|
|
} catch (e) {
|
|
print(e);
|
|
}
|
|
} else {
|
|
throw 'Could not launch $url';
|
|
}
|
|
}
|
|
|
|
class _ServicesPageState extends State<ServicesPage> {
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
final isReady = context.watch<ServerInstallationCubit>().state
|
|
is ServerInstallationFinished;
|
|
|
|
return Scaffold(
|
|
appBar: PreferredSize(
|
|
preferredSize: const Size.fromHeight(52),
|
|
child: BrandHeader(
|
|
title: 'basis.services'.tr(),
|
|
),
|
|
),
|
|
body: ListView(
|
|
padding: paddingH15V0,
|
|
children: [
|
|
BrandText.body1('services.title'.tr()),
|
|
const SizedBox(height: 24),
|
|
if (!isReady) ...[const NotReadyCard(), const SizedBox(height: 24)],
|
|
...ServiceTypes.values
|
|
.map(
|
|
(final t) => Padding(
|
|
padding: const EdgeInsets.only(
|
|
bottom: 30,
|
|
),
|
|
child: _Card(serviceType: t),
|
|
),
|
|
)
|
|
.toList()
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _Card extends StatelessWidget {
|
|
const _Card({required this.serviceType});
|
|
|
|
final ServiceTypes serviceType;
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
final isReady = context.watch<ServerInstallationCubit>().state
|
|
is ServerInstallationFinished;
|
|
final changeTab = context.read<ChangeTab>().onPress;
|
|
|
|
final serviceState = context.watch<ServicesCubit>().state;
|
|
final jobsCubit = context.watch<JobsCubit>();
|
|
final jobState = jobsCubit.state;
|
|
|
|
final switchableService = switchableServices.contains(serviceType);
|
|
final hasSwitchJob = switchableService &&
|
|
jobState is JobsStateWithJobs &&
|
|
jobState.clientJobList.any(
|
|
(final el) => el is ServiceToggleJob && el.type == serviceType,
|
|
);
|
|
|
|
final isSwitchOn = isReady &&
|
|
(!switchableServices.contains(serviceType) ||
|
|
serviceState.isEnableByType(serviceType));
|
|
|
|
final config = context.watch<ServerInstallationCubit>().state;
|
|
final domainName = UiHelpers.getDomainName(config);
|
|
|
|
return GestureDetector(
|
|
onTap: isSwitchOn
|
|
? () => showDialog<void>(
|
|
context: context,
|
|
// isScrollControlled: true,
|
|
// backgroundColor: Colors.transparent,
|
|
builder: (final BuildContext context) => _ServiceDetails(
|
|
serviceType: serviceType,
|
|
status:
|
|
isSwitchOn ? StateType.stable : StateType.uninitialized,
|
|
title: serviceType.title,
|
|
icon: serviceType.icon,
|
|
changeTab: changeTab,
|
|
),
|
|
)
|
|
: null,
|
|
child: BrandCards.big(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
IconStatusMask(
|
|
status:
|
|
isSwitchOn ? StateType.stable : StateType.uninitialized,
|
|
child: Icon(serviceType.icon, size: 30, color: Colors.white),
|
|
),
|
|
if (isReady && switchableService) ...[
|
|
const Spacer(),
|
|
Builder(
|
|
builder: (final context) {
|
|
late bool isActive;
|
|
if (hasSwitchJob) {
|
|
isActive = (jobState.clientJobList.firstWhere(
|
|
(final el) =>
|
|
el is ServiceToggleJob && el.type == serviceType,
|
|
) as ServiceToggleJob)
|
|
.needToTurnOn;
|
|
} else {
|
|
isActive = serviceState.isEnableByType(serviceType);
|
|
}
|
|
|
|
return BrandSwitch(
|
|
value: isActive,
|
|
onChanged: (final value) =>
|
|
jobsCubit.createOrRemoveServiceToggleJob(
|
|
ServiceToggleJob(
|
|
type: serviceType,
|
|
needToTurnOn: value,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
]
|
|
],
|
|
),
|
|
ClipRect(
|
|
child: Stack(
|
|
children: [
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const SizedBox(height: 10),
|
|
BrandText.h2(serviceType.title),
|
|
const SizedBox(height: 10),
|
|
if (serviceType.subdomain != '')
|
|
Column(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () => _launchURL(
|
|
'https://${serviceType.subdomain}.$domainName',
|
|
),
|
|
child: Text(
|
|
'${serviceType.subdomain}.$domainName',
|
|
style: TextStyle(
|
|
color:
|
|
Theme.of(context).colorScheme.secondary,
|
|
decoration: TextDecoration.underline,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 10),
|
|
],
|
|
),
|
|
if (serviceType == ServiceTypes.mail)
|
|
Column(
|
|
children: [
|
|
Text(
|
|
domainName,
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.primary,
|
|
decoration: TextDecoration.underline,
|
|
),
|
|
),
|
|
const SizedBox(height: 10),
|
|
],
|
|
),
|
|
BrandText.body2(serviceType.loginInfo),
|
|
const SizedBox(height: 10),
|
|
BrandText.body2(serviceType.subtitle),
|
|
const SizedBox(height: 10),
|
|
],
|
|
),
|
|
if (hasSwitchJob)
|
|
Positioned(
|
|
bottom: 24,
|
|
left: 0,
|
|
right: 0,
|
|
child: BackdropFilter(
|
|
filter: ImageFilter.blur(
|
|
sigmaX: 3,
|
|
sigmaY: 2,
|
|
),
|
|
child: BrandText.h2(
|
|
'jobs.runJobs'.tr(),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _ServiceDetails extends StatelessWidget {
|
|
const _ServiceDetails({
|
|
required this.serviceType,
|
|
required this.icon,
|
|
required this.status,
|
|
required this.title,
|
|
required this.changeTab,
|
|
});
|
|
|
|
final ServiceTypes serviceType;
|
|
final IconData icon;
|
|
final StateType status;
|
|
final String title;
|
|
final ValueChanged<int> changeTab;
|
|
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
late Widget child;
|
|
|
|
final config = context.watch<ServerInstallationCubit>().state;
|
|
final domainName = UiHelpers.getDomainName(config);
|
|
|
|
final linksStyle = body1Style.copyWith(
|
|
fontSize: 15,
|
|
color: Theme.of(context).brightness == Brightness.dark
|
|
? Colors.white
|
|
: BrandColors.black,
|
|
fontWeight: FontWeight.bold,
|
|
decoration: TextDecoration.underline,
|
|
);
|
|
|
|
final textStyle = body1Style.copyWith(
|
|
color: Theme.of(context).brightness == Brightness.dark
|
|
? Colors.white
|
|
: BrandColors.black,
|
|
);
|
|
switch (serviceType) {
|
|
case ServiceTypes.mail:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'services.mail.bottom_sheet.1'.tr(args: [domainName]),
|
|
style: textStyle,
|
|
),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 0.8),
|
|
child: GestureDetector(
|
|
child: Text(
|
|
'services.mail.bottom_sheet.2'.tr(),
|
|
style: linksStyle,
|
|
),
|
|
onTap: () {
|
|
Navigator.of(context).pop();
|
|
changeTab(2);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.messenger:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text:
|
|
'services.messenger.bottom_sheet.1'.tr(args: [domainName]),
|
|
style: textStyle,
|
|
)
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.passwordManager:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'services.password_manager.bottom_sheet.1'
|
|
.tr(args: [domainName]),
|
|
style: textStyle,
|
|
),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 0.8),
|
|
child: GestureDetector(
|
|
onTap: () => _launchURL('https://password.$domainName'),
|
|
child: Text(
|
|
'password.$domainName',
|
|
style: linksStyle,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.video:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'services.video.bottom_sheet.1'.tr(args: [domainName]),
|
|
style: textStyle,
|
|
),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 0.8),
|
|
child: GestureDetector(
|
|
onTap: () => _launchURL('https://meet.$domainName'),
|
|
child: Text(
|
|
'meet.$domainName',
|
|
style: linksStyle,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.cloud:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'services.cloud.bottom_sheet.1'.tr(args: [domainName]),
|
|
style: textStyle,
|
|
),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 0.8),
|
|
child: GestureDetector(
|
|
onTap: () => _launchURL('https://cloud.$domainName'),
|
|
child: Text(
|
|
'cloud.$domainName',
|
|
style: linksStyle,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.socialNetwork:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'services.social_network.bottom_sheet.1'
|
|
.tr(args: [domainName]),
|
|
style: textStyle,
|
|
),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 0.8),
|
|
child: GestureDetector(
|
|
onTap: () => _launchURL('https://social.$domainName'),
|
|
child: Text(
|
|
'social.$domainName',
|
|
style: linksStyle,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.git:
|
|
child = RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'services.git.bottom_sheet.1'.tr(args: [domainName]),
|
|
style: textStyle,
|
|
),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 0.8),
|
|
child: GestureDetector(
|
|
onTap: () => _launchURL('https://git.$domainName'),
|
|
child: Text(
|
|
'git.$domainName',
|
|
style: linksStyle,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
case ServiceTypes.vpn:
|
|
child = Text(
|
|
'services.vpn.bottom_sheet.1'.tr(),
|
|
);
|
|
}
|
|
|
|
return Dialog(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(20),
|
|
),
|
|
child: SingleChildScrollView(
|
|
child: SizedBox(
|
|
width: 350,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: paddingH15V30,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
IconStatusMask(
|
|
status: status,
|
|
child: Icon(icon, size: 40, color: Colors.white),
|
|
),
|
|
const SizedBox(height: 10),
|
|
BrandText.h2(title),
|
|
const SizedBox(height: 10),
|
|
child,
|
|
const SizedBox(height: 40),
|
|
Center(
|
|
child: Container(
|
|
child: BrandButton.rised(
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
text: 'basis.close'.tr(),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|