2019-04-08 21:35:38 +00:00
|
|
|
use clap::ArgMatches;
|
2019-05-10 03:51:50 +00:00
|
|
|
use rayon::prelude::*;
|
2019-04-11 23:31:30 +00:00
|
|
|
use std::io::{self, Write};
|
2019-04-08 21:35:38 +00:00
|
|
|
|
2019-07-27 22:25:13 +00:00
|
|
|
use crate::config::Config;
|
2019-04-19 20:57:14 +00:00
|
|
|
use crate::context::Context;
|
2019-05-01 20:34:24 +00:00
|
|
|
use crate::module::Module;
|
2019-04-04 00:14:26 +00:00
|
|
|
use crate::modules;
|
|
|
|
|
2019-07-02 20:12:53 +00:00
|
|
|
const PROMPT_ORDER: &[&str] = &[
|
|
|
|
"battery",
|
|
|
|
"username",
|
|
|
|
"directory",
|
|
|
|
"git_branch",
|
|
|
|
"git_status",
|
|
|
|
"package",
|
|
|
|
"nodejs",
|
|
|
|
"rust",
|
|
|
|
"python",
|
|
|
|
"go",
|
2019-08-08 17:25:30 +00:00
|
|
|
"cmd_duration",
|
2019-07-02 20:12:53 +00:00
|
|
|
"line_break",
|
|
|
|
"character",
|
|
|
|
];
|
|
|
|
|
2019-04-04 02:57:50 +00:00
|
|
|
pub fn prompt(args: ArgMatches) {
|
2019-04-19 20:57:14 +00:00
|
|
|
let context = Context::new(args);
|
2019-07-27 22:25:13 +00:00
|
|
|
let config = &context.config;
|
2019-04-16 00:54:52 +00:00
|
|
|
|
2019-04-08 21:35:38 +00:00
|
|
|
let stdout = io::stdout();
|
|
|
|
let mut handle = stdout.lock();
|
|
|
|
|
|
|
|
// Write a new line before the prompt
|
2019-07-27 22:25:13 +00:00
|
|
|
if config.get_as_bool("add_newline") != Some(false) {
|
|
|
|
writeln!(handle).unwrap();
|
|
|
|
}
|
2019-04-11 23:31:30 +00:00
|
|
|
|
2019-07-02 20:12:53 +00:00
|
|
|
let modules = PROMPT_ORDER
|
2019-05-10 03:51:50 +00:00
|
|
|
.par_iter()
|
2019-05-01 20:34:24 +00:00
|
|
|
.map(|module| modules::handle(module, &context)) // Compute modules
|
|
|
|
.flatten()
|
|
|
|
.collect::<Vec<Module>>(); // Remove segments set to `None`
|
|
|
|
|
|
|
|
let mut printable = modules.iter();
|
|
|
|
|
|
|
|
// Print the first module without its prefix
|
|
|
|
if let Some(first_module) = printable.next() {
|
|
|
|
let module_without_prefix = first_module.to_string_without_prefix();
|
|
|
|
write!(handle, "{}", module_without_prefix).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print all remaining modules
|
|
|
|
printable.for_each(|module| write!(handle, "{}", module).unwrap());
|
2019-04-04 00:14:26 +00:00
|
|
|
}
|
2019-06-06 12:18:00 +00:00
|
|
|
|
|
|
|
pub fn module(module_name: &str, args: ArgMatches) {
|
|
|
|
let context = Context::new(args);
|
|
|
|
|
|
|
|
// If the module returns `None`, print an empty string
|
|
|
|
let module = modules::handle(module_name, &context)
|
|
|
|
.map(|m| m.to_string())
|
|
|
|
.unwrap_or_default();
|
|
|
|
|
|
|
|
print!("{}", module);
|
|
|
|
}
|