mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:22:37 -04:00 
			
		
		
		
	* fix: invalidate asset's description when asset details changed * refactor(exif-sheet): use description from exif instead * refactor(asset-description): remove asset_description.provider * fix(asset-description): set is empty based on exifInfo.description * chore: rename service to provider
		
			
				
	
	
		
			111 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			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/exif_info.entity.dart';
 | |
| import 'package:immich_mobile/extensions/build_context_extensions.dart';
 | |
| import 'package:immich_mobile/entities/asset.entity.dart';
 | |
| import 'package:immich_mobile/providers/user.provider.dart';
 | |
| import 'package:immich_mobile/services/asset_description.service.dart';
 | |
| import 'package:immich_mobile/widgets/common/immich_toast.dart';
 | |
| import 'package:logging/logging.dart';
 | |
| 
 | |
| class DescriptionInput extends HookConsumerWidget {
 | |
|   DescriptionInput({
 | |
|     super.key,
 | |
|     required this.asset,
 | |
|     this.exifInfo,
 | |
|   });
 | |
| 
 | |
|   final Asset asset;
 | |
|   final ExifInfo? exifInfo;
 | |
|   final Logger _log = Logger('DescriptionInput');
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context, WidgetRef ref) {
 | |
|     final textColor = context.isDarkTheme ? Colors.white : Colors.black;
 | |
|     final controller = useTextEditingController();
 | |
|     final focusNode = useFocusNode();
 | |
|     final isFocus = useState(false);
 | |
|     final isTextEmpty = useState(controller.text.isEmpty);
 | |
|     final descriptionProvider = ref.watch(assetDescriptionServiceProvider);
 | |
| 
 | |
|     final owner = ref.watch(currentUserProvider);
 | |
|     final hasError = useState(false);
 | |
| 
 | |
|     useEffect(
 | |
|       () {
 | |
|         controller.text = exifInfo?.description ?? '';
 | |
|         isTextEmpty.value = exifInfo?.description?.isEmpty ?? true;
 | |
|         return null;
 | |
|       },
 | |
|       [exifInfo?.description],
 | |
|     );
 | |
| 
 | |
|     submitDescription(String description) async {
 | |
|       hasError.value = false;
 | |
|       try {
 | |
|         await descriptionProvider.setDescription(
 | |
|           asset,
 | |
|           description,
 | |
|         );
 | |
|       } catch (error, stack) {
 | |
|         hasError.value = true;
 | |
|         _log.severe("Error updating description", error, stack);
 | |
|         ImmichToast.show(
 | |
|           context: context,
 | |
|           msg: "description_input_submit_error".tr(),
 | |
|           toastType: ToastType.error,
 | |
|         );
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     Widget? suffixIcon;
 | |
|     if (hasError.value) {
 | |
|       suffixIcon = const Icon(Icons.warning_outlined);
 | |
|     } else if (!isTextEmpty.value && isFocus.value) {
 | |
|       suffixIcon = IconButton(
 | |
|         onPressed: () {
 | |
|           controller.clear();
 | |
|           isTextEmpty.value = true;
 | |
|         },
 | |
|         icon: Icon(
 | |
|           Icons.cancel_rounded,
 | |
|           color: Colors.grey[500],
 | |
|         ),
 | |
|         splashRadius: 10,
 | |
|       );
 | |
|     }
 | |
| 
 | |
|     return TextField(
 | |
|       enabled: owner?.isarId == asset.ownerId,
 | |
|       focusNode: focusNode,
 | |
|       onTap: () => isFocus.value = true,
 | |
|       onChanged: (value) {
 | |
|         isTextEmpty.value = false;
 | |
|       },
 | |
|       onTapOutside: (a) async {
 | |
|         isFocus.value = false;
 | |
|         focusNode.unfocus();
 | |
| 
 | |
|         if (exifInfo?.description != controller.text) {
 | |
|           await submitDescription(controller.text);
 | |
|         }
 | |
|       },
 | |
|       autofocus: false,
 | |
|       maxLines: null,
 | |
|       keyboardType: TextInputType.multiline,
 | |
|       controller: controller,
 | |
|       style: context.textTheme.labelLarge,
 | |
|       decoration: InputDecoration(
 | |
|         hintText: 'description_input_hint_text'.tr(),
 | |
|         border: InputBorder.none,
 | |
|         hintStyle: context.textTheme.labelLarge?.copyWith(
 | |
|           color: textColor.withOpacity(0.5),
 | |
|         ),
 | |
|         suffixIcon: suffixIcon,
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |