summaryrefslogtreecommitdiffstats
path: root/default-plugins/status-bar/src/tip/data/floating_panes_mouse.rs
blob: 4bf4a143dcd0749091d11ce2ee81d81c60dbf5a4 (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
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
use ansi_term::{unstyled_len, ANSIString, ANSIStrings, Style};

use crate::{action_key, style_key_with_modifier, LinePart};
use zellij_tile::prelude::{actions::Action, *};

macro_rules! strings {
    ($ANSIStrings:expr) => {{
        let strings: &[ANSIString] = $ANSIStrings;

        let ansi_strings = ANSIStrings(strings);

        LinePart {
            part: format!("{}", ansi_strings),
            len: unstyled_len(&ansi_strings),
        }
    }};
}

pub fn floating_panes_mouse_full(help: &ModeInfo) -> LinePart {
    // Tip: Toggle floating panes with Ctrl + <p> + <w> and move them with keyboard or mouse
    let mut bits = vec![
        Style::new().paint(" Tip: "),
        Style::new().paint("Toggle floating panes with "),
    ];
    bits.extend(add_keybinds(help));
    bits.push(Style::new().paint(" and move them with keyboard or mouse"));
    strings!(&bits)
}

pub fn floating_panes_mouse_medium(help: &ModeInfo) -> LinePart {
    // Tip: Toggle floating panes with Ctrl + <p> + <w>
    let mut bits = vec![
        Style::new().paint(" Tip: "),
        Style::new().paint("Toggle floating panes with "),
    ];
    bits.extend(add_keybinds(help));
    strings!(&bits)
}

pub fn floating_panes_mouse_short(help: &ModeInfo) -> LinePart {
    // Ctrl + <p> + <w> => floating panes
    let mut bits = add_keybinds(help);
    bits.push(Style::new().paint(" => floating panes"));
    strings!(&bits)
}

fn add_keybinds(help: &ModeInfo) -> Vec<ANSIString> {
    let to_pane = action_key(
        &help.get_mode_keybinds(),
        &[Action::SwitchToMode(InputMode::Pane)],
    );
    let floating_toggle = action_key(
        &help.get_keybinds_for_mode(InputMode::Pane),
        &[
            Action::ToggleFloatingPanes,
            Action::SwitchToMode(InputMode::Normal),
        ],
    );

    if floating_toggle.is_empty() {
        return vec![Style::new().bold().paint("UNBOUND")];
    }

    let mut bits = vec![];
    bits.extend(style_key_with_modifier(&to_pane, &help.style.colors, None));
    bits.push(Style::new().paint(", "));
    bits.extend(style_key_with_modifier(
        &floating_toggle,
        &help.style.colors,
        None,
    ));
    bits
}