mirror of
https://github.com/immich-app/immich.git
synced 2024-11-19 11:58:57 -07:00
d02b97e1c1
* optimize android side gradle settings * android minsdk back to 21 * remove unused package, update linter and fix lint error * clean code of 'shared module' with offical dart style guide * restore uploadProfileImage method in UserService * add service provider * fix searchFocusNode init error
63 lines
1.7 KiB
Dart
63 lines
1.7 KiB
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/sharing/models/shared_album.model.dart';
|
|
import 'package:immich_mobile/modules/sharing/services/shared_album.service.dart';
|
|
|
|
class SharedAlbumNotifier extends StateNotifier<List<SharedAlbum>> {
|
|
SharedAlbumNotifier(this._sharedAlbumService) : super([]);
|
|
|
|
final SharedAlbumService _sharedAlbumService;
|
|
|
|
getAllSharedAlbums() async {
|
|
List<SharedAlbum> sharedAlbums =
|
|
await _sharedAlbumService.getAllSharedAlbum();
|
|
|
|
state = sharedAlbums;
|
|
}
|
|
|
|
Future<bool> deleteAlbum(String albumId) async {
|
|
var res = await _sharedAlbumService.deleteAlbum(albumId);
|
|
|
|
if (res) {
|
|
state = state.where((album) => album.id != albumId).toList();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> leaveAlbum(String albumId) async {
|
|
var res = await _sharedAlbumService.leaveAlbum(albumId);
|
|
|
|
if (res) {
|
|
state = state.where((album) => album.id != albumId).toList();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<bool> removeAssetFromAlbum(
|
|
String albumId, List<String> assetIds) async {
|
|
var res = await _sharedAlbumService.removeAssetFromAlbum(albumId, assetIds);
|
|
|
|
if (res) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
final sharedAlbumProvider =
|
|
StateNotifierProvider<SharedAlbumNotifier, List<SharedAlbum>>((ref) {
|
|
return SharedAlbumNotifier(ref.watch(sharedAlbumServiceProvider));
|
|
});
|
|
|
|
final sharedAlbumDetailProvider = FutureProvider.autoDispose
|
|
.family<SharedAlbum, String>((ref, albumId) async {
|
|
final SharedAlbumService sharedAlbumService =
|
|
ref.watch(sharedAlbumServiceProvider);
|
|
|
|
return await sharedAlbumService.getAlbumDetail(albumId);
|
|
});
|