nc-photos/app/lib/use_case/ls.dart
2023-08-26 01:34:07 +08:00

41 lines
1.1 KiB
Dart

import 'package:nc_photos/account.dart';
import 'package:nc_photos/entity/file.dart';
import 'package:np_string/np_string.dart';
class Ls {
Ls(this.fileRepo);
/// List all files under a dir
///
/// The dir itself is not included in the returned list
Future<List<File>> call(Account account, File dir) async {
final products = await fileRepo.list(account, dir);
// filter out root file
final trimmedRootPath = dir.path.trimAny("/");
return products
.where((element) => element.path.trimAny("/") != trimmedRootPath)
.toList();
}
final FileRepo fileRepo;
}
class LsMinimal implements Ls {
const LsMinimal(this.fileRepo);
/// List all files under a dir with minimal data
///
/// The dir itself is not included in the returned list
@override
Future<List<File>> call(Account account, File dir) async {
final products = await fileRepo.listMinimal(account, dir);
// filter out root file
final trimmedRootPath = dir.path.trimAny("/");
return products
.where((element) => element.path.trimAny("/") != trimmedRootPath)
.toList();
}
@override
final FileRepo fileRepo;
}