1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-10-03 23:53:07 +00:00
starship/src/print.rs

67 lines
1.6 KiB
Rust
Raw Normal View History

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
use crate::config::Config;
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;
const PROMPT_ORDER: &[&str] = &[
"username",
"directory",
"git_branch",
"git_status",
"package",
"nodejs",
"rust",
"python",
"golang",
"cmd_duration",
"line_break",
"jobs",
"battery",
"character",
];
2019-04-04 02:57:50 +00:00
pub fn prompt(args: ArgMatches) {
let context = Context::new(args);
let config = &context.config;
2019-04-08 21:35:38 +00:00
let stdout = io::stdout();
let mut handle = stdout.lock();
// Write a new line before the prompt
if config.get_as_bool("add_newline") != Some(false) {
writeln!(handle).unwrap();
}
2019-04-11 23:31:30 +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
}
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);
}