Radish alpha
r
rad:z39mP9rQAaGmERfUMPULfPUi473tY
Radicle terminal user interface
Radicle
Git
bin/patch: Optimize collecting of patches into Vec
Matthias Beyer committed 4 months ago
commit f5af55472e4c3e5106021da296db4b8939a9fee6
parent be0ba80
1 file changed +7 -6
modified bin/commands/patch/list/imui.rs
@@ -113,12 +113,13 @@ impl TryFrom<&Context> for App {
        };
        let filter = PatchItemFilter::from_str(&context.filter.to_string()).unwrap_or_default();

-
        let mut items = vec![];
-
        for patch in patches {
-
            if let Ok(item) = PatchItem::new(&context.profile, &context.repository, patch.clone()) {
-
                items.push(item);
-
            }
-
        }
+
        let mut items = patches
+
            .into_iter()
+
            .flat_map(|patch| {
+
                PatchItem::new(&context.profile, &context.repository, patch.clone()).ok()
+
            })
+
            .collect::<Vec<_>>();
+

        items.sort_by(|a, b| b.timestamp.cmp(&a.timestamp));

        Ok(App {