wip: cleanup the TabData, get rid of input_mode in tab, pass through render instead
This commit is contained in:
parent
2913286d9e
commit
91608dfe4e
3 changed files with 27 additions and 33 deletions
|
|
@ -57,7 +57,7 @@ impl Display for BoundarySymbol {
|
||||||
match self.invisible {
|
match self.invisible {
|
||||||
true => write!(f, " "),
|
true => write!(f, " "),
|
||||||
false => match self.color {
|
false => match self.color {
|
||||||
Some(_) => write!(f, "{}", self.color.unwrap().paint(self.boundary_type)),
|
Some(color) => write!(f, "{}", color.paint(self.boundary_type)),
|
||||||
None => write!(f, "{}", self.boundary_type),
|
None => write!(f, "{}", self.boundary_type),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
@ -67,7 +67,7 @@ impl Display for BoundarySymbol {
|
||||||
fn combine_symbols(
|
fn combine_symbols(
|
||||||
current_symbol: BoundarySymbol,
|
current_symbol: BoundarySymbol,
|
||||||
next_symbol: BoundarySymbol,
|
next_symbol: BoundarySymbol,
|
||||||
input_mode: InputMode,
|
input_mode: Option<InputMode>,
|
||||||
) -> Option<BoundarySymbol> {
|
) -> Option<BoundarySymbol> {
|
||||||
let invisible = current_symbol.invisible || next_symbol.invisible;
|
let invisible = current_symbol.invisible || next_symbol.invisible;
|
||||||
let should_be_colored = current_symbol.color.is_some() || next_symbol.color.is_some();
|
let should_be_colored = current_symbol.color.is_some() || next_symbol.color.is_some();
|
||||||
|
|
@ -75,7 +75,7 @@ fn combine_symbols(
|
||||||
let next_symbol = next_symbol.boundary_type;
|
let next_symbol = next_symbol.boundary_type;
|
||||||
let color = match should_be_colored {
|
let color = match should_be_colored {
|
||||||
true => match input_mode {
|
true => match input_mode {
|
||||||
InputMode::Normal | InputMode::Locked => Some(colors::GREEN),
|
Some(InputMode::Normal) | Some(InputMode::Locked) => Some(colors::GREEN),
|
||||||
_ => Some(colors::WHITE),
|
_ => Some(colors::WHITE),
|
||||||
},
|
},
|
||||||
false => None,
|
false => None,
|
||||||
|
|
@ -682,7 +682,7 @@ fn combine_symbols(
|
||||||
fn find_next_symbol(
|
fn find_next_symbol(
|
||||||
first_symbol: BoundarySymbol,
|
first_symbol: BoundarySymbol,
|
||||||
second_symbol: BoundarySymbol,
|
second_symbol: BoundarySymbol,
|
||||||
input_mode: InputMode,
|
input_mode: Option<InputMode>,
|
||||||
) -> Option<BoundarySymbol> {
|
) -> Option<BoundarySymbol> {
|
||||||
if let Some(symbol) = combine_symbols(first_symbol, second_symbol, input_mode) {
|
if let Some(symbol) = combine_symbols(first_symbol, second_symbol, input_mode) {
|
||||||
Some(symbol)
|
Some(symbol)
|
||||||
|
|
@ -769,7 +769,12 @@ impl Boundaries {
|
||||||
boundary_characters: HashMap::new(),
|
boundary_characters: HashMap::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn add_rect(&mut self, rect: &dyn Pane, input_mode: InputMode, color: Option<Colour>) {
|
pub fn add_rect(
|
||||||
|
&mut self,
|
||||||
|
rect: &dyn Pane,
|
||||||
|
input_mode: Option<InputMode>,
|
||||||
|
color: Option<Colour>,
|
||||||
|
) {
|
||||||
if rect.x() > 0 {
|
if rect.x() > 0 {
|
||||||
let boundary_x_coords = rect.x() - 1;
|
let boundary_x_coords = rect.x() - 1;
|
||||||
let first_row_coordinates = self.rect_right_boundary_row_start(rect);
|
let first_row_coordinates = self.rect_right_boundary_row_start(rect);
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,6 @@ pub struct Tab {
|
||||||
pub send_plugin_instructions: SenderWithContext<PluginInstruction>,
|
pub send_plugin_instructions: SenderWithContext<PluginInstruction>,
|
||||||
pub send_app_instructions: SenderWithContext<AppInstruction>,
|
pub send_app_instructions: SenderWithContext<AppInstruction>,
|
||||||
expansion_boundary: Option<PositionAndSize>,
|
expansion_boundary: Option<PositionAndSize>,
|
||||||
pub input_mode: InputMode,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
|
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
|
||||||
|
|
@ -77,7 +76,6 @@ pub struct TabData {
|
||||||
pub position: usize,
|
pub position: usize,
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub active: bool,
|
pub active: bool,
|
||||||
pub input_mode: InputMode,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Use a struct that has a pane_type enum, to reduce all of the duplication
|
// FIXME: Use a struct that has a pane_type enum, to reduce all of the duplication
|
||||||
|
|
@ -194,7 +192,6 @@ impl Tab {
|
||||||
send_app_instructions: SenderWithContext<AppInstruction>,
|
send_app_instructions: SenderWithContext<AppInstruction>,
|
||||||
max_panes: Option<usize>,
|
max_panes: Option<usize>,
|
||||||
pane_id: Option<PaneId>,
|
pane_id: Option<PaneId>,
|
||||||
input_mode: InputMode,
|
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let panes = if let Some(PaneId::Terminal(pid)) = pane_id {
|
let panes = if let Some(PaneId::Terminal(pid)) = pane_id {
|
||||||
let new_terminal = TerminalPane::new(pid, *full_screen_ws);
|
let new_terminal = TerminalPane::new(pid, *full_screen_ws);
|
||||||
|
|
@ -224,7 +221,6 @@ impl Tab {
|
||||||
send_pty_instructions,
|
send_pty_instructions,
|
||||||
send_plugin_instructions,
|
send_plugin_instructions,
|
||||||
expansion_boundary: None,
|
expansion_boundary: None,
|
||||||
input_mode,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -304,7 +300,7 @@ impl Tab {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
self.active_terminal = self.panes.iter().map(|(id, _)| id.to_owned()).next();
|
self.active_terminal = self.panes.iter().map(|(id, _)| id.to_owned()).next();
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
pub fn new_pane(&mut self, pid: PaneId) {
|
pub fn new_pane(&mut self, pid: PaneId) {
|
||||||
self.close_down_to_max_terminals();
|
self.close_down_to_max_terminals();
|
||||||
|
|
@ -405,7 +401,7 @@ impl Tab {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.active_terminal = Some(pid);
|
self.active_terminal = Some(pid);
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn horizontal_split(&mut self, pid: PaneId) {
|
pub fn horizontal_split(&mut self, pid: PaneId) {
|
||||||
|
|
@ -464,7 +460,7 @@ impl Tab {
|
||||||
}
|
}
|
||||||
|
|
||||||
self.active_terminal = Some(pid);
|
self.active_terminal = Some(pid);
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -524,7 +520,7 @@ impl Tab {
|
||||||
}
|
}
|
||||||
|
|
||||||
self.active_terminal = Some(pid);
|
self.active_terminal = Some(pid);
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -628,14 +624,14 @@ impl Tab {
|
||||||
active_terminal.rows() as u16,
|
active_terminal.rows() as u16,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
self.render();
|
self.render(None);
|
||||||
self.toggle_fullscreen_is_active();
|
self.toggle_fullscreen_is_active();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn toggle_fullscreen_is_active(&mut self) {
|
pub fn toggle_fullscreen_is_active(&mut self) {
|
||||||
self.fullscreen_is_active = !self.fullscreen_is_active;
|
self.fullscreen_is_active = !self.fullscreen_is_active;
|
||||||
}
|
}
|
||||||
pub fn render(&mut self) {
|
pub fn render(&mut self, input_mode: Option<InputMode>) {
|
||||||
if self.active_terminal.is_none() {
|
if self.active_terminal.is_none() {
|
||||||
// we might not have an active terminal if we closed the last pane
|
// we might not have an active terminal if we closed the last pane
|
||||||
// in that case, we should not render as the app is exiting
|
// in that case, we should not render as the app is exiting
|
||||||
|
|
@ -653,10 +649,8 @@ impl Tab {
|
||||||
for (kind, terminal) in self.panes.iter_mut() {
|
for (kind, terminal) in self.panes.iter_mut() {
|
||||||
if !self.panes_to_hide.contains(&terminal.pid()) {
|
if !self.panes_to_hide.contains(&terminal.pid()) {
|
||||||
match self.active_terminal.unwrap() == terminal.pid() {
|
match self.active_terminal.unwrap() == terminal.pid() {
|
||||||
true => {
|
true => boundaries.add_rect(terminal.as_ref(), input_mode, Some(colors::GREEN)),
|
||||||
boundaries.add_rect(terminal.as_ref(), self.input_mode, Some(colors::GREEN))
|
false => boundaries.add_rect(terminal.as_ref(), input_mode, None),
|
||||||
}
|
|
||||||
false => boundaries.add_rect(terminal.as_ref(), self.input_mode, None),
|
|
||||||
}
|
}
|
||||||
if let Some(vte_output) = terminal.render() {
|
if let Some(vte_output) = terminal.render() {
|
||||||
let vte_output = if let PaneId::Terminal(_) = kind {
|
let vte_output = if let PaneId::Terminal(_) = kind {
|
||||||
|
|
@ -1745,7 +1739,7 @@ impl Tab {
|
||||||
} else {
|
} else {
|
||||||
self.active_terminal = Some(*first_terminal);
|
self.active_terminal = Some(*first_terminal);
|
||||||
}
|
}
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
pub fn move_focus_left(&mut self) {
|
pub fn move_focus_left(&mut self) {
|
||||||
if !self.has_selectable_panes() {
|
if !self.has_selectable_panes() {
|
||||||
|
|
@ -1775,7 +1769,7 @@ impl Tab {
|
||||||
} else {
|
} else {
|
||||||
self.active_terminal = Some(active_terminal.unwrap().pid());
|
self.active_terminal = Some(active_terminal.unwrap().pid());
|
||||||
}
|
}
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
pub fn move_focus_down(&mut self) {
|
pub fn move_focus_down(&mut self) {
|
||||||
if !self.has_selectable_panes() {
|
if !self.has_selectable_panes() {
|
||||||
|
|
@ -1805,7 +1799,7 @@ impl Tab {
|
||||||
} else {
|
} else {
|
||||||
self.active_terminal = Some(active_terminal.unwrap().pid());
|
self.active_terminal = Some(active_terminal.unwrap().pid());
|
||||||
}
|
}
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
pub fn move_focus_up(&mut self) {
|
pub fn move_focus_up(&mut self) {
|
||||||
if !self.has_selectable_panes() {
|
if !self.has_selectable_panes() {
|
||||||
|
|
@ -1835,7 +1829,7 @@ impl Tab {
|
||||||
} else {
|
} else {
|
||||||
self.active_terminal = Some(active_terminal.unwrap().pid());
|
self.active_terminal = Some(active_terminal.unwrap().pid());
|
||||||
}
|
}
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
pub fn move_focus_right(&mut self) {
|
pub fn move_focus_right(&mut self) {
|
||||||
if !self.has_selectable_panes() {
|
if !self.has_selectable_panes() {
|
||||||
|
|
@ -1865,7 +1859,7 @@ impl Tab {
|
||||||
} else {
|
} else {
|
||||||
self.active_terminal = Some(active_terminal.unwrap().pid());
|
self.active_terminal = Some(active_terminal.unwrap().pid());
|
||||||
}
|
}
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
fn horizontal_borders(&self, terminals: &[PaneId]) -> HashSet<usize> {
|
fn horizontal_borders(&self, terminals: &[PaneId]) -> HashSet<usize> {
|
||||||
terminals.iter().fold(HashSet::new(), |mut borders, t| {
|
terminals.iter().fold(HashSet::new(), |mut borders, t| {
|
||||||
|
|
@ -2072,7 +2066,7 @@ impl Tab {
|
||||||
.get_mut(&PaneId::Terminal(active_terminal_id))
|
.get_mut(&PaneId::Terminal(active_terminal_id))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
active_terminal.scroll_up(1);
|
active_terminal.scroll_up(1);
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn scroll_active_terminal_down(&mut self) {
|
pub fn scroll_active_terminal_down(&mut self) {
|
||||||
|
|
@ -2082,7 +2076,7 @@ impl Tab {
|
||||||
.get_mut(&PaneId::Terminal(active_terminal_id))
|
.get_mut(&PaneId::Terminal(active_terminal_id))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
active_terminal.scroll_down(1);
|
active_terminal.scroll_down(1);
|
||||||
self.render();
|
self.render(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn clear_active_terminal_scroll(&mut self) {
|
pub fn clear_active_terminal_scroll(&mut self) {
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,6 @@ impl Screen {
|
||||||
self.send_app_instructions.clone(),
|
self.send_app_instructions.clone(),
|
||||||
self.max_panes,
|
self.max_panes,
|
||||||
Some(PaneId::Terminal(pane_id)),
|
Some(PaneId::Terminal(pane_id)),
|
||||||
self.input_mode,
|
|
||||||
);
|
);
|
||||||
self.active_tab_index = Some(tab_index);
|
self.active_tab_index = Some(tab_index);
|
||||||
self.tabs.insert(tab_index, tab);
|
self.tabs.insert(tab_index, tab);
|
||||||
|
|
@ -218,9 +217,10 @@ impl Screen {
|
||||||
|
|
||||||
/// Renders this [`Screen`], which amounts to rendering its active [`Tab`].
|
/// Renders this [`Screen`], which amounts to rendering its active [`Tab`].
|
||||||
pub fn render(&mut self) {
|
pub fn render(&mut self) {
|
||||||
|
let input_mode = self.input_mode;
|
||||||
if let Some(active_tab) = self.get_active_tab_mut() {
|
if let Some(active_tab) = self.get_active_tab_mut() {
|
||||||
if active_tab.get_active_pane().is_some() {
|
if active_tab.get_active_pane().is_some() {
|
||||||
active_tab.render();
|
active_tab.render(Some(input_mode));
|
||||||
} else {
|
} else {
|
||||||
self.close_tab();
|
self.close_tab();
|
||||||
}
|
}
|
||||||
|
|
@ -264,7 +264,6 @@ impl Screen {
|
||||||
self.send_app_instructions.clone(),
|
self.send_app_instructions.clone(),
|
||||||
self.max_panes,
|
self.max_panes,
|
||||||
None,
|
None,
|
||||||
self.input_mode,
|
|
||||||
);
|
);
|
||||||
tab.apply_layout(layout, new_pids);
|
tab.apply_layout(layout, new_pids);
|
||||||
self.active_tab_index = Some(tab_index);
|
self.active_tab_index = Some(tab_index);
|
||||||
|
|
@ -280,7 +279,6 @@ impl Screen {
|
||||||
position: tab.position,
|
position: tab.position,
|
||||||
name: tab.name.clone(),
|
name: tab.name.clone(),
|
||||||
active: active_tab_index == tab.index,
|
active: active_tab_index == tab.index,
|
||||||
input_mode: self.input_mode,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
self.send_plugin_instructions
|
self.send_plugin_instructions
|
||||||
|
|
@ -312,8 +310,5 @@ impl Screen {
|
||||||
}
|
}
|
||||||
pub fn change_input_mode(&mut self, input_mode: InputMode) {
|
pub fn change_input_mode(&mut self, input_mode: InputMode) {
|
||||||
self.input_mode = input_mode;
|
self.input_mode = input_mode;
|
||||||
for tab in self.tabs.values_mut() {
|
|
||||||
tab.input_mode = self.input_mode;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue