2019-04-08 23:35:38 +02:00
|
|
|
use clap::ArgMatches;
|
2019-04-12 01:31:30 +02:00
|
|
|
use std::io::{self, Write};
|
2019-04-08 23:35:38 +02:00
|
|
|
|
2019-04-19 22:57:14 +02:00
|
|
|
use crate::context::Context;
|
2019-04-04 02:14:26 +02:00
|
|
|
use crate::modules;
|
|
|
|
|
2019-04-04 04:57:50 +02:00
|
|
|
pub fn prompt(args: ArgMatches) {
|
2019-04-25 17:06:18 +02:00
|
|
|
let prompt_order = vec![
|
|
|
|
"directory",
|
2019-04-27 04:07:07 +02:00
|
|
|
"git_branch",
|
2019-04-25 17:06:18 +02:00
|
|
|
"nodejs",
|
|
|
|
"rust",
|
|
|
|
"python",
|
|
|
|
"line_break",
|
|
|
|
"character",
|
|
|
|
];
|
2019-04-19 22:57:14 +02:00
|
|
|
let context = Context::new(args);
|
2019-04-16 02:54:52 +02:00
|
|
|
|
2019-04-12 01:31:30 +02:00
|
|
|
// TODO:
|
|
|
|
// - List files in directory
|
|
|
|
// - Index binaries in PATH
|
|
|
|
|
2019-04-08 23:35:38 +02:00
|
|
|
let stdout = io::stdout();
|
|
|
|
let mut handle = stdout.lock();
|
|
|
|
|
|
|
|
// Write a new line before the prompt
|
2019-04-12 19:17:20 +02:00
|
|
|
writeln!(handle).unwrap();
|
2019-04-12 01:31:30 +02:00
|
|
|
|
2019-04-19 22:57:14 +02:00
|
|
|
prompt_order
|
2019-04-13 01:11:40 +02:00
|
|
|
.iter()
|
2019-04-19 22:57:14 +02:00
|
|
|
.map(|module| modules::handle(module, &context)) // Compute segments
|
2019-04-13 05:06:48 +02:00
|
|
|
.flatten() // Remove segments set to `None`
|
|
|
|
.enumerate() // Turn segment into tuple with index
|
2019-04-15 17:40:18 +02:00
|
|
|
.map(|(index, segment)| segment.output_index(index)) // Generate string outputs
|
2019-04-08 23:35:38 +02:00
|
|
|
.for_each(|segment_string| write!(handle, "{}", segment_string).unwrap());
|
2019-04-04 02:14:26 +02:00
|
|
|
}
|