feat(mobile): beta sync stats page (#19950)

* show beta sync stats

* show status next to jobs

* use drift devtools reset database impl

* dcm fixes

* fix: hash count

* styling

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
Brandon Wees
2025-07-22 11:24:32 -05:00
committed by GitHub
parent 97daf42fd5
commit 2efca67217
20 changed files with 742 additions and 44 deletions

View File

@@ -76,4 +76,15 @@ class AssetService {
Future<List<(String, String)>> getPlaces() {
return _remoteAssetRepository.getPlaces();
}
Future<(int local, int remote)> getAssetCounts() async {
return (
await _localAssetRepository.getCount(),
await _remoteAssetRepository.getCount()
);
}
Future<int> getLocalHashedCount() {
return _localAssetRepository.getHashedCount();
}
}