/* * Copyright (c) 2024-2026 Fabian Freund. * * This file is part of WebLibre * (see https://weblibre.eu). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:weblibre/core/routing/routes.dart'; import 'package:weblibre/features/web_feed/domain/providers/add_dialog_blocking.dart'; import 'package:weblibre/utils/form_validators.dart'; import 'package:weblibre/utils/uri_parser.dart' as uri_parser; class AddFeedDialog extends HookConsumerWidget { final Uri? initialUri; const AddFeedDialog({super.key, required this.initialUri}); @override Widget build(BuildContext context, WidgetRef ref) { final formKey = useMemoized(() => GlobalKey()); final textController = useTextEditingController( text: initialUri?.toString(), ); return AlertDialog( title: const Text('Add Feed'), // contentPadding: const EdgeInsets.fromLTRB(24.0, 12.0, 24.0, 16.0), content: Form( key: formKey, child: TextFormField( decoration: const InputDecoration( label: Text('URL'), hintText: 'https://example.com/feed', floatingLabelBehavior: FloatingLabelBehavior.always, ), controller: textController, keyboardType: TextInputType.url, minLines: 1, maxLines: 10, validator: (value) { return validateUrl( value, onlyHttpProtocol: true, eagerParsing: false, ); }, ), ), actions: [ if (initialUri != null) TextButton( onPressed: () { ref .read(addFeedDialogBlockingProvider.notifier) .ignore(initialUri!); context.pop(); }, child: const Text('Ignore'), ), TextButton( onPressed: () { context.pop(); }, child: const Text('Cancel'), ), TextButton( onPressed: () { if (formKey.currentState?.validate() == true) { FeedCreateRoute( feedId: uri_parser.tryParseUrl(textController.text)!, ).pushReplacement(context); } }, child: const Text('Add'), ), ], ); } }