1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-11 12:52:20 +00:00
starship/src/segment.rs
2019-04-12 18:12:29 -04:00

90 lines
2.1 KiB
Rust

use ansi_term::Style;
pub struct Segment {
name: Option<String>,
style: Style,
value: String,
prefix: OptionalSegment,
suffix: OptionalSegment,
}
impl Segment {
pub fn new<T>(name: T) -> Segment
where
T: Into<String>,
{
let default_prefix = Some(Box::new(Segment {
name: Some(format!("{} {}", name.into(), "prefix")),
style: Style::default(),
value: String::from("via "),
prefix: None,
suffix: None,
}));
let default_suffix = Some(Box::new(Segment {
name: Some(format!("{} {}", name.into(), "suffix")),
style: Style::default(),
value: String::from(" "),
prefix: None,
suffix: None,
}));
Segment {
name: Some(name.into()),
style: Style::default(),
value: String::from(""),
prefix: default_prefix,
suffix: default_suffix,
}
}
pub fn set_style<'a, T>(&'a mut self, style: T) -> &'a mut Segment
where
T: Into<Style>,
{
self.style = style.into();
self
}
pub fn set_value<'a>(&'a mut self, value: String) -> &'a mut Segment {
self.value = value;
self
}
pub fn set_prefix<'a>(&'a mut self, prefix: Segment) -> &'a mut Segment {
self.prefix = Some(Box::new(prefix));
self
}
pub fn set_suffix<'a>(&'a mut self, suffix: Segment) -> &'a mut Segment {
self.suffix = Some(Box::new(suffix));
self
}
pub fn output<'a>(&'a self) -> String {
let Segment {
name: _name,
prefix,
value,
style,
suffix,
} = self;
let mut segment_string = String::new();
if let Some(prefix) = prefix {
segment_string += &prefix.output()
}
segment_string += &style.paint(value).to_string();
if let Some(suffix) = suffix {
segment_string += &suffix.output();
}
segment_string
}
}
type OptionalSegment = Option<Box<Segment>>;