mirror of
https://github.com/immich-app/immich.git
synced 2024-12-21 01:39:59 +02:00
2b5cef156c
* Add i18n framework to mobile app and write simple translation generator * Replace all texts in login_form with i18n keys * Localization of sharing section * Localization of asset viewer section * Use JSON as base translation format * Add check for missing/unused translation keys * Add localizely * Remove i18n directory in favour of localizely * Backup Translation * More translations * Translate home page * Translation of search page * Translate new server version announcement * Reformat code * Fix typo in german translation * Update englisch translations * Change translation keys to match dart filenames * Add /api to translated endpoint_urls * Update localizely.yml * Add languages to ios plist * Remove unused keys * Added script to check outdated key in other translations * Add download key to localizely.yml Co-authored-by: Alex <alex.tran1502@gmail.com>
71 lines
2.4 KiB
Dart
71 lines
2.4 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/modules/sharing/providers/album_title.provider.dart';
|
|
|
|
class AlbumTitleTextField extends ConsumerWidget {
|
|
const AlbumTitleTextField({
|
|
Key? key,
|
|
required this.isAlbumTitleEmpty,
|
|
required this.albumTitleTextFieldFocusNode,
|
|
required this.albumTitleController,
|
|
required this.isAlbumTitleTextFieldFocus,
|
|
}) : super(key: key);
|
|
|
|
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,
|
|
style: TextStyle(
|
|
fontSize: 28, color: Colors.grey[700], fontWeight: FontWeight.bold),
|
|
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;
|
|
},
|
|
icon: const Icon(Icons.cancel_rounded),
|
|
splashRadius: 10,
|
|
)
|
|
: null,
|
|
enabledBorder: OutlineInputBorder(
|
|
borderSide: const BorderSide(color: Colors.transparent),
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderSide: const BorderSide(color: Colors.transparent),
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
hintText: 'share_add_title'.tr(),
|
|
focusColor: Colors.grey[300],
|
|
fillColor: Colors.grey[200],
|
|
filled: isAlbumTitleTextFieldFocus.value,
|
|
),
|
|
);
|
|
}
|
|
}
|