2019-10-19 01:51:38 +00:00
|
|
|
use super::{Context, Module, RootModuleConfig, SegmentConfig};
|
|
|
|
|
|
|
|
use crate::configs::nodejs::NodejsConfig;
|
2019-12-02 22:42:55 +00:00
|
|
|
use crate::utils;
|
2019-04-19 20:57:14 +00:00
|
|
|
|
2019-07-19 20:18:52 +00:00
|
|
|
/// 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
|
2019-04-23 18:51:08 +00:00
|
|
|
/// - Current directory contains a `node_modules` directory
|
2019-07-02 20:12:53 +00:00
|
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
2019-05-12 17:37:23 +00:00
|
|
|
let is_js_project = context
|
2019-09-14 14:23:53 +00:00
|
|
|
.try_begin_scan()?
|
2019-05-12 17:37:23 +00:00
|
|
|
.set_files(&["package.json"])
|
|
|
|
.set_extensions(&["js"])
|
|
|
|
.set_folders(&["node_modules"])
|
2019-09-14 14:23:53 +00:00
|
|
|
.is_match();
|
2019-05-12 17:37:23 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-12-02 22:42:55 +00:00
|
|
|
let node_version = utils::exec_cmd("node", &["--version"])?.stdout;
|
2019-10-19 01:51:38 +00:00
|
|
|
|
2019-12-02 22:42:55 +00:00
|
|
|
let mut module = context.new_module("nodejs");
|
|
|
|
let config: NodejsConfig = NodejsConfig::try_load(module.config);
|
2019-04-10 13:22:11 +00:00
|
|
|
|
2019-12-02 22:42:55 +00:00
|
|
|
module.set_style(config.style);
|
2019-04-23 18:51:08 +00:00
|
|
|
|
2019-12-02 22:42:55 +00:00
|
|
|
let formatted_version = node_version.trim();
|
|
|
|
module.create_segment("symbol", &config.symbol);
|
|
|
|
module.create_segment("version", &SegmentConfig::new(formatted_version));
|
2019-04-10 13:22:11 +00:00
|
|
|
|
2019-12-02 22:42:55 +00:00
|
|
|
Some(module)
|
2019-04-23 18:51:08 +00:00
|
|
|
}
|