summaryrefslogtreecommitdiffstats
path: root/src/output/lines.rs
blob: c92e9e455a82b4b61e4299d103e7cc115fb95408 (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
use std::io::{Write, Result as IOResult};

use ansi_term::{ANSIStrings, ANSIGenericString};

use crate::fs::File;
use crate::output::file_name::{FileName, FileStyle};
use crate::style::Colours;
use crate::output::icons::painted_icon;
use crate::output::cell::TextCell;

#[derive(PartialEq, Debug, Copy, Clone)]
pub struct Options {
    pub icons: bool
}

/// The lines view literally just displays each file, line-by-line.
pub struct Render<'a> {
    pub files: Vec<File<'a>>,
    pub colours: &'a Colours,
    pub style: &'a FileStyle,
    pub opts: &'a Options,
}

impl<'a> Render<'a> {
    pub fn render<W: Write>(&self, w: &mut W) -> IOResult<()> {
        for file in &self.files {
            let name_cell = self.render_file(file).paint();
            if self.opts.icons {
                // Create a TextCell for the icon then append the text to it
                let mut cell = TextCell::default();
                let icon = painted_icon(file, self.style);
                cell.push(ANSIGenericString::from(icon), 2);
                cell.append(name_cell.promote());
                writeln!(w, "{}", ANSIStrings(&cell))?;
            } else {
                writeln!(w, "{}", ANSIStrings(&name_cell))?;
            }
        }

        Ok(())
    }

    fn render_file<'f>(&self, file: &'f File<'a>) -> FileName<'f, 'a, Colours> {
        self.style.for_file(file, self.colours).with_link_paths()
    }
}