0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-11 02:23:09 -05:00
immich/mobile/lib/services/timeline.service.dart
shenlong 4db8f0c666
refactor(mobile): move timeline methods to timeline repo (#16526)
* refactor: move timeline calls to timeline repo

* refactor: review changes

---------

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2025-03-03 09:10:09 -06:00

108 lines
3.2 KiB
Dart

import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:immich_mobile/entities/album.entity.dart';
import 'package:immich_mobile/entities/asset.entity.dart';
import 'package:immich_mobile/interfaces/timeline.interface.dart';
import 'package:immich_mobile/interfaces/user.interface.dart';
import 'package:immich_mobile/providers/app_settings.provider.dart';
import 'package:immich_mobile/repositories/timeline.repository.dart';
import 'package:immich_mobile/repositories/user.repository.dart';
import 'package:immich_mobile/services/app_settings.service.dart';
import 'package:immich_mobile/widgets/asset_grid/asset_grid_data_structure.dart';
final timelineServiceProvider = Provider<TimelineService>((ref) {
return TimelineService(
ref.watch(timelineRepositoryProvider),
ref.watch(userRepositoryProvider),
ref.watch(appSettingsServiceProvider),
);
});
class TimelineService {
final ITimelineRepository _timelineRepository;
final IUserRepository _userRepository;
final AppSettingsService _appSettingsService;
const TimelineService(
this._timelineRepository,
this._userRepository,
this._appSettingsService,
);
Future<List<int>> getTimelineUserIds() async {
final me = await _userRepository.me();
return _timelineRepository.getTimelineUserIds(me.isarId);
}
Stream<List<int>> watchTimelineUserIds() async* {
final me = await _userRepository.me();
yield* _timelineRepository.watchTimelineUsers(me.isarId);
}
Stream<RenderList> watchHomeTimeline(int userId) {
return _timelineRepository.watchHomeTimeline(userId, _getGroupByOption());
}
Stream<RenderList> watchMultiUsersTimeline(List<int> userIds) {
return _timelineRepository.watchMultiUsersTimeline(
userIds,
_getGroupByOption(),
);
}
Stream<RenderList> watchArchiveTimeline() async* {
final user = await _userRepository.me();
yield* _timelineRepository.watchArchiveTimeline(user.isarId);
}
Stream<RenderList> watchFavoriteTimeline() async* {
final user = await _userRepository.me();
yield* _timelineRepository.watchFavoriteTimeline(user.isarId);
}
Stream<RenderList> watchAlbumTimeline(Album album) async* {
yield* _timelineRepository.watchAlbumTimeline(
album,
_getGroupByOption(),
);
}
Stream<RenderList> watchTrashTimeline() async* {
final user = await _userRepository.me();
yield* _timelineRepository.watchTrashTimeline(user.isarId);
}
Stream<RenderList> watchAllVideosTimeline() {
return _timelineRepository.watchAllVideosTimeline();
}
Future<RenderList> getTimelineFromAssets(
List<Asset> assets,
GroupAssetsBy? groupBy,
) {
GroupAssetsBy groupOption = GroupAssetsBy.none;
if (groupBy != null) {
groupOption = groupBy;
} else {
groupOption = _getGroupByOption();
}
return _timelineRepository.getTimelineFromAssets(
assets,
groupOption,
);
}
Stream<RenderList> watchAssetSelectionTimeline() async* {
final user = await _userRepository.me();
yield* _timelineRepository.watchAssetSelectionTimeline(user.isarId);
}
GroupAssetsBy _getGroupByOption() {
return GroupAssetsBy
.values[_appSettingsService.getSetting(AppSettingsEnum.groupAssetsBy)];
}
}