mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -04:00 
			
		
		
		
	* chore: add unawaited_futures lint as warning # Conflicts: # mobile/analysis_options.yaml * remove unused dcm lints They will be added back later on a case by case basis * fix warning # Conflicts: # mobile/lib/presentation/pages/drift_remote_album.page.dart * auto gen file * review changes * conflict resolution --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			239 lines
		
	
	
		
			8.4 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			239 lines
		
	
	
		
			8.4 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:async';
 | |
| 
 | |
| 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/entities/asset.entity.dart';
 | |
| import 'package:immich_mobile/extensions/build_context_extensions.dart';
 | |
| import 'package:immich_mobile/models/albums/asset_selection_page_result.model.dart';
 | |
| import 'package:immich_mobile/providers/album/album.provider.dart';
 | |
| import 'package:immich_mobile/providers/album/album_title.provider.dart';
 | |
| import 'package:immich_mobile/providers/album/album_viewer.provider.dart';
 | |
| import 'package:immich_mobile/routing/router.dart';
 | |
| import 'package:immich_mobile/widgets/album/album_action_filled_button.dart';
 | |
| import 'package:immich_mobile/widgets/album/album_title_text_field.dart';
 | |
| import 'package:immich_mobile/widgets/album/album_viewer_editable_description.dart';
 | |
| import 'package:immich_mobile/widgets/album/shared_album_thumbnail_image.dart';
 | |
| 
 | |
| @RoutePage()
 | |
| // ignore: must_be_immutable
 | |
| class CreateAlbumPage extends HookConsumerWidget {
 | |
|   final List<Asset>? assets;
 | |
| 
 | |
|   const CreateAlbumPage({super.key, this.assets});
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context, WidgetRef ref) {
 | |
|     final albumTitleController = useTextEditingController.fromValue(TextEditingValue.empty);
 | |
|     final albumTitleTextFieldFocusNode = useFocusNode();
 | |
|     final albumDescriptionTextFieldFocusNode = useFocusNode();
 | |
|     final isAlbumTitleTextFieldFocus = useState(false);
 | |
|     final isAlbumTitleEmpty = useState(true);
 | |
|     final selectedAssets = useState<Set<Asset>>(assets != null ? Set.from(assets!) : const {});
 | |
| 
 | |
|     void onBackgroundTapped() {
 | |
|       albumTitleTextFieldFocusNode.unfocus();
 | |
|       albumDescriptionTextFieldFocusNode.unfocus();
 | |
|       isAlbumTitleTextFieldFocus.value = false;
 | |
| 
 | |
|       if (albumTitleController.text.isEmpty) {
 | |
|         albumTitleController.text = 'create_album_page_untitled'.tr();
 | |
|         isAlbumTitleEmpty.value = false;
 | |
|         ref.watch(albumTitleProvider.notifier).setAlbumTitle('create_album_page_untitled'.tr());
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     onSelectPhotosButtonPressed() async {
 | |
|       AssetSelectionPageResult? selectedAsset = await context.pushRoute<AssetSelectionPageResult?>(
 | |
|         AlbumAssetSelectionRoute(existingAssets: selectedAssets.value, canDeselect: true),
 | |
|       );
 | |
|       if (selectedAsset == null) {
 | |
|         selectedAssets.value = const {};
 | |
|       } else {
 | |
|         selectedAssets.value = selectedAsset.selectedAssets;
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     buildTitleInputField() {
 | |
|       return Padding(
 | |
|         padding: const EdgeInsets.only(right: 10, left: 10),
 | |
|         child: AlbumTitleTextField(
 | |
|           isAlbumTitleEmpty: isAlbumTitleEmpty,
 | |
|           albumTitleTextFieldFocusNode: albumTitleTextFieldFocusNode,
 | |
|           albumTitleController: albumTitleController,
 | |
|           isAlbumTitleTextFieldFocus: isAlbumTitleTextFieldFocus,
 | |
|         ),
 | |
|       );
 | |
|     }
 | |
| 
 | |
|     buildDescriptionInputField() {
 | |
|       return Padding(
 | |
|         padding: const EdgeInsets.only(right: 10, left: 10),
 | |
|         child: AlbumViewerEditableDescription(
 | |
|           albumDescription: '',
 | |
|           descriptionFocusNode: albumDescriptionTextFieldFocusNode,
 | |
|         ),
 | |
|       );
 | |
|     }
 | |
| 
 | |
|     buildTitle() {
 | |
|       if (selectedAssets.value.isEmpty) {
 | |
|         return SliverToBoxAdapter(
 | |
|           child: Padding(
 | |
|             padding: const EdgeInsets.only(top: 200, left: 18),
 | |
|             child: Text('create_shared_album_page_share_add_assets', style: context.textTheme.labelLarge).tr(),
 | |
|           ),
 | |
|         );
 | |
|       }
 | |
| 
 | |
|       return const SliverToBoxAdapter();
 | |
|     }
 | |
| 
 | |
|     buildSelectPhotosButton() {
 | |
|       if (selectedAssets.value.isEmpty) {
 | |
|         return SliverToBoxAdapter(
 | |
|           child: Padding(
 | |
|             padding: const EdgeInsets.only(top: 16, left: 16, right: 16),
 | |
|             child: FilledButton.icon(
 | |
|               style: FilledButton.styleFrom(
 | |
|                 alignment: Alignment.centerLeft,
 | |
|                 padding: const EdgeInsets.symmetric(vertical: 24, horizontal: 16),
 | |
|                 shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(10))),
 | |
|                 backgroundColor: context.colorScheme.surfaceContainerHigh,
 | |
|               ),
 | |
|               onPressed: onSelectPhotosButtonPressed,
 | |
|               icon: Icon(Icons.add_rounded, color: context.primaryColor),
 | |
|               label: Padding(
 | |
|                 padding: const EdgeInsets.only(left: 8.0),
 | |
|                 child: Text(
 | |
|                   'create_shared_album_page_share_select_photos',
 | |
|                   style: context.textTheme.titleMedium?.copyWith(
 | |
|                     fontWeight: FontWeight.w600,
 | |
|                     color: context.primaryColor,
 | |
|                   ),
 | |
|                 ).tr(),
 | |
|               ),
 | |
|             ),
 | |
|           ),
 | |
|         );
 | |
|       }
 | |
| 
 | |
|       return const SliverToBoxAdapter();
 | |
|     }
 | |
| 
 | |
|     buildControlButton() {
 | |
|       return Padding(
 | |
|         padding: const EdgeInsets.only(left: 12.0, top: 16, bottom: 16),
 | |
|         child: SizedBox(
 | |
|           height: 42,
 | |
|           child: ListView(
 | |
|             scrollDirection: Axis.horizontal,
 | |
|             children: [
 | |
|               AlbumActionFilledButton(
 | |
|                 iconData: Icons.add_photo_alternate_outlined,
 | |
|                 onPressed: onSelectPhotosButtonPressed,
 | |
|                 labelText: "add_photos".tr(),
 | |
|               ),
 | |
|             ],
 | |
|           ),
 | |
|         ),
 | |
|       );
 | |
|     }
 | |
| 
 | |
|     buildSelectedImageGrid() {
 | |
|       if (selectedAssets.value.isNotEmpty) {
 | |
|         return SliverPadding(
 | |
|           padding: const EdgeInsets.only(top: 16),
 | |
|           sliver: SliverGrid(
 | |
|             gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
 | |
|               crossAxisCount: 3,
 | |
|               crossAxisSpacing: 5.0,
 | |
|               mainAxisSpacing: 5,
 | |
|             ),
 | |
|             delegate: SliverChildBuilderDelegate((BuildContext context, int index) {
 | |
|               return GestureDetector(
 | |
|                 onTap: onBackgroundTapped,
 | |
|                 child: SharedAlbumThumbnailImage(asset: selectedAssets.value.elementAt(index)),
 | |
|               );
 | |
|             }, childCount: selectedAssets.value.length),
 | |
|           ),
 | |
|         );
 | |
|       }
 | |
| 
 | |
|       return const SliverToBoxAdapter();
 | |
|     }
 | |
| 
 | |
|     Future<void> createAlbum() async {
 | |
|       onBackgroundTapped();
 | |
|       var newAlbum = await ref
 | |
|           .watch(albumProvider.notifier)
 | |
|           .createAlbum(ref.read(albumTitleProvider), selectedAssets.value);
 | |
| 
 | |
|       if (newAlbum != null) {
 | |
|         await ref.read(albumProvider.notifier).refreshRemoteAlbums();
 | |
|         selectedAssets.value = {};
 | |
|         ref.read(albumTitleProvider.notifier).clearAlbumTitle();
 | |
|         ref.read(albumViewerProvider.notifier).disableEditAlbum();
 | |
|         unawaited(context.replaceRoute(AlbumViewerRoute(albumId: newAlbum.id)));
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     return Scaffold(
 | |
|       appBar: AppBar(
 | |
|         elevation: 0,
 | |
|         centerTitle: false,
 | |
|         backgroundColor: context.scaffoldBackgroundColor,
 | |
|         leading: IconButton(
 | |
|           onPressed: () {
 | |
|             selectedAssets.value = {};
 | |
|             context.maybePop();
 | |
|           },
 | |
|           icon: const Icon(Icons.close_rounded),
 | |
|         ),
 | |
|         title: const Text('create_album').tr(),
 | |
|         actions: [
 | |
|           TextButton(
 | |
|             onPressed: albumTitleController.text.isNotEmpty ? createAlbum : null,
 | |
|             child: Text(
 | |
|               'create'.tr(),
 | |
|               style: TextStyle(
 | |
|                 fontWeight: FontWeight.bold,
 | |
|                 color: albumTitleController.text.isNotEmpty ? context.primaryColor : context.themeData.disabledColor,
 | |
|               ),
 | |
|             ),
 | |
|           ),
 | |
|         ],
 | |
|       ),
 | |
|       body: GestureDetector(
 | |
|         onTap: onBackgroundTapped,
 | |
|         child: CustomScrollView(
 | |
|           slivers: [
 | |
|             SliverAppBar(
 | |
|               backgroundColor: context.scaffoldBackgroundColor,
 | |
|               elevation: 5,
 | |
|               automaticallyImplyLeading: false,
 | |
|               pinned: true,
 | |
|               floating: false,
 | |
|               bottom: PreferredSize(
 | |
|                 preferredSize: const Size.fromHeight(125.0),
 | |
|                 child: Column(
 | |
|                   children: [
 | |
|                     buildTitleInputField(),
 | |
|                     buildDescriptionInputField(),
 | |
|                     if (selectedAssets.value.isNotEmpty) buildControlButton(),
 | |
|                   ],
 | |
|                 ),
 | |
|               ),
 | |
|             ),
 | |
|             buildTitle(),
 | |
|             buildSelectPhotosButton(),
 | |
|             buildSelectedImageGrid(),
 | |
|           ],
 | |
|         ),
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |