refactor: improve outdated command output

Adds some colour to the outdated command which
fits in with other places such as the CLI's update
checker. Also, switches `->` to `→` which also
fits in with the CLI's update checker.
This commit is contained in:
daimond113 2025-02-13 20:16:42 +01:00
parent 82e0d38483
commit 5c43e3cb95
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
2 changed files with 24 additions and 19 deletions

View file

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Make aliases case-insensitive by @daimond113 - Make aliases case-insensitive by @daimond113
- Print "update available" message to stderr by @daimond113 - Print "update available" message to stderr by @daimond113
- Improve output of the `outdated` command by @daimond113
## [0.6.0-rc.6] - 2025-02-10 ## [0.6.0-rc.6] - 2025-02-10
### Fixed ### Fixed

View file

@ -1,4 +1,7 @@
use crate::cli::up_to_date_lockfile; use crate::cli::{
style::{ADDED_STYLE, INFO_STYLE, REMOVED_STYLE, SUCCESS_STYLE},
up_to_date_lockfile,
};
use anyhow::Context; use anyhow::Context;
use clap::Args; use clap::Args;
use pesde::{ use pesde::{
@ -45,7 +48,7 @@ impl OutdatedCommand {
let refreshed_sources = refreshed_sources.clone(); let refreshed_sources = refreshed_sources.clone();
async move { async move {
let Some((alias, mut specifier, _)) = node.direct else { let Some((alias, mut specifier, _)) = node.direct else {
return Ok::<bool, anyhow::Error>(true); return Ok::<_, anyhow::Error>(None);
}; };
if matches!( if matches!(
@ -54,7 +57,7 @@ impl OutdatedCommand {
| DependencySpecifiers::Workspace(_) | DependencySpecifiers::Workspace(_)
| DependencySpecifiers::Path(_) | DependencySpecifiers::Path(_)
) { ) {
return Ok(true); return Ok(None);
} }
let source = node.pkg_ref.source(); let source = node.pkg_ref.source();
@ -82,7 +85,7 @@ impl OutdatedCommand {
}; };
} }
let version_id = source let new_id = source
.resolve( .resolve(
&specifier, &specifier,
&ResolveOptions { &ResolveOptions {
@ -98,17 +101,8 @@ impl OutdatedCommand {
.map(|(v_id, _)| v_id) .map(|(v_id, _)| v_id)
.with_context(|| format!("no versions of {specifier} found"))?; .with_context(|| format!("no versions of {specifier} found"))?;
if version_id != *current_id.version_id() { Ok(Some((alias, current_id, new_id))
println!( .filter(|(_, current_id, new_id)| current_id.version_id() != new_id))
"{} ({alias}) {} -> {version_id}",
current_id.name(),
current_id.version_id(),
);
return Ok(false);
}
Ok(true)
} }
}) })
.collect::<JoinSet<_>>(); .collect::<JoinSet<_>>();
@ -116,13 +110,23 @@ impl OutdatedCommand {
let mut all_up_to_date = true; let mut all_up_to_date = true;
while let Some(task) = tasks.join_next().await { while let Some(task) = tasks.join_next().await {
if !task.unwrap()? { let Some((alias, current_id, new_id)) = task.unwrap()? else {
all_up_to_date = false; continue;
} };
all_up_to_date = false;
println!(
"{} ({}) {} → {}",
current_id.name(),
INFO_STYLE.apply_to(alias),
REMOVED_STYLE.apply_to(current_id.version_id()),
ADDED_STYLE.apply_to(new_id),
);
} }
if all_up_to_date { if all_up_to_date {
println!("all packages are up to date"); println!("{}", SUCCESS_STYLE.apply_to("all packages are up to date"));
} }
Ok(()) Ok(())