2022-07-07 20:40:54 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2022-04-24 04:08:45 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-11-09 17:19:53 +01:00
|
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
2024-05-02 22:59:14 +02:00
|
|
|
import 'package:immich_mobile/providers/album/album_title.provider.dart';
|
2022-04-24 04:08:45 +02:00
|
|
|
|
|
|
|
class AlbumTitleTextField extends ConsumerWidget {
|
|
|
|
const AlbumTitleTextField({
|
2024-01-27 17:14:32 +01:00
|
|
|
super.key,
|
2022-04-24 04:08:45 +02:00
|
|
|
required this.isAlbumTitleEmpty,
|
|
|
|
required this.albumTitleTextFieldFocusNode,
|
|
|
|
required this.albumTitleController,
|
|
|
|
required this.isAlbumTitleTextFieldFocus,
|
2024-01-27 17:14:32 +01:00
|
|
|
});
|
2022-04-24 04:08:45 +02:00
|
|
|
|
|
|
|
final ValueNotifier<bool> isAlbumTitleEmpty;
|
|
|
|
final FocusNode albumTitleTextFieldFocusNode;
|
|
|
|
final TextEditingController albumTitleController;
|
|
|
|
final ValueNotifier<bool> isAlbumTitleTextFieldFocus;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
return TextField(
|
|
|
|
onChanged: (v) {
|
|
|
|
if (v.isEmpty) {
|
|
|
|
isAlbumTitleEmpty.value = true;
|
|
|
|
} else {
|
|
|
|
isAlbumTitleEmpty.value = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ref.watch(albumTitleProvider.notifier).setAlbumTitle(v);
|
|
|
|
},
|
|
|
|
focusNode: albumTitleTextFieldFocusNode,
|
2022-06-25 22:12:47 +02:00
|
|
|
style: TextStyle(
|
2022-07-13 14:23:48 +02:00
|
|
|
fontSize: 28,
|
2024-08-06 16:20:27 +02:00
|
|
|
color: context.colorScheme.onSurface,
|
2022-07-13 14:23:48 +02:00
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
2022-04-24 04:08:45 +02:00
|
|
|
controller: albumTitleController,
|
|
|
|
onTap: () {
|
|
|
|
isAlbumTitleTextFieldFocus.value = true;
|
|
|
|
|
|
|
|
if (albumTitleController.text == 'Untitled') {
|
|
|
|
albumTitleController.clear();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
decoration: InputDecoration(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
|
|
|
suffixIcon: !isAlbumTitleEmpty.value && isAlbumTitleTextFieldFocus.value
|
|
|
|
? IconButton(
|
|
|
|
onPressed: () {
|
|
|
|
albumTitleController.clear();
|
|
|
|
isAlbumTitleEmpty.value = true;
|
|
|
|
},
|
2022-08-16 01:53:30 +02:00
|
|
|
icon: Icon(
|
|
|
|
Icons.cancel_rounded,
|
2023-11-09 17:19:53 +01:00
|
|
|
color: context.primaryColor,
|
2022-08-16 01:53:30 +02:00
|
|
|
),
|
2022-04-24 04:08:45 +02:00
|
|
|
splashRadius: 10,
|
|
|
|
)
|
|
|
|
: null,
|
2024-08-06 21:39:07 +02:00
|
|
|
enabledBorder: OutlineInputBorder(
|
|
|
|
borderSide: const BorderSide(color: Colors.transparent),
|
|
|
|
borderRadius: BorderRadius.circular(10),
|
2022-04-24 04:08:45 +02:00
|
|
|
),
|
2024-08-06 21:39:07 +02:00
|
|
|
focusedBorder: OutlineInputBorder(
|
|
|
|
borderSide: const BorderSide(color: Colors.transparent),
|
|
|
|
borderRadius: BorderRadius.circular(10),
|
2022-04-24 04:08:45 +02:00
|
|
|
),
|
2022-07-07 20:40:54 +02:00
|
|
|
hintText: 'share_add_title'.tr(),
|
2024-08-06 16:20:27 +02:00
|
|
|
hintStyle: context.themeData.inputDecorationTheme.hintStyle?.copyWith(
|
2023-08-18 06:26:12 +02:00
|
|
|
fontSize: 28,
|
2024-08-06 21:39:07 +02:00
|
|
|
fontWeight: FontWeight.bold,
|
2023-08-18 06:26:12 +02:00
|
|
|
),
|
2022-04-24 04:08:45 +02:00
|
|
|
focusColor: Colors.grey[300],
|
2024-08-06 21:39:07 +02:00
|
|
|
fillColor: context.colorScheme.surfaceContainerHigh,
|
2022-04-24 04:08:45 +02:00
|
|
|
filled: isAlbumTitleTextFieldFocus.value,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|