mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	* refactor(mobile): render list 2 * wip * wip: asset selection page * remove render_list provider * remove dead code * yaml format * remove unused file * woop woop more clean up * woop woop more clean up 2 * fix: album selection doesn't load instantly
		
			
				
	
	
		
			258 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			258 lines
		
	
	
		
			8.2 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/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/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/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 isAlbumTitleTextFieldFocus = useState(false);
 | 
						|
    final isAlbumTitleEmpty = useState(true);
 | 
						|
    final selectedAssets = useState<Set<Asset>>(
 | 
						|
      assets != null ? Set.from(assets!) : const {},
 | 
						|
    );
 | 
						|
 | 
						|
    void onBackgroundTapped() {
 | 
						|
      albumTitleTextFieldFocusNode.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,
 | 
						|
        ),
 | 
						|
      );
 | 
						|
    }
 | 
						|
 | 
						|
    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: RoundedRectangleBorder(
 | 
						|
                  borderRadius: BorderRadius.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: "share_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();
 | 
						|
    }
 | 
						|
 | 
						|
    createNonSharedAlbum() async {
 | 
						|
      onBackgroundTapped();
 | 
						|
      var newAlbum = await ref.watch(albumProvider.notifier).createAlbum(
 | 
						|
            ref.watch(albumTitleProvider),
 | 
						|
            selectedAssets.value,
 | 
						|
          );
 | 
						|
 | 
						|
      if (newAlbum != null) {
 | 
						|
        ref.watch(albumProvider.notifier).refreshRemoteAlbums();
 | 
						|
        selectedAssets.value = {};
 | 
						|
        ref.watch(albumTitleProvider.notifier).clearAlbumTitle();
 | 
						|
 | 
						|
        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(
 | 
						|
          'share_create_album',
 | 
						|
        ).tr(),
 | 
						|
        actions: [
 | 
						|
          TextButton(
 | 
						|
            onPressed: albumTitleController.text.isNotEmpty
 | 
						|
                ? createNonSharedAlbum
 | 
						|
                : null,
 | 
						|
            child: Text(
 | 
						|
              'create_shared_album_page_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(96.0),
 | 
						|
                child: Column(
 | 
						|
                  children: [
 | 
						|
                    buildTitleInputField(),
 | 
						|
                    if (selectedAssets.value.isNotEmpty) buildControlButton(),
 | 
						|
                  ],
 | 
						|
                ),
 | 
						|
              ),
 | 
						|
            ),
 | 
						|
            buildTitle(),
 | 
						|
            buildSelectPhotosButton(),
 | 
						|
            buildSelectedImageGrid(),
 | 
						|
          ],
 | 
						|
        ),
 | 
						|
      ),
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |