forked from reujab/silver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
print.rs
46 lines (44 loc) · 1.47 KB
/
print.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use crate::{config, modules, sh, Segment};
use std::iter::once;
pub fn prompt<T, U>(shell: &str, args: &Vec<config::Segment>, f: T)
where
T: Fn(usize, (&Segment, &Segment, &Segment)) -> U,
U: IntoIterator<Item = (String, String, String)>,
{
let v: Vec<_> = once(Segment::default())
.chain(
args.into_iter()
.map(|arg| {
let mut segment = Segment {
background: arg.color.background.to_string(),
foreground: arg.color.foreground.to_string(),
..Default::default()
};
modules::handle(
arg.name.as_str(),
&mut segment,
arg.args
.iter()
.map(String::as_str)
.collect::<Vec<_>>()
.as_slice(),
);
segment
})
.filter(|seg| !seg.value.is_empty()),
)
.chain(once(Segment::default()))
.collect();
let n = v.len() - 2;
(0..n)
.flat_map(|i| f(i, (&v[i], &v[i + 1], &v[i + 2])))
.for_each(|(bg, fg, val)| {
print!(
"{}{}{}",
sh::escape_background(shell, &bg),
sh::escape_foreground(shell, &fg),
val,
);
});
sh::reset_colors(shell);
}