A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.8 KiB

part of '../neon_notes.dart';
2 years ago
class NotesCreateNoteDialog extends StatefulWidget {
const NotesCreateNoteDialog({
required this.bloc,
this.category,
super.key,
});
final NotesBloc bloc;
final String? category;
@override
State<NotesCreateNoteDialog> createState() => _NotesCreateNoteDialogState();
}
class _NotesCreateNoteDialogState extends State<NotesCreateNoteDialog> {
final formKey = GlobalKey<FormState>();
final controller = TextEditingController();
String? selectedCategory;
@override
void dispose() {
controller.dispose();
super.dispose();
}
2 years ago
void submit() {
if (formKey.currentState!.validate()) {
Navigator.of(context).pop((controller.text, widget.category ?? selectedCategory));
2 years ago
}
}
@override
Widget build(final BuildContext context) => ResultBuilder<List<notes.Note>>.behaviorSubject(
subject: widget.bloc.notesList,
builder: (final context, final notes) => NeonDialog(
title: Text(NotesLocalizations.of(context).noteCreate),
2 years ago
children: [
Form(
key: formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
TextFormField(
autofocus: true,
controller: controller,
decoration: InputDecoration(
hintText: NotesLocalizations.of(context).noteTitle,
2 years ago
),
validator: (final input) => validateNotEmpty(context, input),
onFieldSubmitted: (final _) {
submit();
},
),
if (widget.category == null) ...[
Center(
child: NeonError(
notes.error,
onRetry: widget.bloc.refresh,
2 years ago
),
),
Center(
child: NeonLinearProgressIndicator(
visible: notes.isLoading,
2 years ago
),
),
if (notes.hasData) ...[
2 years ago
NotesCategorySelect(
categories: notes.requireData.map((final note) => note.category).toSet().toList(),
2 years ago
onChanged: (final category) {
selectedCategory = category;
},
onSubmitted: submit,
),
],
],
ElevatedButton(
onPressed: submit,
child: Text(NotesLocalizations.of(context).noteCreate),
2 years ago
),
],
),
),
],
),
);
}