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