import 'package:logging/logging.dart'; import 'package:nc_photos/account.dart'; import 'package:nc_photos/app_localizations.dart'; import 'package:nc_photos/debug_util.dart'; import 'package:nc_photos/di_container.dart'; import 'package:nc_photos/entity/file.dart'; import 'package:nc_photos/entity/file_descriptor.dart'; import 'package:nc_photos/notified_action.dart'; import 'package:nc_photos/use_case/inflate_file_descriptor.dart'; import 'package:nc_photos/use_case/update_property.dart'; import 'package:np_codegen/np_codegen.dart'; part 'archive_selection_handler.g.dart'; @npLog class ArchiveSelectionHandler { ArchiveSelectionHandler(this._c) : assert(require(_c)), assert(InflateFileDescriptor.require(_c)); static bool require(DiContainer c) => DiContainer.has(c, DiType.fileRepo); /// Archive [selectedFiles] and return the archived count Future call({ required Account account, required List selection, bool shouldShowProcessingText = true, }) async { final selectedFiles = await InflateFileDescriptor(_c)(account, selection); return NotifiedListAction( list: selectedFiles, action: (file) async { await UpdateProperty(_c.fileRepo).updateIsArchived(account, file, true); }, processingText: shouldShowProcessingText ? L10n.global() .archiveSelectedProcessingNotification(selectedFiles.length) : null, successText: L10n.global().archiveSelectedSuccessNotification, getFailureText: (failures) => L10n.global().archiveSelectedFailureNotification(failures.length), onActionError: (file, e, stackTrace) { _log.shout( "[call] Failed while archiving file: ${logFilename(file.path)}", e, stackTrace); }, )(); } final DiContainer _c; }