1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-06 18:40:47 +00:00
starship/src/modules/nodejs.rs

48 lines
1.4 KiB
Rust
Raw Normal View History

2019-04-12 23:11:40 +00:00
use ansi_term::Color;
2019-04-11 23:31:30 +00:00
use std::process::Command;
2019-04-10 13:22:11 +00:00
2019-05-01 20:34:24 +00:00
use super::{Context, Module};
/// Creates a module with the current Node.js version
2019-04-12 21:49:20 +00:00
///
2019-04-12 00:04:04 +00:00
/// Will display the Node.js version if any of the following criteria are met:
/// - Current directory contains a `.js` file
/// - Current directory contains a `package.json` file
/// - Current directory contains a `node_modules` directory
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
2019-05-12 17:37:23 +00:00
let is_js_project = context
.new_scan_dir()
.set_files(&["package.json"])
.set_extensions(&["js"])
.set_folders(&["node_modules"])
.scan();
2019-04-12 00:04:04 +00:00
if !is_js_project {
2019-04-13 03:06:48 +00:00
return None;
2019-04-11 23:31:30 +00:00
}
match get_node_version() {
Some(node_version) => {
2019-05-01 20:34:24 +00:00
const NODE_CHAR: &str = "";
let module_color = Color::Green.bold();
let mut module = context.new_module("node")?;
2019-05-01 20:34:24 +00:00
module.set_style(module_color);
2019-04-10 13:22:11 +00:00
let formatted_version = node_version.trim();
2019-05-01 20:34:24 +00:00
module.new_segment("symbol", NODE_CHAR);
module.new_segment("version", formatted_version);
2019-05-01 20:34:24 +00:00
Some(module)
}
None => None,
}
2019-04-10 13:22:11 +00:00
}
fn get_node_version() -> Option<String> {
match Command::new("node").arg("--version").output() {
Ok(output) => Some(String::from_utf8(output.stdout).unwrap()),
Err(_) => None,
}
}