2023-08-06 04:40:50 +02:00
|
|
|
import 'package:cancellation_token_http/http.dart';
|
|
|
|
import 'package:immich_mobile/modules/backup/models/current_upload_asset.model.dart';
|
|
|
|
|
|
|
|
class ManualUploadState {
|
|
|
|
final CancellationToken cancelToken;
|
|
|
|
|
|
|
|
// Current Backup Asset
|
|
|
|
final CurrentUploadAsset currentUploadAsset;
|
2023-08-12 23:02:58 +02:00
|
|
|
final int currentAssetIndex;
|
2023-08-06 04:40:50 +02:00
|
|
|
|
2023-08-12 23:02:58 +02:00
|
|
|
final bool showDetailedNotification;
|
|
|
|
|
|
|
|
/// Manual Upload Stats
|
|
|
|
final int totalAssetsToUpload;
|
|
|
|
final int successfulUploads;
|
|
|
|
final double progressInPercentage;
|
2023-08-06 04:40:50 +02:00
|
|
|
|
|
|
|
const ManualUploadState({
|
|
|
|
required this.progressInPercentage,
|
|
|
|
required this.cancelToken,
|
|
|
|
required this.currentUploadAsset,
|
2023-08-12 23:02:58 +02:00
|
|
|
required this.totalAssetsToUpload,
|
|
|
|
required this.currentAssetIndex,
|
|
|
|
required this.successfulUploads,
|
|
|
|
required this.showDetailedNotification,
|
2023-08-06 04:40:50 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
ManualUploadState copyWith({
|
|
|
|
double? progressInPercentage,
|
|
|
|
CancellationToken? cancelToken,
|
|
|
|
CurrentUploadAsset? currentUploadAsset,
|
2023-08-12 23:02:58 +02:00
|
|
|
int? totalAssetsToUpload,
|
|
|
|
int? successfulUploads,
|
|
|
|
int? currentAssetIndex,
|
|
|
|
bool? showDetailedNotification,
|
2023-08-06 04:40:50 +02:00
|
|
|
}) {
|
|
|
|
return ManualUploadState(
|
|
|
|
progressInPercentage: progressInPercentage ?? this.progressInPercentage,
|
|
|
|
cancelToken: cancelToken ?? this.cancelToken,
|
|
|
|
currentUploadAsset: currentUploadAsset ?? this.currentUploadAsset,
|
2023-08-12 23:02:58 +02:00
|
|
|
totalAssetsToUpload: totalAssetsToUpload ?? this.totalAssetsToUpload,
|
|
|
|
currentAssetIndex: currentAssetIndex ?? this.currentAssetIndex,
|
|
|
|
successfulUploads: successfulUploads ?? this.successfulUploads,
|
|
|
|
showDetailedNotification:
|
|
|
|
showDetailedNotification ?? this.showDetailedNotification,
|
2023-08-06 04:40:50 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() {
|
2023-08-12 23:02:58 +02:00
|
|
|
return 'ManualUploadState(progressInPercentage: $progressInPercentage, cancelToken: $cancelToken, currentUploadAsset: $currentUploadAsset, totalAssetsToUpload: $totalAssetsToUpload, successfulUploads: $successfulUploads, currentAssetIndex: $currentAssetIndex, showDetailedNotification: $showDetailedNotification)';
|
2023-08-06 04:40:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool operator ==(Object other) {
|
|
|
|
if (identical(this, other)) return true;
|
|
|
|
|
|
|
|
return other is ManualUploadState &&
|
|
|
|
other.progressInPercentage == progressInPercentage &&
|
|
|
|
other.cancelToken == cancelToken &&
|
|
|
|
other.currentUploadAsset == currentUploadAsset &&
|
2023-08-12 23:02:58 +02:00
|
|
|
other.totalAssetsToUpload == totalAssetsToUpload &&
|
|
|
|
other.currentAssetIndex == currentAssetIndex &&
|
|
|
|
other.successfulUploads == successfulUploads &&
|
|
|
|
other.showDetailedNotification == showDetailedNotification;
|
2023-08-06 04:40:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode {
|
|
|
|
return progressInPercentage.hashCode ^
|
|
|
|
cancelToken.hashCode ^
|
|
|
|
currentUploadAsset.hashCode ^
|
2023-08-12 23:02:58 +02:00
|
|
|
totalAssetsToUpload.hashCode ^
|
|
|
|
currentAssetIndex.hashCode ^
|
|
|
|
successfulUploads.hashCode ^
|
|
|
|
showDetailedNotification.hashCode;
|
2023-08-06 04:40:50 +02:00
|
|
|
}
|
|
|
|
}
|