summaryrefslogtreecommitdiffstats
path: root/src/modules/mod.rs
blob: 5fa37593ee8d7789895092ef9334da2b425b0ae4 (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
42
43
44
45
46
mod character;
mod directory;
mod line_break;
mod nodejs;

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

// pub static current_dir: PathBuf = env::current_dir().expect("Unable to identify current directory");
// TODO: Currently gets the physical directory. Get the logical directory.

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 {
        "dir" | "directory" => directory::segment(&args),
        "char" | "character" => character::segment(&args),
        "node" | "nodejs" => nodejs::segment(&args),
        "line_break" => line_break::segment(&args),

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