You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.3 KiB
Rust

use nu_plugin::{EvaluatedCall, LabeledError};
use nu_protocol::Value;
use crate::{
prompt::{GenericSelect, UserPrompt},
DialogPlugin,
};
impl DialogPlugin {
pub(crate) fn select(
&self,
call: &EvaluatedCall,
_input: &Value,
) -> Result<Value, LabeledError> {
let mut options: Vec<String> = call.req(0)?;
let mut select = if call.has_flag("fuzzy") {
GenericSelect::fuzzy(&*self.theme)
} else {
GenericSelect::normal(&*self.theme)
};
select.items(&options);
if let Some(prompt) = call.get_flag::<String>("prompt")? {
select.with_prompt(prompt);
}
if let Some(def) = call.get_flag::<usize>("default")? {
select.default(def);
}
if call.has_flag("abortable") {
if let Some(selection) = select.ask_opt(call.head)? {
let selected_item = options.remove(selection);
Ok(Value::string(selected_item, call.head))
} else {
Ok(Value::nothing(call.head))
}
} else {
let selection = select.ask(call.head)?;
let selected_item = options.remove(selection);
Ok(Value::string(selected_item, call.head))
}
}
}