mirror of
https://github.com/immich-app/immich
synced 2025-06-08 21:48:04 +00:00

* refactor: user entity * fix: add users to album & user profile url * chore: rebase fixes * generate files * fix(mobile): timeline not reset on login * fix: test stub * refactor: rename user model (#16813) * refactor: rename user model * simplify import --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex <alex.tran1502@gmail.com> * chore: generate files * fix: use getAllAccessible instead of getAll --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
71 lines
2.1 KiB
Dart
71 lines
2.1 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/domain/models/store.model.dart';
|
|
import 'package:immich_mobile/domain/models/user.model.dart';
|
|
import 'package:immich_mobile/entities/store.entity.dart';
|
|
import 'package:immich_mobile/infrastructure/utils/user.converter.dart';
|
|
import 'package:immich_mobile/providers/api.provider.dart';
|
|
import 'package:immich_mobile/services/api.service.dart';
|
|
import 'package:immich_mobile/services/timeline.service.dart';
|
|
|
|
class CurrentUserProvider extends StateNotifier<UserDto?> {
|
|
CurrentUserProvider(this._apiService) : super(null) {
|
|
state = Store.tryGet(StoreKey.currentUser);
|
|
streamSub =
|
|
Store.watch(StoreKey.currentUser).listen((user) => state = user);
|
|
}
|
|
|
|
final ApiService _apiService;
|
|
late final StreamSubscription<UserDto?> streamSub;
|
|
|
|
refresh() async {
|
|
try {
|
|
final user = await _apiService.usersApi.getMyUser();
|
|
final userPreferences = await _apiService.usersApi.getMyPreferences();
|
|
if (user != null) {
|
|
await Store.put(
|
|
StoreKey.currentUser,
|
|
UserConverter.fromAdminDto(user, userPreferences),
|
|
);
|
|
}
|
|
} catch (_) {}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
streamSub.cancel();
|
|
super.dispose();
|
|
}
|
|
}
|
|
|
|
final currentUserProvider =
|
|
StateNotifierProvider<CurrentUserProvider, UserDto?>((ref) {
|
|
return CurrentUserProvider(
|
|
ref.watch(apiServiceProvider),
|
|
);
|
|
});
|
|
|
|
class TimelineUserIdsProvider extends StateNotifier<List<int>> {
|
|
TimelineUserIdsProvider(this._timelineService) : super([]) {
|
|
_timelineService.getTimelineUserIds().then((users) => state = users);
|
|
streamSub = _timelineService
|
|
.watchTimelineUserIds()
|
|
.listen((users) => state = users);
|
|
}
|
|
|
|
late final StreamSubscription<List<int>> streamSub;
|
|
final TimelineService _timelineService;
|
|
|
|
@override
|
|
void dispose() {
|
|
streamSub.cancel();
|
|
super.dispose();
|
|
}
|
|
}
|
|
|
|
final timelineUsersIdsProvider =
|
|
StateNotifierProvider<TimelineUserIdsProvider, List<int>>((ref) {
|
|
return TimelineUserIdsProvider(ref.watch(timelineServiceProvider));
|
|
});
|