Optimize HiveCacheClient
This commit is contained in:
@@ -1,128 +1,8 @@
|
||||
import 'package:core/utils/app_logger.dart';
|
||||
import 'package:hive/hive.dart';
|
||||
import 'package:tmail_ui_user/features/caching/config/hive_cache_client.dart';
|
||||
import 'package:tmail_ui_user/features/login/data/model/account_cache.dart';
|
||||
|
||||
class AccountCacheClient extends HiveCacheClient<AccountCache> {
|
||||
|
||||
@override
|
||||
String get tableName => "AccountCache";
|
||||
|
||||
@override
|
||||
Future<void> clearAllData() {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.clear();
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> deleteItem(String key) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.delete(key);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> deleteMultipleItem(List<String> listKey) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.deleteAll(listKey);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<List<AccountCache>> getAll() {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.values.toList();
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<AccountCache?> getItem(String key) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.get(key);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> insertItem(String key, AccountCache newObject) {
|
||||
log('AccountCacheClient::insertItem(): $key: $newObject');
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.put(key, newObject);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> insertMultipleItem(Map<String, AccountCache> mapObject) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.putAll(mapObject);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<bool> isExistItem(String key) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.containsKey(key);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<bool> isExistTable() {
|
||||
return Future.sync(() async {
|
||||
return Hive.boxExists(tableName);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<Box<AccountCache>> openBox() async {
|
||||
if (Hive.isBoxOpen(tableName)) {
|
||||
return Hive.box<AccountCache>(tableName);
|
||||
}
|
||||
return Hive.openBox<AccountCache>(tableName);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> updateItem(String key, AccountCache newObject) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.put(key, newObject);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> updateMultipleItem(Map<String, AccountCache> mapObject) {
|
||||
return Future.sync(() async {
|
||||
final boxAccount = await openBox();
|
||||
return boxAccount.putAll(mapObject);
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
String get tableName => 'AccountCache';
|
||||
}
|
||||
Reference in New Issue
Block a user