2022-05-31 14:30:44 +00:00
|
|
|
import 'package:cubit_form/cubit_form.dart';
|
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2022-06-07 19:59:15 +00:00
|
|
|
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
|
2022-05-31 14:30:44 +00:00
|
|
|
import 'package:selfprivacy/logic/cubit/devices/devices_cubit.dart';
|
|
|
|
import 'package:selfprivacy/logic/cubit/server_installation/server_installation_cubit.dart';
|
|
|
|
import 'package:selfprivacy/logic/models/json/api_token.dart';
|
|
|
|
import 'package:selfprivacy/ui/components/brand_hero_screen/brand_hero_screen.dart';
|
2022-09-14 16:45:50 +00:00
|
|
|
import 'package:selfprivacy/ui/components/info_box/info_box.dart';
|
2022-05-31 14:30:44 +00:00
|
|
|
import 'package:selfprivacy/ui/pages/devices/new_device.dart';
|
|
|
|
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
|
|
|
|
|
|
|
class DevicesScreen extends StatefulWidget {
|
2022-06-05 22:40:34 +00:00
|
|
|
const DevicesScreen({final super.key});
|
2022-05-31 14:30:44 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<DevicesScreen> createState() => _DevicesScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _DevicesScreenState extends State<DevicesScreen> {
|
|
|
|
@override
|
2022-06-05 19:36:32 +00:00
|
|
|
Widget build(final BuildContext context) {
|
2022-06-05 22:40:34 +00:00
|
|
|
final ApiDevicesState devicesStatus =
|
|
|
|
context.watch<ApiDevicesCubit>().state;
|
2022-05-31 14:30:44 +00:00
|
|
|
|
|
|
|
return RefreshIndicator(
|
|
|
|
onRefresh: () async {
|
|
|
|
context.read<ApiDevicesCubit>().refresh();
|
|
|
|
},
|
|
|
|
child: BrandHeroScreen(
|
|
|
|
heroTitle: 'devices.main_screen.header'.tr(),
|
|
|
|
heroSubtitle: 'devices.main_screen.description'.tr(),
|
|
|
|
hasBackButton: true,
|
|
|
|
hasFlashButton: false,
|
2022-06-07 19:59:15 +00:00
|
|
|
children: [
|
|
|
|
if (devicesStatus.status == LoadingStatus.uninitialized) ...[
|
|
|
|
const Center(
|
|
|
|
heightFactor: 8,
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
if (devicesStatus.status != LoadingStatus.uninitialized) ...[
|
|
|
|
_DevicesInfo(
|
|
|
|
devicesStatus: devicesStatus,
|
|
|
|
),
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
OutlinedButton(
|
|
|
|
onPressed: () => Navigator.of(context)
|
|
|
|
.push(materialRoute(const NewDeviceScreen())),
|
|
|
|
child: Text('devices.main_screen.authorize_new_device'.tr()),
|
|
|
|
),
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
const Divider(height: 1),
|
|
|
|
const SizedBox(height: 16),
|
2022-09-15 21:08:32 +00:00
|
|
|
InfoBox(
|
|
|
|
text: 'devices.main_screen.tip'.tr(),
|
|
|
|
),
|
2022-06-07 19:59:15 +00:00
|
|
|
],
|
|
|
|
const SizedBox(height: 24),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _DevicesInfo extends StatelessWidget {
|
|
|
|
const _DevicesInfo({
|
|
|
|
required this.devicesStatus,
|
|
|
|
});
|
|
|
|
|
|
|
|
final ApiDevicesState devicesStatus;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(final BuildContext context) => Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
2022-05-31 14:30:44 +00:00
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
'devices.main_screen.this_device'.tr(),
|
|
|
|
style: Theme.of(context).textTheme.labelLarge!.copyWith(
|
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
_DeviceTile(device: devicesStatus.thisDevice),
|
|
|
|
const Divider(height: 1),
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
Text(
|
|
|
|
'devices.main_screen.other_devices'.tr(),
|
|
|
|
style: Theme.of(context).textTheme.labelLarge!.copyWith(
|
|
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
...devicesStatus.otherDevices
|
2022-06-05 19:36:32 +00:00
|
|
|
.map((final device) => _DeviceTile(device: device))
|
2022-05-31 14:30:44 +00:00
|
|
|
.toList(),
|
|
|
|
],
|
2022-06-07 19:59:15 +00:00
|
|
|
);
|
2022-05-31 14:30:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class _DeviceTile extends StatelessWidget {
|
2022-06-05 22:40:34 +00:00
|
|
|
const _DeviceTile({required this.device});
|
2022-05-31 14:30:44 +00:00
|
|
|
|
|
|
|
final ApiToken device;
|
|
|
|
|
|
|
|
@override
|
2022-06-05 19:36:32 +00:00
|
|
|
Widget build(final BuildContext context) => ListTile(
|
2022-06-05 22:40:34 +00:00
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 0, vertical: 4),
|
|
|
|
title: Text(device.name),
|
|
|
|
subtitle: Text(
|
|
|
|
'devices.main_screen.access_granted_on'
|
|
|
|
.tr(args: [DateFormat.yMMMMd().format(device.date)]),
|
|
|
|
),
|
|
|
|
onTap: device.isCaller
|
|
|
|
? null
|
|
|
|
: () => _showConfirmationDialog(context, device),
|
|
|
|
);
|
2022-05-31 14:30:44 +00:00
|
|
|
|
2022-06-05 22:40:34 +00:00
|
|
|
Future _showConfirmationDialog(
|
|
|
|
final BuildContext context,
|
|
|
|
final ApiToken device,
|
|
|
|
) =>
|
|
|
|
showDialog(
|
2022-05-31 14:30:44 +00:00
|
|
|
context: context,
|
2022-06-05 19:36:32 +00:00
|
|
|
builder: (final context) => AlertDialog(
|
2022-06-05 22:40:34 +00:00
|
|
|
title: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
const Icon(Icons.link_off_outlined),
|
|
|
|
const SizedBox(height: 16),
|
|
|
|
Text(
|
|
|
|
'devices.revoke_device_alert.header'.tr(),
|
|
|
|
style: Theme.of(context).textTheme.headlineSmall,
|
|
|
|
textAlign: TextAlign.center,
|
2022-05-31 14:30:44 +00:00
|
|
|
),
|
2022-06-05 22:40:34 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
content: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
'devices.revoke_device_alert.description'
|
|
|
|
.tr(args: [device.name]),
|
|
|
|
style: Theme.of(context).textTheme.bodyMedium,
|
2022-05-31 14:30:44 +00:00
|
|
|
),
|
|
|
|
],
|
2022-06-05 19:36:32 +00:00
|
|
|
),
|
2022-06-05 22:40:34 +00:00
|
|
|
actions: <Widget>[
|
|
|
|
TextButton(
|
|
|
|
child: Text('devices.revoke_device_alert.no'.tr()),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
TextButton(
|
|
|
|
child: Text('devices.revoke_device_alert.yes'.tr()),
|
|
|
|
onPressed: () {
|
|
|
|
context.read<ApiDevicesCubit>().deleteDevice(device);
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2022-05-31 14:30:44 +00:00
|
|
|
);
|
|
|
|
}
|