mirror of
https://github.com/immich-app/immich.git
synced 2024-12-17 12:22:31 +02:00
bcc2c34eef
* feat(mobile): partner sharing * getAllAssets for other users * i18n * fix tests * try to fix web tests * shared with/by confusion * error logging * guard against outdated server version
91 lines
2.7 KiB
Dart
91 lines
2.7 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/album/services/album.service.dart';
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/asset_grid_data_structure.dart';
|
|
import 'package:immich_mobile/shared/models/album.dart';
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
|
import 'package:immich_mobile/shared/models/user.dart';
|
|
import 'package:immich_mobile/shared/providers/db.provider.dart';
|
|
import 'package:immich_mobile/shared/providers/user.provider.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
class SharedAlbumNotifier extends StateNotifier<List<Album>> {
|
|
SharedAlbumNotifier(this._albumService, Isar db) : super([]) {
|
|
final query = db.albums.filter().sharedEqualTo(true).sortByCreatedAtDesc();
|
|
query.findAll().then((value) => state = value);
|
|
_streamSub = query.watch().listen((data) => state = data);
|
|
}
|
|
|
|
final AlbumService _albumService;
|
|
late final StreamSubscription<List<Album>> _streamSub;
|
|
|
|
Future<Album?> createSharedAlbum(
|
|
String albumName,
|
|
Iterable<Asset> assets,
|
|
Iterable<User> sharedUsers,
|
|
) async {
|
|
try {
|
|
return await _albumService.createAlbum(
|
|
albumName,
|
|
assets,
|
|
sharedUsers,
|
|
);
|
|
} catch (e) {
|
|
debugPrint("Error createSharedAlbum ${e.toString()}");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<void> getAllSharedAlbums() =>
|
|
_albumService.refreshRemoteAlbums(isShared: true);
|
|
|
|
Future<bool> deleteAlbum(Album album) => _albumService.deleteAlbum(album);
|
|
|
|
Future<bool> leaveAlbum(Album album) async {
|
|
var res = await _albumService.leaveAlbum(album);
|
|
|
|
if (res) {
|
|
await deleteAlbum(album);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> removeAssetFromAlbum(Album album, Iterable<Asset> assets) {
|
|
return _albumService.removeAssetFromAlbum(album, assets);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_streamSub.cancel();
|
|
super.dispose();
|
|
}
|
|
}
|
|
|
|
final sharedAlbumProvider =
|
|
StateNotifierProvider.autoDispose<SharedAlbumNotifier, List<Album>>((ref) {
|
|
return SharedAlbumNotifier(
|
|
ref.watch(albumServiceProvider),
|
|
ref.watch(dbProvider),
|
|
);
|
|
});
|
|
|
|
final sharedAlbumDetailProvider =
|
|
StreamProvider.family<Album, int>((ref, albumId) async* {
|
|
final user = ref.watch(currentUserProvider);
|
|
if (user == null) return;
|
|
final AlbumService sharedAlbumService = ref.watch(albumServiceProvider);
|
|
|
|
await for (final a in sharedAlbumService.watchAlbum(albumId)) {
|
|
if (a == null) {
|
|
throw Exception("Album with ID=$albumId does not exist anymore!");
|
|
}
|
|
await for (final _ in a.watchRenderList(GroupAssetsBy.none)) {
|
|
yield a;
|
|
}
|
|
}
|
|
});
|