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.
102 lines
3.1 KiB
102 lines
3.1 KiB
part of '../neon_news.dart'; |
|
|
|
class NewsAddFeedDialog extends StatefulWidget { |
|
const NewsAddFeedDialog({ |
|
required this.bloc, |
|
this.folderID, |
|
super.key, |
|
}); |
|
|
|
final NewsBloc bloc; |
|
final int? folderID; |
|
|
|
@override |
|
State<NewsAddFeedDialog> createState() => _NewsAddFeedDialogState(); |
|
} |
|
|
|
class _NewsAddFeedDialogState extends State<NewsAddFeedDialog> { |
|
final formKey = GlobalKey<FormState>(); |
|
final controller = TextEditingController(); |
|
|
|
NextcloudNewsFolder? folder; |
|
|
|
void submit() { |
|
if (formKey.currentState!.validate()) { |
|
Navigator.of(context).pop([controller.text, widget.folderID ?? folder?.id]); |
|
} |
|
} |
|
|
|
@override |
|
void initState() { |
|
super.initState(); |
|
|
|
unawaited( |
|
Clipboard.getData(Clipboard.kTextPlain).then((final clipboardContent) { |
|
if (clipboardContent != null && clipboardContent.text != null) { |
|
final uri = Uri.tryParse(clipboardContent.text!); |
|
if (uri != null && (uri.scheme == 'http' || uri.scheme == 'https')) { |
|
controller.text = clipboardContent.text!; |
|
} |
|
} |
|
}), |
|
); |
|
} |
|
|
|
@override |
|
Widget build(final BuildContext context) => ResultBuilder<List<NextcloudNewsFolder>>( |
|
stream: widget.bloc.folders, |
|
builder: (final context, final folders) => NeonDialog( |
|
title: Text(AppLocalizations.of(context).feedAdd), |
|
children: [ |
|
Form( |
|
key: formKey, |
|
child: Column( |
|
crossAxisAlignment: CrossAxisAlignment.end, |
|
children: [ |
|
TextFormField( |
|
autofocus: true, |
|
controller: controller, |
|
decoration: const InputDecoration( |
|
hintText: 'https://...', |
|
), |
|
keyboardType: TextInputType.url, |
|
validator: (final input) => validateHttpUrl(context, input), |
|
onFieldSubmitted: (final _) { |
|
submit(); |
|
}, |
|
), |
|
if (widget.folderID == null) ...[ |
|
Center( |
|
child: NeonException( |
|
folders.error, |
|
onRetry: widget.bloc.refresh, |
|
), |
|
), |
|
Center( |
|
child: NeonLinearProgressIndicator( |
|
visible: folders.loading, |
|
), |
|
), |
|
if (folders.data != null) ...[ |
|
NewsFolderSelect( |
|
folders: folders.data!, |
|
value: folder, |
|
onChanged: (final f) { |
|
setState(() { |
|
folder = f; |
|
}); |
|
}, |
|
), |
|
], |
|
], |
|
ElevatedButton( |
|
onPressed: folders.data != null ? submit : null, |
|
child: Text(AppLocalizations.of(context).feedAdd), |
|
), |
|
], |
|
), |
|
), |
|
], |
|
), |
|
); |
|
}
|
|
|