mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-03-06 16:46:35 +00:00
* Enable `flutter_lints` linting * Fix unmarked deps, we aren't on web so we don't need a URL strategy * ` dart fix --apply --code=use_super_parameters` * `dart fix --apply --code=use_key_in_widget_constructors` * `dart fix --apply --code=use_function_type_syntax_for_parameters` * Ignore code-generated `lib/services/theme.dart` file * `dart fix --apply --code=unnecessary_this` * `dart fix --apply --code=unnecessary_null_in_if_null_operators` * `dart fix --apply --code=unnecessary_new` * `dart fix --apply --code=sort_child_properties_last` * `dart fix --apply --code=sized_box_for_whitespace` * `dart fix --apply --code=prefer_typing_uninitialized_variables` * `dart fix --apply --code=prefer_is_empty` * `dart fix --apply --code=prefer_interpolation_to_compose_strings` * `dart fix --apply --code=prefer_final_fields` * `dart fix --apply --code=prefer_const_constructors_in_immutables` * `dart fix --apply --code=prefer_collection_literals` * `dart fix --apply --code=no_leading_underscores_for_local_identifiers` * `dart fix --apply --code=curly_braces_in_flow_control_structures` * `dart fix --apply --code=avoid_function_literals_in_foreach_calls` * `dart fix --apply --code=annotate_overrides` * Add CI for dart linting * `dart format lib/` * Re-enable the `usePathUrlStrategy` call, with proper deps https://docs.flutter.dev/ui/navigation/url-strategies#configuring-the-url-strategy
185 lines
6.1 KiB
Dart
185 lines
6.1 KiB
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:mobile_nebula/models/IPAndPort.dart';
|
|
import 'package:mobile_nebula/validators/dnsValidator.dart';
|
|
import 'package:mobile_nebula/validators/ipValidator.dart';
|
|
|
|
import 'IPAndPortField.dart';
|
|
|
|
class IPAndPortFormField extends FormField<IPAndPort> {
|
|
//TODO: onSaved, validator, auto-validate, enabled?
|
|
IPAndPortFormField({
|
|
super.key,
|
|
ipOnly = false,
|
|
enableIPV6 = false,
|
|
ipHelp = "ip address",
|
|
autoFocus = false,
|
|
focusNode,
|
|
nextFocusNode,
|
|
ValueChanged<IPAndPort>? onChanged,
|
|
super.onSaved,
|
|
textInputAction,
|
|
super.initialValue,
|
|
noBorder,
|
|
ipTextAlign = TextAlign.center,
|
|
this.ipController,
|
|
this.portController,
|
|
}) : super(
|
|
validator: (ipAndPort) {
|
|
if (ipAndPort == null) {
|
|
return "Please fill out this field";
|
|
}
|
|
|
|
if (!ipValidator(ipAndPort.ip, enableIPV6) && (!ipOnly && !dnsValidator(ipAndPort.ip))) {
|
|
return ipOnly ? 'Please enter a valid ip address' : 'Please enter a valid ip address or dns name';
|
|
}
|
|
|
|
if (ipAndPort.port == null || ipAndPort.port! > 65535 || ipAndPort.port! < 0) {
|
|
return "Please enter a valid port";
|
|
}
|
|
|
|
return null;
|
|
},
|
|
builder: (FormFieldState<IPAndPort> field) {
|
|
final _IPAndPortFormField state = field as _IPAndPortFormField;
|
|
|
|
void onChangedHandler(IPAndPort value) {
|
|
if (onChanged != null) {
|
|
onChanged(value);
|
|
}
|
|
field.didChange(value);
|
|
}
|
|
|
|
return Column(
|
|
children: <Widget>[
|
|
IPAndPortField(
|
|
ipOnly: ipOnly,
|
|
ipHelp: ipHelp,
|
|
autoFocus: autoFocus,
|
|
focusNode: focusNode,
|
|
nextFocusNode: nextFocusNode,
|
|
onChanged: onChangedHandler,
|
|
textInputAction: textInputAction,
|
|
ipController: state._effectiveIPController,
|
|
portController: state._effectivePortController,
|
|
noBorder: noBorder,
|
|
ipTextAlign: ipTextAlign,
|
|
),
|
|
field.hasError
|
|
? Text(
|
|
field.errorText!,
|
|
style: TextStyle(color: CupertinoColors.systemRed.resolveFrom(field.context), fontSize: 13),
|
|
)
|
|
: Container(height: 0),
|
|
],
|
|
);
|
|
},
|
|
);
|
|
|
|
final TextEditingController? ipController;
|
|
final TextEditingController? portController;
|
|
|
|
@override
|
|
_IPAndPortFormField createState() => _IPAndPortFormField();
|
|
}
|
|
|
|
class _IPAndPortFormField extends FormFieldState<IPAndPort> {
|
|
TextEditingController? _ipController;
|
|
TextEditingController? _portController;
|
|
|
|
TextEditingController get _effectiveIPController => widget.ipController ?? _ipController!;
|
|
TextEditingController get _effectivePortController => widget.portController ?? _portController!;
|
|
|
|
@override
|
|
IPAndPortFormField get widget => super.widget as IPAndPortFormField;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
if (widget.ipController == null) {
|
|
_ipController = TextEditingController(text: widget.initialValue?.ip ?? "");
|
|
} else {
|
|
widget.ipController!.addListener(_handleControllerChanged);
|
|
}
|
|
|
|
if (widget.portController == null) {
|
|
_portController = TextEditingController(text: widget.initialValue?.port?.toString() ?? "");
|
|
} else {
|
|
widget.portController!.addListener(_handleControllerChanged);
|
|
}
|
|
}
|
|
|
|
@override
|
|
void didUpdateWidget(IPAndPortFormField oldWidget) {
|
|
super.didUpdateWidget(oldWidget);
|
|
var update = IPAndPort(ip: widget.ipController?.text, port: int.tryParse(widget.portController?.text ?? ""));
|
|
bool shouldUpdate = false;
|
|
|
|
if (widget.ipController != oldWidget.ipController) {
|
|
oldWidget.ipController?.removeListener(_handleControllerChanged);
|
|
widget.ipController?.addListener(_handleControllerChanged);
|
|
|
|
if (oldWidget.ipController != null && widget.ipController == null) {
|
|
_ipController = TextEditingController.fromValue(oldWidget.ipController!.value);
|
|
}
|
|
|
|
if (widget.ipController != null) {
|
|
shouldUpdate = true;
|
|
update.ip = widget.ipController!.text;
|
|
if (oldWidget.ipController == null) _ipController = null;
|
|
}
|
|
}
|
|
|
|
if (widget.portController != oldWidget.portController) {
|
|
oldWidget.portController?.removeListener(_handleControllerChanged);
|
|
widget.portController?.addListener(_handleControllerChanged);
|
|
|
|
if (oldWidget.portController != null && widget.portController == null) {
|
|
_portController = TextEditingController.fromValue(oldWidget.portController!.value);
|
|
}
|
|
|
|
if (widget.portController != null) {
|
|
shouldUpdate = true;
|
|
update.port = int.parse(widget.portController!.text);
|
|
if (oldWidget.portController == null) _portController = null;
|
|
}
|
|
}
|
|
|
|
if (shouldUpdate) {
|
|
setValue(update);
|
|
}
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
widget.ipController?.removeListener(_handleControllerChanged);
|
|
widget.portController?.removeListener(_handleControllerChanged);
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
void reset() {
|
|
super.reset();
|
|
setState(() {
|
|
_effectiveIPController.text = widget.initialValue?.ip ?? "";
|
|
_effectivePortController.text = widget.initialValue?.port?.toString() ?? "";
|
|
});
|
|
}
|
|
|
|
void _handleControllerChanged() {
|
|
// Suppress changes that originated from within this class.
|
|
//
|
|
// In the case where a controller has been passed in to this widget, we
|
|
// register this change listener. In these cases, we'll also receive change
|
|
// notifications for changes originating from within this class -- for
|
|
// example, the reset() method. In such cases, the FormField value will
|
|
// already have been set.
|
|
final effectivePort = int.parse(_effectivePortController.text);
|
|
if (value == null) {
|
|
return;
|
|
}
|
|
|
|
if (_effectiveIPController.text != value!.ip || effectivePort != value!.port) {
|
|
didChange(IPAndPort(ip: _effectiveIPController.text, port: effectivePort));
|
|
}
|
|
}
|
|
}
|