2022-08-18 16:41:59 +02:00
|
|
|
import 'dart:io';
|
|
|
|
|
2022-02-03 18:06:44 +02:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2022-07-07 20:40:54 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2022-02-03 18:06:44 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-02-23 20:33:53 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/background_service/background.service.dart';
|
2022-07-06 23:12:55 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/providers/error_backup_list.provider.dart';
|
2023-02-23 20:33:53 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/providers/ios_background_settings.provider.dart';
|
2023-01-24 01:10:21 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/ui/current_backup_asset_info_box.dart';
|
2023-02-20 07:59:50 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/ui/ios_debug_info_tile.dart';
|
2022-02-03 18:06:44 +02:00
|
|
|
import 'package:immich_mobile/modules/login/models/authentication_state.model.dart';
|
2022-05-06 14:22:23 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/models/backup_state.model.dart';
|
2022-02-03 18:06:44 +02:00
|
|
|
import 'package:immich_mobile/modules/login/providers/authentication.provider.dart';
|
2022-05-06 14:22:23 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/providers/backup.provider.dart';
|
|
|
|
import 'package:immich_mobile/routing/router.dart';
|
2022-04-03 19:31:45 +02:00
|
|
|
import 'package:immich_mobile/shared/providers/websocket.provider.dart';
|
2022-05-06 14:22:23 +02:00
|
|
|
import 'package:immich_mobile/modules/backup/ui/backup_info_card.dart';
|
2023-02-23 20:33:53 +02:00
|
|
|
import 'package:permission_handler/permission_handler.dart';
|
2022-08-31 15:08:40 +02:00
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2022-02-03 18:06:44 +02:00
|
|
|
|
|
|
|
class BackupControllerPage extends HookConsumerWidget {
|
|
|
|
const BackupControllerPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-05-06 14:22:23 +02:00
|
|
|
BackUpState backupState = ref.watch(backupProvider);
|
2022-06-22 07:23:35 +02:00
|
|
|
AuthenticationState authenticationState = ref.watch(authenticationProvider);
|
2023-02-23 20:33:53 +02:00
|
|
|
final settings = ref.watch(iOSBackgroundSettingsProvider.notifier).settings;
|
|
|
|
|
|
|
|
final appRefreshDisabled = Platform.isIOS &&
|
|
|
|
settings?.appRefreshEnabled != true;
|
2022-08-18 16:41:59 +02:00
|
|
|
bool hasExclusiveAccess =
|
|
|
|
backupState.backupProgress != BackUpProgressEnum.inBackground;
|
2022-06-22 07:23:35 +02:00
|
|
|
bool shouldBackup = backupState.allUniqueAssets.length -
|
2022-08-18 16:41:59 +02:00
|
|
|
backupState.selectedAlbumsBackupAssetsIds.length ==
|
|
|
|
0 ||
|
|
|
|
!hasExclusiveAccess
|
2022-06-22 07:23:35 +02:00
|
|
|
? false
|
|
|
|
: true;
|
2023-02-13 07:05:31 +02:00
|
|
|
var isDarkMode = Theme.of(context).brightness == Brightness.dark;
|
2022-02-03 18:06:44 +02:00
|
|
|
|
2022-07-13 14:23:48 +02:00
|
|
|
useEffect(
|
|
|
|
() {
|
|
|
|
if (backupState.backupProgress != BackUpProgressEnum.inProgress) {
|
|
|
|
ref.watch(backupProvider.notifier).getBackupInfo();
|
|
|
|
}
|
2022-02-13 23:10:42 +02:00
|
|
|
|
2023-02-23 20:33:53 +02:00
|
|
|
// Update the background settings information just to make sure we
|
|
|
|
// have the latest, since the platform channel will not update
|
|
|
|
// automatically
|
|
|
|
if (Platform.isIOS) {
|
|
|
|
ref.watch(iOSBackgroundSettingsProvider.notifier).refresh();
|
|
|
|
}
|
|
|
|
|
2022-07-13 14:23:48 +02:00
|
|
|
ref
|
|
|
|
.watch(websocketProvider.notifier)
|
|
|
|
.stopListenToEvent('on_upload_success');
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
2022-02-03 18:06:44 +02:00
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
Widget buildStorageInformation() {
|
2022-02-03 18:06:44 +02:00
|
|
|
return ListTile(
|
|
|
|
leading: Icon(
|
|
|
|
Icons.storage_rounded,
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
title: const Text(
|
2022-07-07 20:40:54 +02:00
|
|
|
"backup_controller_page_server_storage",
|
2022-02-03 18:06:44 +02:00
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 14),
|
2022-07-07 20:40:54 +02:00
|
|
|
).tr(),
|
2022-02-03 18:06:44 +02:00
|
|
|
subtitle: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
2022-05-29 05:35:45 +02:00
|
|
|
Padding(
|
2022-02-03 18:06:44 +02:00
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
2022-11-11 19:52:02 +02:00
|
|
|
child: LinearProgressIndicator(
|
|
|
|
minHeight: 10.0,
|
|
|
|
value: backupState.serverInfo.diskUsagePercentage / 100.0,
|
2022-05-29 05:35:45 +02:00
|
|
|
backgroundColor: Colors.grey,
|
2022-11-11 19:52:02 +02:00
|
|
|
color: Theme.of(context).primaryColor,
|
2022-05-29 05:35:45 +02:00
|
|
|
),
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 12.0),
|
2022-07-07 20:40:54 +02:00
|
|
|
child: const Text('backup_controller_page_storage_format').tr(
|
2022-07-13 14:23:48 +02:00
|
|
|
args: [
|
|
|
|
backupState.serverInfo.diskUse,
|
|
|
|
backupState.serverInfo.diskSize
|
|
|
|
],
|
|
|
|
),
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
ListTile buildAutoBackupController() {
|
2022-07-07 20:40:54 +02:00
|
|
|
var backUpOption = authenticationState.deviceInfo.isAutoBackup
|
|
|
|
? "backup_controller_page_status_on".tr()
|
|
|
|
: "backup_controller_page_status_off".tr();
|
2022-06-22 07:23:35 +02:00
|
|
|
var isAutoBackup = authenticationState.deviceInfo.isAutoBackup;
|
2022-07-07 20:40:54 +02:00
|
|
|
var backupBtnText = authenticationState.deviceInfo.isAutoBackup
|
|
|
|
? "backup_controller_page_turn_off".tr()
|
|
|
|
: "backup_controller_page_turn_on".tr();
|
2022-02-03 18:06:44 +02:00
|
|
|
return ListTile(
|
|
|
|
isThreeLine: true,
|
|
|
|
leading: isAutoBackup
|
|
|
|
? Icon(
|
|
|
|
Icons.cloud_done_rounded,
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
)
|
|
|
|
: const Icon(Icons.cloud_off_rounded),
|
|
|
|
title: Text(
|
2022-07-07 20:40:54 +02:00
|
|
|
backUpOption,
|
2022-02-03 18:06:44 +02:00
|
|
|
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 14),
|
|
|
|
),
|
|
|
|
subtitle: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
2022-07-01 03:08:49 +02:00
|
|
|
if (!isAutoBackup)
|
|
|
|
const Text(
|
2022-07-07 20:40:54 +02:00
|
|
|
"backup_controller_page_desc_backup",
|
2022-07-01 03:08:49 +02:00
|
|
|
style: TextStyle(fontSize: 14),
|
2022-07-07 20:40:54 +02:00
|
|
|
).tr(),
|
2022-04-05 06:37:48 +02:00
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
2022-08-16 01:53:30 +02:00
|
|
|
child: ElevatedButton(
|
2022-04-05 06:37:48 +02:00
|
|
|
onPressed: () {
|
2022-06-25 22:12:47 +02:00
|
|
|
if (isAutoBackup) {
|
|
|
|
ref
|
|
|
|
.read(authenticationProvider.notifier)
|
|
|
|
.setAutoBackup(false);
|
|
|
|
} else {
|
|
|
|
ref
|
|
|
|
.read(authenticationProvider.notifier)
|
|
|
|
.setAutoBackup(true);
|
|
|
|
}
|
2022-04-05 06:37:48 +02:00
|
|
|
},
|
2022-07-13 14:23:48 +02:00
|
|
|
child: Text(
|
|
|
|
backupBtnText,
|
2022-08-16 01:53:30 +02:00
|
|
|
style: const TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 12,
|
|
|
|
),
|
2022-07-13 14:23:48 +02:00
|
|
|
),
|
2022-04-05 06:37:48 +02:00
|
|
|
),
|
2022-02-03 18:06:44 +02:00
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
void showErrorToUser(String msg) {
|
2022-08-18 16:41:59 +02:00
|
|
|
final snackBar = SnackBar(
|
|
|
|
content: Text(
|
|
|
|
msg.tr(),
|
|
|
|
),
|
|
|
|
backgroundColor: Colors.red,
|
|
|
|
);
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
void showBatteryOptimizationInfoToUser() {
|
2022-08-31 15:08:40 +02:00
|
|
|
showDialog<void>(
|
|
|
|
context: context,
|
|
|
|
barrierDismissible: false,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return AlertDialog(
|
|
|
|
title: const Text(
|
|
|
|
'backup_controller_page_background_battery_info_title',
|
|
|
|
).tr(),
|
|
|
|
content: SingleChildScrollView(
|
|
|
|
child: const Text(
|
|
|
|
'backup_controller_page_background_battery_info_message',
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
actions: [
|
2022-10-14 18:15:19 +02:00
|
|
|
ElevatedButton(
|
2022-08-31 15:08:40 +02:00
|
|
|
onPressed: () => launchUrl(
|
2022-09-10 18:46:51 +02:00
|
|
|
Uri.parse('https://dontkillmyapp.com'),
|
|
|
|
mode: LaunchMode.externalApplication,
|
|
|
|
),
|
|
|
|
child: const Text(
|
2022-08-31 15:08:40 +02:00
|
|
|
"backup_controller_page_background_battery_info_link",
|
2022-10-14 18:15:19 +02:00
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 12),
|
2022-08-31 15:08:40 +02:00
|
|
|
).tr(),
|
|
|
|
),
|
2022-09-10 18:46:51 +02:00
|
|
|
ElevatedButton(
|
|
|
|
child: const Text(
|
2022-08-31 15:08:40 +02:00
|
|
|
'backup_controller_page_background_battery_info_ok',
|
2022-09-10 18:46:51 +02:00
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 12),
|
2022-08-31 15:08:40 +02:00
|
|
|
).tr(),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-20 07:59:50 +02:00
|
|
|
Widget buildBackgroundBackupController() {
|
2022-08-18 16:41:59 +02:00
|
|
|
final bool isBackgroundEnabled = backupState.backgroundBackup;
|
|
|
|
final bool isWifiRequired = backupState.backupRequireWifi;
|
|
|
|
final bool isChargingRequired = backupState.backupRequireCharging;
|
|
|
|
final Color activeColor = Theme.of(context).primaryColor;
|
2022-12-08 17:51:36 +02:00
|
|
|
|
|
|
|
String formatBackupDelaySliderValue(double v) {
|
|
|
|
if (v == 0.0) {
|
|
|
|
return 'setting_notifications_notify_seconds'.tr(args: const ['5']);
|
|
|
|
} else if (v == 1.0) {
|
|
|
|
return 'setting_notifications_notify_seconds'.tr(args: const ['30']);
|
|
|
|
} else if (v == 2.0) {
|
|
|
|
return 'setting_notifications_notify_minutes'.tr(args: const ['2']);
|
|
|
|
} else {
|
|
|
|
return 'setting_notifications_notify_minutes'.tr(args: const ['10']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int backupDelayToMilliseconds(double v) {
|
|
|
|
if (v == 0.0) {
|
|
|
|
return 5000;
|
|
|
|
} else if (v == 1.0) {
|
|
|
|
return 30000;
|
|
|
|
} else if (v == 2.0) {
|
|
|
|
return 120000;
|
|
|
|
} else {
|
|
|
|
return 600000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double backupDelayToSliderValue(int ms) {
|
|
|
|
if (ms == 5000) {
|
|
|
|
return 0.0;
|
|
|
|
} else if (ms == 30000) {
|
|
|
|
return 1.0;
|
|
|
|
} else if (ms == 120000) {
|
|
|
|
return 2.0;
|
|
|
|
} else {
|
|
|
|
return 3.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final triggerDelay =
|
|
|
|
useState(backupDelayToSliderValue(backupState.backupTriggerDelay));
|
|
|
|
|
2023-02-20 07:59:50 +02:00
|
|
|
return Column(
|
|
|
|
children: [
|
|
|
|
ListTile(
|
|
|
|
isThreeLine: true,
|
|
|
|
leading: isBackgroundEnabled
|
|
|
|
? Icon(
|
|
|
|
Icons.cloud_sync_rounded,
|
|
|
|
color: activeColor,
|
|
|
|
)
|
|
|
|
: const Icon(Icons.cloud_sync_rounded),
|
|
|
|
title: Text(
|
|
|
|
isBackgroundEnabled
|
|
|
|
? "backup_controller_page_background_is_on"
|
|
|
|
: "backup_controller_page_background_is_off",
|
|
|
|
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 14),
|
|
|
|
).tr(),
|
|
|
|
subtitle: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
if (!isBackgroundEnabled)
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
2023-02-21 05:40:19 +02:00
|
|
|
child: const Text(
|
|
|
|
"backup_controller_page_background_description",
|
|
|
|
).tr(),
|
2023-02-20 07:59:50 +02:00
|
|
|
),
|
|
|
|
if (isBackgroundEnabled && Platform.isAndroid)
|
2023-02-21 05:40:19 +02:00
|
|
|
SwitchListTile.adaptive(
|
|
|
|
title: const Text("backup_controller_page_background_wifi")
|
|
|
|
.tr(),
|
2023-02-20 07:59:50 +02:00
|
|
|
secondary: Icon(
|
|
|
|
Icons.wifi,
|
|
|
|
color: isWifiRequired ? activeColor : null,
|
|
|
|
),
|
|
|
|
dense: true,
|
|
|
|
activeColor: activeColor,
|
|
|
|
value: isWifiRequired,
|
|
|
|
onChanged: hasExclusiveAccess
|
|
|
|
? (isChecked) => ref
|
|
|
|
.read(backupProvider.notifier)
|
|
|
|
.configureBackgroundBackup(
|
|
|
|
requireWifi: isChecked,
|
|
|
|
onError: showErrorToUser,
|
|
|
|
onBatteryInfo: showBatteryOptimizationInfoToUser,
|
|
|
|
)
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
if (isBackgroundEnabled)
|
2023-02-21 05:40:19 +02:00
|
|
|
SwitchListTile.adaptive(
|
|
|
|
title:
|
|
|
|
const Text("backup_controller_page_background_charging")
|
|
|
|
.tr(),
|
2023-02-20 07:59:50 +02:00
|
|
|
secondary: Icon(
|
|
|
|
Icons.charging_station,
|
|
|
|
color: isChargingRequired ? activeColor : null,
|
|
|
|
),
|
|
|
|
dense: true,
|
|
|
|
activeColor: activeColor,
|
|
|
|
value: isChargingRequired,
|
|
|
|
onChanged: hasExclusiveAccess
|
|
|
|
? (isChecked) => ref
|
|
|
|
.read(backupProvider.notifier)
|
|
|
|
.configureBackgroundBackup(
|
|
|
|
requireCharging: isChecked,
|
|
|
|
onError: showErrorToUser,
|
|
|
|
onBatteryInfo: showBatteryOptimizationInfoToUser,
|
|
|
|
)
|
|
|
|
: null,
|
2022-12-08 17:51:36 +02:00
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
if (isBackgroundEnabled && Platform.isAndroid)
|
|
|
|
ListTile(
|
|
|
|
isThreeLine: false,
|
|
|
|
dense: true,
|
|
|
|
enabled: hasExclusiveAccess,
|
|
|
|
title: const Text(
|
|
|
|
'backup_controller_page_background_delay',
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
2022-12-08 17:51:36 +02:00
|
|
|
),
|
2023-02-21 05:40:19 +02:00
|
|
|
).tr(
|
|
|
|
args: [formatBackupDelaySliderValue(triggerDelay.value)],
|
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
subtitle: Slider(
|
|
|
|
value: triggerDelay.value,
|
|
|
|
onChanged: hasExclusiveAccess
|
|
|
|
? (double v) => triggerDelay.value = v
|
|
|
|
: null,
|
|
|
|
onChangeEnd: (double v) => ref
|
|
|
|
.read(backupProvider.notifier)
|
|
|
|
.configureBackgroundBackup(
|
|
|
|
triggerDelay: backupDelayToMilliseconds(v),
|
|
|
|
onError: showErrorToUser,
|
|
|
|
onBatteryInfo: showBatteryOptimizationInfoToUser,
|
|
|
|
),
|
|
|
|
max: 3.0,
|
|
|
|
divisions: 3,
|
|
|
|
label: formatBackupDelaySliderValue(triggerDelay.value),
|
|
|
|
activeColor: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
ElevatedButton(
|
2023-02-21 05:40:19 +02:00
|
|
|
onPressed: () => ref
|
|
|
|
.read(backupProvider.notifier)
|
|
|
|
.configureBackgroundBackup(
|
|
|
|
enabled: !isBackgroundEnabled,
|
|
|
|
onError: showErrorToUser,
|
|
|
|
onBatteryInfo: showBatteryOptimizationInfoToUser,
|
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
child: Text(
|
|
|
|
isBackgroundEnabled
|
|
|
|
? "backup_controller_page_background_turn_off"
|
|
|
|
: "backup_controller_page_background_turn_on",
|
2023-02-21 05:40:19 +02:00
|
|
|
style: const TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 12,
|
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
).tr(),
|
2022-12-08 17:51:36 +02:00
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
],
|
2022-08-18 16:41:59 +02:00
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
),
|
2023-02-23 20:33:53 +02:00
|
|
|
if (isBackgroundEnabled && Platform.isIOS)
|
|
|
|
FutureBuilder(
|
|
|
|
future: ref
|
|
|
|
.read(backgroundServiceProvider)
|
|
|
|
.getIOSBackgroundAppRefreshEnabled(),
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
final enabled = snapshot.data as bool?;
|
|
|
|
// If it's not enabled, show them some kind of alert that says
|
|
|
|
// background refresh is not enabled
|
|
|
|
if (enabled != null && !enabled) {
|
|
|
|
|
|
|
|
}
|
|
|
|
// If it's enabled, no need to bother them
|
|
|
|
return Container();
|
|
|
|
},
|
2023-02-20 07:59:50 +02:00
|
|
|
),
|
2023-02-23 20:33:53 +02:00
|
|
|
if (isBackgroundEnabled && settings != null)
|
|
|
|
IosDebugInfoTile(
|
|
|
|
settings: settings,
|
|
|
|
),
|
2023-02-20 07:59:50 +02:00
|
|
|
],
|
2022-08-18 16:41:59 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-23 20:33:53 +02:00
|
|
|
Widget buildBackgroundAppRefreshWarning() {
|
|
|
|
return ListTile(
|
|
|
|
isThreeLine: true,
|
|
|
|
leading: const Icon(Icons.task_outlined,),
|
|
|
|
title: const Text(
|
|
|
|
'backup_controller_page_background_app_refresh_disabled_title',
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 14,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
subtitle: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
|
|
child: const Text(
|
|
|
|
'backup_controller_page_background_app_refresh_disabled_content',
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
ElevatedButton(
|
|
|
|
onPressed: () => openAppSettings(),
|
|
|
|
child: const Text(
|
|
|
|
'backup_controller_page_background_app_refresh_enable_button_text',
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 12,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
Widget buildSelectedAlbumName() {
|
2022-07-07 20:40:54 +02:00
|
|
|
var text = "backup_controller_page_backup_selected".tr();
|
2022-05-06 14:22:23 +02:00
|
|
|
var albums = ref.watch(backupProvider).selectedBackupAlbums;
|
|
|
|
|
|
|
|
if (albums.isNotEmpty) {
|
|
|
|
for (var album in albums) {
|
|
|
|
if (album.name == "Recent" || album.name == "Recents") {
|
2022-07-07 20:40:54 +02:00
|
|
|
text += "${album.name} (${'backup_all'.tr()}), ";
|
2022-05-06 14:22:23 +02:00
|
|
|
} else {
|
|
|
|
text += "${album.name}, ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: Text(
|
|
|
|
text.trim().substring(0, text.length - 2),
|
2022-06-22 07:23:35 +02:00
|
|
|
style: TextStyle(
|
2022-07-13 14:23:48 +02:00
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
2022-05-06 14:22:23 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: Text(
|
2022-07-07 20:40:54 +02:00
|
|
|
"backup_controller_page_none_selected".tr(),
|
2022-06-22 07:23:35 +02:00
|
|
|
style: TextStyle(
|
2022-07-13 14:23:48 +02:00
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
2022-05-06 14:22:23 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
Widget buildExcludedAlbumName() {
|
2022-07-07 20:40:54 +02:00
|
|
|
var text = "backup_controller_page_excluded".tr();
|
2022-05-06 14:22:23 +02:00
|
|
|
var albums = ref.watch(backupProvider).excludedBackupAlbums;
|
|
|
|
|
|
|
|
if (albums.isNotEmpty) {
|
|
|
|
for (var album in albums) {
|
|
|
|
text += "${album.name}, ";
|
|
|
|
}
|
|
|
|
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: Text(
|
|
|
|
text.trim().substring(0, text.length - 2),
|
2022-06-22 07:23:35 +02:00
|
|
|
style: TextStyle(
|
2022-07-13 14:23:48 +02:00
|
|
|
color: Colors.red[300],
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
2022-05-06 14:22:23 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
2022-07-01 03:08:49 +02:00
|
|
|
return const SizedBox();
|
2022-05-06 14:22:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-21 14:13:14 +02:00
|
|
|
buildFolderSelectionTile() {
|
2022-05-06 14:22:23 +02:00
|
|
|
return Card(
|
|
|
|
shape: RoundedRectangleBorder(
|
2023-02-13 07:05:31 +02:00
|
|
|
borderRadius: BorderRadius.circular(20),
|
|
|
|
side: BorderSide(
|
|
|
|
color: isDarkMode
|
2023-02-21 05:40:19 +02:00
|
|
|
? const Color.fromARGB(255, 56, 56, 56)
|
2023-02-13 07:05:31 +02:00
|
|
|
: Colors.black12,
|
2022-05-06 14:22:23 +02:00
|
|
|
width: 1,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
elevation: 0,
|
|
|
|
borderOnForeground: false,
|
|
|
|
child: ListTile(
|
|
|
|
minVerticalPadding: 15,
|
2022-07-13 14:23:48 +02:00
|
|
|
title: const Text(
|
|
|
|
"backup_controller_page_albums",
|
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20),
|
|
|
|
).tr(),
|
2022-05-06 14:22:23 +02:00
|
|
|
subtitle: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
const Text(
|
2022-07-07 20:40:54 +02:00
|
|
|
"backup_controller_page_to_backup",
|
2022-08-16 01:53:30 +02:00
|
|
|
style: TextStyle(fontSize: 12),
|
2022-07-07 20:40:54 +02:00
|
|
|
).tr(),
|
2022-11-21 14:13:14 +02:00
|
|
|
buildSelectedAlbumName(),
|
|
|
|
buildExcludedAlbumName()
|
2022-05-06 14:22:23 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2022-08-16 01:53:30 +02:00
|
|
|
trailing: ElevatedButton(
|
2022-08-18 16:41:59 +02:00
|
|
|
onPressed: hasExclusiveAccess
|
|
|
|
? () {
|
|
|
|
AutoRouter.of(context)
|
|
|
|
.push(const BackupAlbumSelectionRoute());
|
|
|
|
}
|
|
|
|
: null,
|
2022-08-16 01:53:30 +02:00
|
|
|
child: const Text(
|
|
|
|
"backup_controller_page_select",
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 12,
|
2022-05-06 14:22:23 +02:00
|
|
|
),
|
2022-08-16 01:53:30 +02:00
|
|
|
).tr(),
|
2022-05-06 14:22:23 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-06 23:12:55 +02:00
|
|
|
void startBackup() {
|
|
|
|
ref.watch(errorBackupListProvider.notifier).empty();
|
2022-08-18 16:41:59 +02:00
|
|
|
if (ref.watch(backupProvider).backupProgress !=
|
|
|
|
BackUpProgressEnum.inBackground) {
|
|
|
|
ref.watch(backupProvider.notifier).startBackupProcess();
|
|
|
|
}
|
2022-07-06 23:12:55 +02:00
|
|
|
}
|
|
|
|
|
2023-02-13 07:05:31 +02:00
|
|
|
Widget buildBackupButton() {
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.only(
|
|
|
|
top: 24,
|
|
|
|
),
|
|
|
|
child: Container(
|
|
|
|
child: backupState.backupProgress == BackUpProgressEnum.inProgress
|
|
|
|
? ElevatedButton(
|
|
|
|
style: ElevatedButton.styleFrom(
|
|
|
|
foregroundColor: Colors.grey[50],
|
|
|
|
backgroundColor: Colors.red[300],
|
|
|
|
// padding: const EdgeInsets.all(14),
|
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
ref.read(backupProvider.notifier).cancelBackup();
|
|
|
|
},
|
|
|
|
child: const Text(
|
|
|
|
"backup_controller_page_cancel",
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
)
|
|
|
|
: ElevatedButton(
|
|
|
|
onPressed: shouldBackup ? startBackup : null,
|
|
|
|
child: const Text(
|
|
|
|
"backup_controller_page_start_backup",
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
buildBackgroundBackupInfo() {
|
|
|
|
return hasExclusiveAccess
|
|
|
|
? const SizedBox.shrink()
|
|
|
|
: Card(
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(20), // if you need this
|
|
|
|
side: BorderSide(
|
|
|
|
color: isDarkMode
|
2023-02-21 05:40:19 +02:00
|
|
|
? const Color.fromARGB(255, 56, 56, 56)
|
2023-02-13 07:05:31 +02:00
|
|
|
: Colors.black12,
|
|
|
|
width: 1,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
elevation: 0,
|
|
|
|
borderOnForeground: false,
|
|
|
|
child: const Padding(
|
|
|
|
padding: EdgeInsets.all(16.0),
|
|
|
|
child: Text(
|
|
|
|
"Background backup is currently running, some actions are disabled",
|
|
|
|
style: TextStyle(fontWeight: FontWeight.bold),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-02-03 18:06:44 +02:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2022-05-06 14:22:23 +02:00
|
|
|
elevation: 0,
|
2022-02-03 18:06:44 +02:00
|
|
|
title: const Text(
|
2022-07-07 20:40:54 +02:00
|
|
|
"backup_controller_page_backup",
|
2022-05-06 14:22:23 +02:00
|
|
|
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
|
2022-07-07 20:40:54 +02:00
|
|
|
).tr(),
|
2022-02-03 18:06:44 +02:00
|
|
|
leading: IconButton(
|
2022-07-13 14:23:48 +02:00
|
|
|
onPressed: () {
|
|
|
|
ref.watch(websocketProvider.notifier).listenUploadEvent();
|
|
|
|
AutoRouter.of(context).pop(true);
|
|
|
|
},
|
|
|
|
splashRadius: 24,
|
|
|
|
icon: const Icon(
|
|
|
|
Icons.arrow_back_ios_rounded,
|
|
|
|
),
|
|
|
|
),
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
|
|
|
body: Padding(
|
2022-07-06 23:12:55 +02:00
|
|
|
padding: const EdgeInsets.only(left: 16.0, right: 16, bottom: 32),
|
2022-02-03 18:06:44 +02:00
|
|
|
child: ListView(
|
|
|
|
// crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
2022-07-07 20:40:54 +02:00
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
child: const Text(
|
|
|
|
"backup_controller_page_info",
|
2022-02-03 18:06:44 +02:00
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 16),
|
2022-07-07 20:40:54 +02:00
|
|
|
).tr(),
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
2023-02-13 07:05:31 +02:00
|
|
|
buildBackgroundBackupInfo(),
|
2022-11-21 14:13:14 +02:00
|
|
|
buildFolderSelectionTile(),
|
2022-02-03 18:06:44 +02:00
|
|
|
BackupInfoCard(
|
2022-07-07 20:40:54 +02:00
|
|
|
title: "backup_controller_page_total".tr(),
|
|
|
|
subtitle: "backup_controller_page_total_sub".tr(),
|
2023-02-21 05:43:39 +02:00
|
|
|
info: ref.watch(backupProvider).availableAlbums.isEmpty
|
|
|
|
? "..."
|
|
|
|
: "${backupState.allUniqueAssets.length}",
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
|
|
|
BackupInfoCard(
|
2022-07-07 20:40:54 +02:00
|
|
|
title: "backup_controller_page_backup".tr(),
|
|
|
|
subtitle: "backup_controller_page_backup_sub".tr(),
|
2023-02-21 05:43:39 +02:00
|
|
|
info: ref.watch(backupProvider).availableAlbums.isEmpty
|
|
|
|
? "..."
|
|
|
|
: "${backupState.selectedAlbumsBackupAssetsIds.length}",
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
|
|
|
BackupInfoCard(
|
2022-07-07 20:40:54 +02:00
|
|
|
title: "backup_controller_page_remainder".tr(),
|
|
|
|
subtitle: "backup_controller_page_remainder_sub".tr(),
|
2023-02-21 05:43:39 +02:00
|
|
|
info: ref.watch(backupProvider).availableAlbums.isEmpty
|
|
|
|
? "..."
|
|
|
|
: "${backupState.allUniqueAssets.length - backupState.selectedAlbumsBackupAssetsIds.length}",
|
2022-02-03 18:06:44 +02:00
|
|
|
),
|
|
|
|
const Divider(),
|
2022-11-21 14:13:14 +02:00
|
|
|
buildAutoBackupController(),
|
2023-02-20 07:59:50 +02:00
|
|
|
const Divider(),
|
2023-02-23 20:33:53 +02:00
|
|
|
AnimatedSwitcher(
|
|
|
|
duration: const Duration(milliseconds: 500),
|
|
|
|
child: Platform.isIOS
|
|
|
|
? (
|
|
|
|
appRefreshDisabled
|
|
|
|
? buildBackgroundAppRefreshWarning()
|
|
|
|
: buildBackgroundBackupController()
|
|
|
|
) : buildBackgroundBackupController(),
|
|
|
|
),
|
2022-02-03 18:06:44 +02:00
|
|
|
const Divider(),
|
2022-11-21 14:13:14 +02:00
|
|
|
buildStorageInformation(),
|
2022-02-03 18:06:44 +02:00
|
|
|
const Divider(),
|
2023-01-24 01:10:21 +02:00
|
|
|
const CurrentUploadingAssetInfoBox(),
|
2023-02-13 07:05:31 +02:00
|
|
|
buildBackupButton()
|
2022-02-03 18:06:44 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2023-02-23 20:33:53 +02:00
|
|
|
|
|
|
|
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|