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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
use super::*;

pub struct Entry {
    status: Status,
    title: Text,
    title_message: Option<Text>,
    messages: Vec<Message>,
}

impl Entry {
    pub fn new(
        status: Status,
        title: Text,
        title_message: Option<Text>,
        messages: Vec<Message>,
    ) -> Self {
        let title = title.into();
        let title_message = match title_message {
            Some(m) => Some(m.into()),
            None => None,
        };
        Self {
            status,
            title,
            title_message,
            messages,
        }
    }

    pub fn padding() -> usize {
        5
    }

    fn print_header(&self, width: usize, position: Position) {
        let left = match position {
            Position::First => "┌",
            Position::Middle => "├",
            Position::Last => {
                if self.messages.is_empty() {
                    "└"
                } else {
                    "├"
                }
            }
        };
        let right = match position {
            Position::First => "─┐",
            Position::Middle => "─┤",
            Position::Last => {
                if self.messages.is_empty() {
                    "─┘"
                } else {
                    "─┤"
                }
            }
        };
        let mut w: usize = 1 + Self::padding() + 2 + 2 + 2;

        let mut s = left.to_string();
        // Padding
        for _ in 0..Self::padding() {
            s.push_str("─");
        }
        s.push_str("┤");
        print!(
            "{}{}{}{} ",
            Pretty::border_style(),
            Pretty::border_color(),
            s,
            termion::style::Reset,
        );

        // Title
        w += self.title.len();
        self.title.print();
        if let Some(message) = &self.title_message {
            w += message.len() + 2;
            print!(": ");
            message.print();
        }

        let mut s = " ├".to_string();
        for _ in 0..width - w {
            s.push_str("─");
        }

        print!(
            "{}{}{}{}",
            Pretty::border_style(),
            Pretty::border_color(),
            s,
            termion::style::Reset,
        );
        if position == Position::Last || !self.messages.is_empty() {
            println!("{}", self.status.as_str());
        } else {
            println!(
                "{}{}{}{}",
                Pretty::border_style(),
                Pretty::border_color(),
                right,
                termion::style::Reset,
            );
        }
    }

    fn print_botton(width: usize, position: Position) {
        let left = match position {
            Position::Last => "└",
            _ => "├",
        };
        let right = match position {
            Position::Last => "┘",
            _ => "┤",
        };
        let mut s = left.to_string();
        for _ in 0..width - 2 {
            s.push_str("─");
        }
        s.push_str(right);
        println!(
            "{}{}{}{}",
            Pretty::border_style(),
            Pretty::border_color(),
            s,
            termion::style::Reset,
        );
    }

    pub fn print(&self, width: usize, position: Position) {
        self.print_header(width, position);
        if !self.messages.is_empty() {
            for message in self.messages.iter() {
                message.print(width);
            }
        }
        if position == Position::Last {
            Self::print_botton(width, position);
        }
    }
}