mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
98 lines
3.6 KiB
Dart
98 lines
3.6 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/providers/album/album.provider.dart';
|
|
import 'package:immich_mobile/services/album.service.dart';
|
|
import 'package:immich_mobile/widgets/album/add_to_album_sliverlist.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
import 'package:immich_mobile/entities/album.entity.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
import 'package:immich_mobile/widgets/common/drag_sheet.dart';
|
|
import 'package:immich_mobile/widgets/common/immich_toast.dart';
|
|
|
|
class AddToAlbumBottomSheet extends HookConsumerWidget {
|
|
/// The asset to add to an album
|
|
final List<Asset> assets;
|
|
|
|
const AddToAlbumBottomSheet({super.key, required this.assets});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final albums = ref.watch(albumProvider).where((a) => a.isRemote).toList();
|
|
final albumService = ref.watch(albumServiceProvider);
|
|
|
|
useEffect(() {
|
|
// Fetch album updates, e.g., cover image
|
|
ref.read(albumProvider.notifier).refreshRemoteAlbums();
|
|
|
|
return null;
|
|
}, []);
|
|
|
|
void addToAlbum(Album album) async {
|
|
final result = await albumService.addAssets(album, assets);
|
|
|
|
if (result != null) {
|
|
if (result.alreadyInAlbum.isNotEmpty) {
|
|
ImmichToast.show(
|
|
context: context,
|
|
msg: 'add_to_album_bottom_sheet_already_exists'.tr(namedArgs: {"album": album.name}),
|
|
);
|
|
} else {
|
|
ImmichToast.show(
|
|
context: context,
|
|
msg: 'add_to_album_bottom_sheet_added'.tr(namedArgs: {"album": album.name}),
|
|
);
|
|
}
|
|
}
|
|
context.pop();
|
|
}
|
|
|
|
return Card(
|
|
elevation: 0,
|
|
shape: const RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.only(topLeft: Radius.circular(15), topRight: Radius.circular(15)),
|
|
),
|
|
child: CustomScrollView(
|
|
slivers: [
|
|
SliverPadding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
sliver: SliverToBoxAdapter(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const SizedBox(height: 12),
|
|
const Align(alignment: Alignment.center, child: CustomDraggingHandle()),
|
|
const SizedBox(height: 12),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text('add_to_album'.tr(), style: context.textTheme.displayMedium),
|
|
TextButton.icon(
|
|
icon: Icon(Icons.add, color: context.primaryColor),
|
|
label: Text('common_create_new_album'.tr(), style: TextStyle(color: context.primaryColor)),
|
|
onPressed: () {
|
|
context.pushRoute(CreateAlbumRoute(assets: assets));
|
|
},
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
sliver: AddToAlbumSliverList(
|
|
albums: albums,
|
|
sharedAlbums: albums.where((a) => a.shared).toList(),
|
|
onAddToAlbum: addToAlbum,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|