TF-1115 Implement catch exception for IdentityDataSource

This commit is contained in:
dab246
2022-10-28 12:44:06 +07:00
committed by Dat H. Pham
parent b4833c4826
commit d775738b70
2 changed files with 11 additions and 6 deletions
@@ -6,12 +6,14 @@ import 'package:tmail_ui_user/features/manage_account/data/network/identity_api.
import 'package:tmail_ui_user/features/manage_account/domain/model/create_new_identity_request.dart';
import 'package:tmail_ui_user/features/manage_account/domain/model/edit_identity_request.dart';
import 'package:tmail_ui_user/features/manage_account/domain/model/identities_response.dart';
import 'package:tmail_ui_user/main/exceptions/exception_thrower.dart';
class IdentityDataSourceImpl extends IdentityDataSource {
final IdentityAPI _identityAPI;
final ExceptionThrower _exceptionThrower;
IdentityDataSourceImpl(this._identityAPI);
IdentityDataSourceImpl(this._identityAPI, this._exceptionThrower);
@override
Future<IdentitiesResponse> getAllIdentities(AccountId accountId,
@@ -19,7 +21,7 @@ class IdentityDataSourceImpl extends IdentityDataSource {
return Future.sync(() async {
return await _identityAPI.getAllIdentities(accountId, properties: properties);
}).catchError((error) {
throw error;
_exceptionThrower.throwException(error);
});
}
@@ -28,7 +30,7 @@ class IdentityDataSourceImpl extends IdentityDataSource {
return Future.sync(() async {
return await _identityAPI.createNewIdentity(accountId, identityRequest);
}).catchError((error) {
throw error;
_exceptionThrower.throwException(error);
});
}
@@ -37,7 +39,7 @@ class IdentityDataSourceImpl extends IdentityDataSource {
return Future.sync(() async {
return await _identityAPI.deleteIdentity(accountId, identityId);
}).catchError((error) {
throw error;
_exceptionThrower.throwException(error);
});
}
@@ -46,7 +48,7 @@ class IdentityDataSourceImpl extends IdentityDataSource {
return Future.sync(() async {
return await _identityAPI.editIdentity(accountId, editIdentityRequest);
}).catchError((error) {
throw error;
_exceptionThrower.throwException(error);
});
}
}
@@ -9,6 +9,7 @@ import 'package:tmail_ui_user/features/manage_account/domain/usecases/create_new
import 'package:tmail_ui_user/features/manage_account/domain/usecases/delete_identity_interactor.dart';
import 'package:tmail_ui_user/features/manage_account/domain/usecases/edit_identity_interactor.dart';
import 'package:tmail_ui_user/features/manage_account/domain/usecases/get_all_identities_interactor.dart';
import 'package:tmail_ui_user/main/exceptions/remote_exception_thrower.dart';
class IdentityInteractorsBindings extends InteractorsBindings {
@@ -19,7 +20,9 @@ class IdentityInteractorsBindings extends InteractorsBindings {
@override
void bindingsDataSourceImpl() {
Get.lazyPut(() => IdentityDataSourceImpl(Get.find<IdentityAPI>()));
Get.lazyPut(() => IdentityDataSourceImpl(
Get.find<IdentityAPI>(),
Get.find<RemoteExceptionThrower>()));
}
@override