aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/run_script_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/run_script_command.rs')
-rw-r--r--crates/shirabe/src/command/run_script_command.rs27
1 files changed, 25 insertions, 2 deletions
diff --git a/crates/shirabe/src/command/run_script_command.rs b/crates/shirabe/src/command/run_script_command.rs
index 1ac9e9a4..b041f146 100644
--- a/crates/shirabe/src/command/run_script_command.rs
+++ b/crates/shirabe/src/command/run_script_command.rs
@@ -118,12 +118,27 @@ impl Command for RunScriptCommand {
self.set_aliases(vec!["run".to_string()])?;
self.set_description("Runs the scripts defined in composer.json");
self.set_definition(&[
- // TODO(cli-completion): script-name completion was provided via a closure suggesting runtime script names
- InputArgument::new(
+ // PHP passes an inline closure here (it takes no arguments; PHP tolerates the
+ // extra ones the caller passes).
+ InputArgument::new5(
"script",
Some(InputArgument::OPTIONAL),
"Script name to run.",
None,
+ crate::console::input::SuggestedValues::Closure(Box::new(
+ |this, _input, _suggestions| {
+ let this = this
+ .as_any()
+ .downcast_ref::<RunScriptCommand>()
+ .expect("the script suggestions are bound to RunScriptCommand");
+ // PHP: array_map(fn ($script) => $script['name'], $this->getScripts())
+ Ok(this
+ .get_scripts()?
+ .into_iter()
+ .map(|(name, _description)| name)
+ .collect())
+ },
+ )),
)
.unwrap()
.into(),
@@ -330,6 +345,14 @@ impl Command for RunScriptCommand {
base_command_initialize(self, input, output)
}
+ fn complete(
+ &self,
+ input: &shirabe_external_packages::symfony::console::completion::completion_input::CompletionInput,
+ suggestions: &mut shirabe_external_packages::symfony::console::completion::completion_suggestions::CompletionSuggestions,
+ ) -> anyhow::Result<()> {
+ crate::command::base_command::base_command_complete(self, input, suggestions)
+ }
+
shirabe_external_packages::delegate_command_trait_impls_to_inner!(
base_command_data,
"Composer\\Command\\RunScriptCommand"