use crate::commands::WholeStreamCommand; use crate::errors::ShellError; use crate::prelude::*; use nu_source::Tagged; pub struct SortBy; #[derive(Deserialize)] pub struct SortByArgs { rest: Vec>, } impl WholeStreamCommand for SortBy { fn name(&self) -> &str { "sort-by" } fn signature(&self) -> Signature { Signature::build("sort-by").rest(SyntaxShape::String, "the column(s) to sort by") } fn usage(&self) -> &str { "Sort by the given columns." } fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { args.process(registry, sort_by)?.run() } } fn sort_by( SortByArgs { rest }: SortByArgs, mut context: RunnableContext, ) -> Result { Ok(OutputStream::new(async_stream! { let mut vec = context.input.drain_vec().await; let calc_key = |item: &crate::data::base::Value| { rest.iter() .map(|f| item.get_data_by_key(f.borrow_spanned()).map(|i| i.clone())) .collect::>>() }; vec.sort_by_cached_key(calc_key); for item in vec { yield item.into(); } })) }