summaryrefslogtreecommitdiffstats
path: root/src/modules/mod.rs
blob: e55ac63661b815214e1cb16d7052d400949afe82 (plain)
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
mod char;
mod dir;
mod line_sep;

use clap::ArgMatches;
use ansi_term::Style;

pub struct Segment {
    pub style: Style,
    pub value: String,
    pub prefix: Option<Box<Segment>>,
    pub suffix: Option<Box<Segment>>,
}

impl Default for Segment {
    fn default() -> Segment {
        let default_suffix = Some(Box::new(Segment {
            style: Style::default(),
            value: String::from(" "),
            prefix: None,
            suffix: None
        }));

        Segment {
            style: Style::default(),
            value: String::from(""),
            prefix: None,
            suffix: default_suffix
        }
    }
}

pub fn handle(module: &str, args: &ArgMatches) -> Segment {
    match module {
        "char" => char::segment(&args),
        "dir" => dir::segment(&args),
        "line_sep" => line_sep::segment(&args),

        _ => panic!("Unknown module: {}", module),
    }
}