mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
* feat(mobile): add album description functionality - Introduced a new optional `description` field in the `Album` entity. - Updated `AlbumViewerPageState` to manage `editDescriptionText`. - Created `AlbumDescription` and `AlbumViewerEditableDescription` widgets for displaying and editing album descriptions. - Enhanced `CreateAlbumPage` to include a description input field. - Implemented backend support for updating album descriptions in `AlbumApiRepository` and `AlbumService`. - Updated sync logic to handle album descriptions during data synchronization. - Adjusted UI components to accommodate the new description feature. * fix dart analysis error * remove comment that shouldn't be there * Album header styling * fix: disable edit after album creation --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
46 lines
1.5 KiB
Dart
46 lines
1.5 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/providers/album/current_album.provider.dart';
|
|
import 'package:immich_mobile/widgets/album/album_viewer_editable_description.dart';
|
|
import 'package:immich_mobile/providers/auth.provider.dart';
|
|
|
|
class AlbumDescription extends ConsumerWidget {
|
|
const AlbumDescription({super.key, required this.descriptionFocusNode});
|
|
|
|
final FocusNode descriptionFocusNode;
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final userId = ref.watch(authProvider).userId;
|
|
final (isOwner, isRemote, albumDescription) = ref.watch(
|
|
currentAlbumProvider.select((album) {
|
|
if (album == null) {
|
|
return const (false, false, '');
|
|
}
|
|
|
|
return (album.ownerId == userId, album.isRemote, album.description);
|
|
}),
|
|
);
|
|
|
|
if (isOwner && isRemote) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(left: 8, right: 8),
|
|
child: AlbumViewerEditableDescription(
|
|
albumDescription: albumDescription ?? 'add_a_description'.tr(),
|
|
descriptionFocusNode: descriptionFocusNode,
|
|
),
|
|
);
|
|
}
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.only(left: 16, right: 8),
|
|
child: Text(
|
|
albumDescription ?? 'add_a_description'.tr(),
|
|
style: context.textTheme.bodyLarge,
|
|
),
|
|
);
|
|
}
|
|
}
|