2019-06-10 14:56:17 +00:00
|
|
|
use ansi_term::{ANSIString, Style};
|
2019-05-01 20:34:24 +00:00
|
|
|
use std::fmt;
|
2019-04-12 21:49:20 +00:00
|
|
|
|
2019-05-01 20:34:24 +00:00
|
|
|
/// A segment is a single configurable element in a module. This will usually
|
|
|
|
/// contain a data point to provide context for the prompt's user
|
|
|
|
/// (e.g. The version that software is running).
|
2020-04-06 17:16:18 +00:00
|
|
|
#[derive(Clone)]
|
2019-04-12 21:49:20 +00:00
|
|
|
pub struct Segment {
|
2019-05-01 20:34:24 +00:00
|
|
|
/// The segment's name, to be used in configuration and logging.
|
2020-04-06 17:16:18 +00:00
|
|
|
pub _name: String,
|
2019-05-01 20:34:24 +00:00
|
|
|
|
|
|
|
/// The segment's style. If None, will inherit the style of the module containing it.
|
2020-04-06 17:16:18 +00:00
|
|
|
pub style: Option<Style>,
|
2019-05-01 20:34:24 +00:00
|
|
|
|
|
|
|
/// The string value of the current segment.
|
2020-04-06 17:16:18 +00:00
|
|
|
pub value: String,
|
2019-04-12 21:49:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Segment {
|
2019-05-01 20:34:24 +00:00
|
|
|
/// Creates a new segment with default fields.
|
2019-07-31 23:48:51 +00:00
|
|
|
pub fn new(name: &str) -> Self {
|
|
|
|
Self {
|
2019-09-14 14:23:53 +00:00
|
|
|
_name: name.to_string(),
|
2019-05-01 20:34:24 +00:00
|
|
|
style: None,
|
|
|
|
value: "".to_string(),
|
2019-04-12 21:49:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-01 20:34:24 +00:00
|
|
|
/// Sets the style of the segment.
|
2019-04-13 04:33:50 +00:00
|
|
|
///
|
2019-04-13 03:11:00 +00:00
|
|
|
/// Accepts either `Color` or `Style`.
|
2019-07-31 23:48:51 +00:00
|
|
|
pub fn set_style<T>(&mut self, style: T) -> &mut Self
|
2019-04-12 22:12:29 +00:00
|
|
|
where
|
|
|
|
T: Into<Style>,
|
|
|
|
{
|
2019-05-01 20:34:24 +00:00
|
|
|
self.style = Some(style.into());
|
2019-04-12 21:49:20 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-04-10 16:23:20 +00:00
|
|
|
/// Check if the segment has a style
|
|
|
|
pub fn has_style(&self) -> bool {
|
|
|
|
self.style.is_some()
|
|
|
|
}
|
|
|
|
|
2019-05-01 20:34:24 +00:00
|
|
|
/// Sets the value of the segment.
|
2019-07-31 23:48:51 +00:00
|
|
|
pub fn set_value<T>(&mut self, value: T) -> &mut Self
|
2019-04-12 23:11:40 +00:00
|
|
|
where
|
|
|
|
T: Into<String>,
|
|
|
|
{
|
|
|
|
self.value = value.into();
|
2019-04-12 21:49:20 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-01-02 04:19:08 +00:00
|
|
|
/// Gets the value of the segment.
|
|
|
|
pub fn get_value(&self) -> &str {
|
|
|
|
&self.value
|
|
|
|
}
|
|
|
|
|
2019-05-01 20:34:24 +00:00
|
|
|
// Returns the ANSIString of the segment value, not including its prefix and suffix
|
|
|
|
pub fn ansi_string(&self) -> ANSIString {
|
|
|
|
match self.style {
|
|
|
|
Some(style) => style.paint(&self.value),
|
|
|
|
None => ANSIString::from(&self.value),
|
2019-04-12 21:49:20 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-16 05:03:44 +00:00
|
|
|
|
|
|
|
/// Determines if the segment contains a value.
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.value.trim().is_empty()
|
|
|
|
}
|
2019-04-12 21:49:20 +00:00
|
|
|
}
|
|
|
|
|
2019-06-10 14:56:17 +00:00
|
|
|
impl fmt::Display for Segment {
|
2019-05-01 20:34:24 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}", self.ansi_string())
|
|
|
|
}
|
|
|
|
}
|