mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
79 lines
2.2 KiB
Dart
79 lines
2.2 KiB
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:reboot_launcher/src/util/os.dart';
|
|
|
|
class FileSelector extends StatefulWidget {
|
|
final String placeholder;
|
|
final String windowTitle;
|
|
final bool allowNavigator;
|
|
final TextEditingController controller;
|
|
final String? Function(String?) validator;
|
|
final AutovalidateMode? validatorMode;
|
|
final String? extension;
|
|
final String? label;
|
|
final bool folder;
|
|
|
|
const FileSelector(
|
|
{required this.placeholder,
|
|
required this.windowTitle,
|
|
required this.controller,
|
|
required this.validator,
|
|
required this.folder,
|
|
required this.allowNavigator,
|
|
this.label,
|
|
this.extension,
|
|
this.validatorMode,
|
|
Key? key})
|
|
: assert(folder || extension != null, "Missing extension for file selector"),
|
|
super(key: key);
|
|
|
|
@override
|
|
State<FileSelector> createState() => _FileSelectorState();
|
|
}
|
|
|
|
class _FileSelectorState extends State<FileSelector> {
|
|
bool _selecting = false;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return widget.label != null ? InfoLabel(
|
|
label: widget.label!,
|
|
child: _buildBody,
|
|
) : _buildBody;
|
|
}
|
|
|
|
Widget get _buildBody => TextFormBox(
|
|
controller: widget.controller,
|
|
placeholder: widget.placeholder,
|
|
validator: widget.validator,
|
|
autovalidateMode: widget.validatorMode ?? AutovalidateMode.onUserInteraction,
|
|
suffix: !widget.allowNavigator ? null : Button(
|
|
onPressed: _onPressed,
|
|
child: const Icon(FluentIcons.open_folder_horizontal)
|
|
)
|
|
);
|
|
|
|
void _onPressed() {
|
|
if(_selecting){
|
|
return;
|
|
}
|
|
|
|
_selecting = true;
|
|
if(widget.folder) {
|
|
compute(openFolderPicker, widget.windowTitle)
|
|
.then(_updateText)
|
|
.then((_) => _selecting = false);
|
|
return;
|
|
}
|
|
|
|
compute(openFilePicker, widget.extension!)
|
|
.then(_updateText)
|
|
.then((_) => _selecting = false);
|
|
}
|
|
|
|
void _updateText(String? value) {
|
|
var text = value ?? widget.controller.text;
|
|
widget.controller.text = value ?? widget.controller.text;
|
|
widget.controller.selection = TextSelection.collapsed(offset: text.length);
|
|
}
|
|
} |