mirror of
https://github.com/immich-app/immich.git
synced 2025-12-10 09:33:58 +09:00
feat(mobile): load search result assets from local DB (#5971)
This commit is contained in:
committed by
GitHub
parent
c0ebc943d2
commit
733fa28aa2
@@ -472,6 +472,8 @@ extension AssetsHelper on IsarCollection<Asset> {
|
||||
ids.isEmpty ? Future.value([]) : remote(ids).findAll();
|
||||
Future<List<Asset>> getAllByLocalId(Iterable<String> ids) =>
|
||||
ids.isEmpty ? Future.value([]) : local(ids).findAll();
|
||||
Future<Asset?> getByRemoteId(String id) =>
|
||||
where().remoteIdEqualTo(id).findFirst();
|
||||
|
||||
QueryBuilder<Asset, Asset, QAfterWhereClause> remote(Iterable<String> ids) =>
|
||||
where().anyOf(ids, (q, String e) => q.remoteIdEqualTo(e));
|
||||
|
||||
Reference in New Issue
Block a user