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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright (C) 2020 Stephane Raux. Distributed under the MIT license.

use crate::{Block, Environment, Style};
use dirs::home_dir;
use serde::{Deserialize, Serialize};
use std::path::Path;

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct WorkingDirectory {
    #[serde(default)]
    style: Style,
    #[serde(default = "default_home_as_tilde")]
    home_as_tilde: bool,
    #[serde(default = "default_prefix")]
    prefix: String,
}

impl WorkingDirectory {
    pub fn new() -> Self {
        WorkingDirectory {
            style: Default::default(),
            home_as_tilde: default_home_as_tilde(),
            prefix: default_prefix(),
        }
    }

    pub fn with_style<T>(self, style: T) -> Self
    where
        T: Into<Style>,
    {
        Self {
            style: style.into(),
            ..self
        }
    }

    pub fn with_home_as_tilde(self, home_as_tilde: bool) -> Self {
        Self {
            home_as_tilde,
            ..self
        }
    }

    pub fn with_prefix<T>(self, prefix: T) -> Self
    where
        T: Into<String>,
    {
        Self {
            prefix: prefix.into(),
            ..self
        }
    }

    pub fn produce(&self, environment: &Environment) -> Vec<Block> {
        let pwd = match environment.working_dir() {
            Some(pwd) if self.home_as_tilde => {
                match home_dir().and_then(|home| pwd.strip_prefix(home).ok()) {
                    Some(p) if p.as_os_str().is_empty() => "~".into(),
                    Some(p) => [Path::new("~"), p].iter().collect(),
                    None => pwd.to_owned(),
                }
            }
            Some(pwd) => pwd.to_owned(),
            None => "<NONE>".into(),
        };
        let pwd = pwd.to_string_lossy();
        vec![
            Block::new(&self.prefix).with_style(&self.style),
            Block::new(pwd).with_style(&self.style),
        ]
    }
}

impl Default for WorkingDirectory {
    fn default() -> Self {
        Self::new()
    }
}

fn default_home_as_tilde() -> bool {
    true
}

fn default_prefix() -> String {
    "\u{f07c}".into()
}