mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 05:16:47 +01:00
87fea29e32
* first run of getting background sync working in iOS * got background sync calling into flutter * added background task * added necessary sync files * fixed some names and added more implementations * got as far as Hive.initFlutter * brute force got to await Hive.initFlutter * lots of print statements to figure out where execution is failing, and its failing at the root asset bundle in the localization.dart service * first time working, got plugins registered * removed broken cleanup code * refactored * linters * now can pass user settings * background service plugin uses app background processing instead of fetch * renamed backgroundFetch to backgroundProcessing to make it clearer * don't use max delay * adds fetch back in * fixes require charging default values and backup controller page * fixes background fetch * fixes ios not importing photos * guarded path provider ios * lint * adds max tries for heartbeat to work in iOS * fail after seconds * timeout instead of fail after seconds * removes release lock from system stop * restores checkLockReleasedWithHeartbeat to Future<void> * removes max tries from acquire lock * fixes lock timeout with iOS * restored for loop * adds comments, made the AppRefresh task only run while not requiring network or charge * fixed compile issue * now both are registered and added better comments. also added ability for task to cancel itself * added the podfile and pubspec * added backup diagnostics to IOS and removed iOS ignored backup options and fixed network connectivity always required * Added Alex's dev team * styled debug list item, fixed refresh task not set bug, fixed enable / disable background service on platform channel --------- Co-authored-by: Marty Fuhry <marty@fuhry.farm> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
67 lines
2.4 KiB
Dart
67 lines
2.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/backup/background_service/background.service.dart';
|
|
import 'package:intl/intl.dart';
|
|
|
|
/// This is a simple debug widget which should be removed later on when we are
|
|
/// more confident about background sync
|
|
class IosDebugInfoTile extends HookConsumerWidget {
|
|
const IosDebugInfoTile({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final futures = [
|
|
ref.read(backgroundServiceProvider)
|
|
.getIOSBackupLastRun(IosBackgroundTask.fetch),
|
|
ref.read(backgroundServiceProvider)
|
|
.getIOSBackupLastRun(IosBackgroundTask.processing),
|
|
ref.read(backgroundServiceProvider)
|
|
.getIOSBackupNumberOfProcesses(),
|
|
];
|
|
return FutureBuilder<List<dynamic>>(
|
|
future: Future.wait(futures),
|
|
builder: (context, snapshot) {
|
|
String? title;
|
|
String? subtitle;
|
|
if (snapshot.hasData) {
|
|
final results = snapshot.data as List<dynamic>;
|
|
final fetch = results[0] as DateTime?;
|
|
final processing = results[1] as DateTime?;
|
|
final processes = results[2] as int;
|
|
|
|
final processOrProcesses = processes == 1 ? 'process' : 'processes';
|
|
final numberOrZero = processes == 0 ? 'No' : processes.toString();
|
|
title = '$numberOrZero background $processOrProcesses queued';
|
|
|
|
final df = DateFormat.yMd().add_jm();
|
|
if (fetch == null && processing == null) {
|
|
subtitle = 'No background sync job has run yet';
|
|
} else if (fetch != null && processing == null) {
|
|
subtitle = 'Fetch ran ${df.format(fetch)}';
|
|
} else if (processing != null && fetch == null) {
|
|
subtitle = 'Processing ran ${df.format(processing)}';
|
|
} else {
|
|
final fetchOrProcessing = fetch!.isAfter(processing!)
|
|
? fetch
|
|
: processing;
|
|
subtitle = 'Last sync ${df.format(fetchOrProcessing)}';
|
|
}
|
|
}
|
|
|
|
return AnimatedSwitcher(
|
|
duration: const Duration(milliseconds: 200),
|
|
child: ListTile(
|
|
key: ValueKey(title),
|
|
title: Text(title ?? ''),
|
|
subtitle: Text(subtitle ?? ''),
|
|
leading: Icon(
|
|
Icons.bug_report,
|
|
color: Theme.of(context).primaryColor,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|