Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
issue-select: Default JSON output and remove option
Erik Kundt committed 2 years ago
commit d7a3265df010d51e1d6d3849ad14c66dd452699e
parent efdfe7b530b39e220c169ffce673d0e33b706b3b
1 file changed +3 -19
modified bin/commands/issue.rs
@@ -42,7 +42,6 @@ Other options

pub struct Options {
    op: Operation,
-
    json: bool,
}

pub enum Operation {
@@ -66,7 +65,6 @@ impl Args for Options {

        let mut parser = lexopt::Parser::from_args(args);
        let mut op: Option<OperationName> = None;
-
        let mut json = false;
        let mut select_opts = SelectOptions::default();

        while let Some(arg) = parser.next()? {
@@ -74,9 +72,6 @@ impl Args for Options {
                Long("help") | Short('h') => {
                    return Err(Error::Help.into());
                }
-
                Long("json") | Short('j') => {
-
                    json = true;
-
                }

                // select options.
                Long("mode") | Short('m') if op == Some(OperationName::Select) => {
@@ -121,7 +116,7 @@ impl Args for Options {
        let op = match op.ok_or_else(|| anyhow!("an operation must be provided"))? {
            OperationName::Select => Operation::Select { opts: select_opts },
        };
-
        Ok((Options { op, json }, vec![]))
+
        Ok((Options { op }, vec![]))
    }
}

@@ -139,20 +134,9 @@ pub fn run(options: Options, _ctx: impl terminal::Context) -> anyhow::Result<()>
            let mut app = select::App::new(context, opts.mode.clone(), opts.filter.clone());
            let output = Window::default().run(&mut app, 1000 / FPS)?;

-
            let output = if options.json {
-
                output
+
            let output = output
                    .map(|o| serde_json::to_string(&o).unwrap_or_default())
-
                    .unwrap_or_default()
-
            } else {
-
                match options.op {
-
                    Operation::Select { ref opts } => match &opts.mode {
-
                        select::Mode::Id => output.map(|o| format!("{}", o)).unwrap_or_default(),
-
                        select::Mode::Operation => output
-
                            .map(|o| format!("rad patch {}", o))
-
                            .unwrap_or_default(),
-
                    },
-
                }
-
            };
+
                .unwrap_or_default();

            eprint!("{output}");
        }