TF-1068 implement data layer save recent login username & get all login username
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
import 'package:tmail_ui_user/features/caching/recent_login_username_cache_client.dart';
|
||||
import 'package:tmail_ui_user/features/login/data/datasource/login_username_datasource.dart';
|
||||
import 'package:tmail_ui_user/features/login/data/model/recent_login_username_cache.dart';
|
||||
import 'package:tmail_ui_user/features/login/domain/extensions/list_recent_login_username_extension.dart';
|
||||
import 'package:tmail_ui_user/features/login/domain/model/recent_login_username.dart';
|
||||
|
||||
class LoginUsernameDataSourceImpl implements LoginUsernameDataSource {
|
||||
final RecentLoginUsernameCacheClient _recentLoginUsernameCacheClient;
|
||||
|
||||
LoginUsernameDataSourceImpl(this._recentLoginUsernameCacheClient);
|
||||
|
||||
@override
|
||||
Future<List<RecentLoginUsername>> getAllRecentLoginUsernamesLatest({int? limit, String? pattern}) {
|
||||
return Future.sync(() async {
|
||||
final listRecentUsernameCache = await _recentLoginUsernameCacheClient.getAll();
|
||||
final listValidRecentUsername = listRecentUsernameCache
|
||||
.where((recentCache) => _filterRecentLoginUsernameCache(recentCache, pattern))
|
||||
.map((recentCache) => recentCache.toRecentLoginUsername())
|
||||
.toList();
|
||||
|
||||
listValidRecentUsername.sortByCreationDate();
|
||||
|
||||
final newLimit = limit ?? 5;
|
||||
|
||||
return listValidRecentUsername.length > newLimit
|
||||
? listValidRecentUsername.sublist(0, newLimit)
|
||||
: listValidRecentUsername;
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> saveLoginUsername(RecentLoginUsername recentLoginUsername) {
|
||||
return Future.sync(() async {
|
||||
if (await _recentLoginUsernameCacheClient
|
||||
.isExistItem(recentLoginUsername.username)) {
|
||||
await _recentLoginUsernameCacheClient.updateItem(recentLoginUsername.username,
|
||||
recentLoginUsername.toRecentLoginUsernameCache());
|
||||
} else {
|
||||
await _recentLoginUsernameCacheClient.insertItem(recentLoginUsername.username,
|
||||
recentLoginUsername.toRecentLoginUsernameCache());
|
||||
}
|
||||
}).catchError((error) {
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
||||
bool _filterRecentLoginUsernameCache(
|
||||
RecentLoginUsernameCache recentLoginUsernameCache,
|
||||
String? pattern
|
||||
) {
|
||||
if (pattern == null || pattern.trim().isEmpty) {
|
||||
return true;
|
||||
} else {
|
||||
return recentLoginUsernameCache.matchUsername(pattern);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:hive/hive.dart';
|
||||
import 'package:jmap_dart_client/jmap/core/extensions/date_time_extension.dart';
|
||||
import 'package:tmail_ui_user/features/caching/utils/caching_constants.dart';
|
||||
import 'package:tmail_ui_user/features/login/domain/model/recent_login_username.dart';
|
||||
|
||||
part 'recent_login_username_cache.g.dart';
|
||||
|
||||
@HiveType(typeId: CachingConstants.RECENT_LOGIN_USERNAME_HIVE_CACHE_IDENTITY)
|
||||
class RecentLoginUsernameCache extends HiveObject with EquatableMixin {
|
||||
|
||||
@HiveField(0)
|
||||
final String username;
|
||||
|
||||
@HiveField(1)
|
||||
final DateTime creationDate;
|
||||
|
||||
RecentLoginUsernameCache(this.username, this.creationDate);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [username, creationDate];
|
||||
}
|
||||
|
||||
extension RecentLoginUsernameExtension on RecentLoginUsername {
|
||||
RecentLoginUsernameCache toRecentLoginUsernameCache() {
|
||||
return RecentLoginUsernameCache(username, creationDate);
|
||||
}
|
||||
}
|
||||
|
||||
extension RecentLoginUsernameCacheExtension on RecentLoginUsernameCache {
|
||||
RecentLoginUsername toRecentLoginUsername() {
|
||||
return RecentLoginUsername(username, creationDate);
|
||||
}
|
||||
|
||||
bool matchUsername(String pattern) {
|
||||
return username.toLowerCase().contains(pattern);
|
||||
}
|
||||
}
|
||||
|
||||
extension ListRecentLoginUsernameCacheExtension on List<RecentLoginUsernameCache> {
|
||||
void sortByCreationDate() {
|
||||
sort((recentUsername1, recentUsername2) {
|
||||
return recentUsername1.creationDate.compareToSort(recentUsername2.creationDate, false);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
import 'package:tmail_ui_user/features/login/data/datasource/login_username_datasource.dart';
|
||||
import 'package:tmail_ui_user/features/login/domain/model/recent_login_username.dart';
|
||||
import 'package:tmail_ui_user/features/login/domain/repository/login_username_repository.dart';
|
||||
|
||||
class LoginUsernameRepositoryImpl implements LoginUsernameRepository {
|
||||
final LoginUsernameDataSource loginUsernameDatasource;
|
||||
|
||||
LoginUsernameRepositoryImpl(this.loginUsernameDatasource);
|
||||
|
||||
@override
|
||||
Future<List<RecentLoginUsername>> getAllRecentLoginUsernameLatest({int? limit, String? pattern}) {
|
||||
return loginUsernameDatasource.getAllRecentLoginUsernamesLatest(limit: limit, pattern: pattern);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> saveLoginUsername(RecentLoginUsername recentLoginUsername) {
|
||||
return loginUsernameDatasource.saveLoginUsername(recentLoginUsername);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user