mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Move terminal out of compositor
This commit is contained in:
parent
57d4a9ba21
commit
e0f9d86f49
@ -11,7 +11,7 @@
|
||||
#[cfg(feature = "lsp")]
|
||||
use serde_json::json;
|
||||
|
||||
use helix_view::{align_view, editor::ConfigEvent, theme, Align, Editor};
|
||||
use helix_view::{align_view, editor::ConfigEvent, graphics::Rect, theme, Align, Editor};
|
||||
|
||||
use crate::{
|
||||
args::Args,
|
||||
@ -43,8 +43,12 @@
|
||||
#[cfg(windows)]
|
||||
type Signals = futures_util::stream::Empty<()>;
|
||||
|
||||
use tui::backend::{Backend, CrosstermBackend};
|
||||
type Terminal = tui::terminal::Terminal<CrosstermBackend<std::io::Stdout>>;
|
||||
|
||||
pub struct Application {
|
||||
compositor: Compositor,
|
||||
terminal: Terminal,
|
||||
editor: Editor,
|
||||
|
||||
config: Arc<ArcSwap<Config>>,
|
||||
@ -121,10 +125,13 @@ pub fn new(args: Args) -> Result<Self, Error> {
|
||||
});
|
||||
let syn_loader = std::sync::Arc::new(syntax::Loader::new(syn_loader_conf));
|
||||
|
||||
let mut compositor = Compositor::new()?;
|
||||
let backend = CrosstermBackend::new(stdout());
|
||||
let terminal = Terminal::new(backend)?;
|
||||
let area = terminal.size().expect("couldn't get terminal size");
|
||||
let mut compositor = Compositor::new(area);
|
||||
let config = Arc::new(ArcSwap::from_pointee(config));
|
||||
let mut editor = Editor::new(
|
||||
compositor.size(),
|
||||
area,
|
||||
theme_loader.clone(),
|
||||
syn_loader.clone(),
|
||||
Box::new(Map::new(Arc::clone(&config), |config: &Config| {
|
||||
@ -195,6 +202,7 @@ pub fn new(args: Args) -> Result<Self, Error> {
|
||||
|
||||
let app = Self {
|
||||
compositor,
|
||||
terminal,
|
||||
editor,
|
||||
|
||||
config,
|
||||
@ -213,12 +221,28 @@ pub fn new(args: Args) -> Result<Self, Error> {
|
||||
}
|
||||
|
||||
fn render(&mut self) {
|
||||
let mut cx = crate::compositor::Context {
|
||||
editor: &mut self.editor,
|
||||
jobs: &mut self.jobs,
|
||||
};
|
||||
let area = self
|
||||
.terminal
|
||||
.autoresize()
|
||||
.expect("Unable to determine terminal size");
|
||||
|
||||
self.compositor.render(&mut cx);
|
||||
// if the terminal size suddenly changed, we need to trigger a resize
|
||||
self.editor.resize(area.clip_bottom(1)); // -1 from bottom for commandline
|
||||
|
||||
let surface = self.terminal.current_buffer_mut();
|
||||
|
||||
// let area = *surface.area();
|
||||
|
||||
let mut render_cx = crate::compositor::RenderContext {
|
||||
editor: &self.editor,
|
||||
surface,
|
||||
scroll: None,
|
||||
};
|
||||
self.compositor.render(area, &mut render_cx);
|
||||
|
||||
let (pos, kind) = self.compositor.cursor(area, &self.editor);
|
||||
let pos = pos.map(|pos| (pos.col as u16, pos.row as u16));
|
||||
self.terminal.draw(pos, kind).unwrap();
|
||||
}
|
||||
|
||||
pub async fn event_loop(&mut self) {
|
||||
@ -349,8 +373,8 @@ pub async fn handle_signals(&mut self, signal: i32) {
|
||||
signal::SIGCONT => {
|
||||
self.claim_term().await.unwrap();
|
||||
// redraw the terminal
|
||||
let Rect { width, height, .. } = self.compositor.size();
|
||||
self.compositor.resize(width, height);
|
||||
let area = self.compositor.size();
|
||||
self.compositor.resize(area);
|
||||
self.render();
|
||||
}
|
||||
_ => unreachable!(),
|
||||
@ -381,7 +405,13 @@ pub fn handle_terminal_events(&mut self, event: Option<Result<Event, crossterm::
|
||||
// Handle key events
|
||||
let should_redraw = match event {
|
||||
Some(Ok(Event::Resize(width, height))) => {
|
||||
self.compositor.resize(width, height);
|
||||
self.terminal
|
||||
.resize(Rect::new(0, 0, width, height))
|
||||
.expect("Unable to resize terminal");
|
||||
|
||||
let area = self.terminal.size().expect("couldn't get terminal size");
|
||||
|
||||
self.compositor.resize(area);
|
||||
|
||||
self.compositor
|
||||
.handle_event(Event::Resize(width, height), &mut cx)
|
||||
@ -711,10 +741,9 @@ pub async fn handle_language_server_message(
|
||||
|
||||
async fn claim_term(&mut self) -> Result<(), Error> {
|
||||
use helix_view::graphics::CursorKind;
|
||||
use tui::backend::Backend;
|
||||
terminal::enable_raw_mode()?;
|
||||
if self.compositor.terminal.cursor_kind() == CursorKind::Hidden {
|
||||
self.compositor.terminal.backend_mut().hide_cursor().ok();
|
||||
if self.terminal.cursor_kind() == CursorKind::Hidden {
|
||||
self.terminal.backend_mut().hide_cursor().ok();
|
||||
}
|
||||
let mut stdout = stdout();
|
||||
execute!(stdout, terminal::EnterAlternateScreen)?;
|
||||
@ -727,10 +756,8 @@ async fn claim_term(&mut self) -> Result<(), Error> {
|
||||
|
||||
fn restore_term(&mut self) -> Result<(), Error> {
|
||||
use helix_view::graphics::CursorKind;
|
||||
use tui::backend::Backend;
|
||||
if self.compositor.terminal.cursor_kind() == CursorKind::Hidden {
|
||||
self.compositor
|
||||
.terminal
|
||||
if self.terminal.cursor_kind() == CursorKind::Hidden {
|
||||
self.terminal
|
||||
.backend_mut()
|
||||
.show_cursor(CursorKind::Block)
|
||||
.ok();
|
||||
|
@ -67,42 +67,28 @@ fn id(&self) -> Option<&'static str> {
|
||||
}
|
||||
}
|
||||
|
||||
use anyhow::Error;
|
||||
use std::io::stdout;
|
||||
use tui::backend::CrosstermBackend;
|
||||
type Terminal = tui::terminal::Terminal<CrosstermBackend<std::io::Stdout>>;
|
||||
|
||||
pub struct Compositor {
|
||||
layers: Vec<Box<dyn Component>>,
|
||||
pub terminal: Terminal,
|
||||
area: Rect,
|
||||
|
||||
pub(crate) last_picker: Option<Box<dyn Component>>,
|
||||
}
|
||||
|
||||
impl Compositor {
|
||||
pub fn new() -> Result<Self, Error> {
|
||||
let backend = CrosstermBackend::new(stdout());
|
||||
let terminal = Terminal::new(backend)?;
|
||||
let area = terminal.size().expect("couldn't get terminal size");
|
||||
Ok(Self {
|
||||
pub fn new(area: Rect) -> Self {
|
||||
Self {
|
||||
layers: Vec::new(),
|
||||
area,
|
||||
terminal,
|
||||
last_picker: None,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
pub fn size(&self) -> Rect {
|
||||
self.area
|
||||
}
|
||||
|
||||
pub fn resize(&mut self, width: u16, height: u16) {
|
||||
self.terminal
|
||||
.resize(Rect::new(0, 0, width, height))
|
||||
.expect("Unable to resize terminal");
|
||||
|
||||
self.area = self.terminal.size().expect("couldn't get terminal size");
|
||||
pub fn resize(&mut self, area: Rect) {
|
||||
self.area = area;
|
||||
}
|
||||
|
||||
pub fn push(&mut self, mut layer: Box<dyn Component>) {
|
||||
@ -162,33 +148,10 @@ pub fn handle_event(&mut self, event: Event, cx: &mut Context) -> bool {
|
||||
consumed
|
||||
}
|
||||
|
||||
pub fn render(&mut self, cx: &mut Context) {
|
||||
let area = self
|
||||
.terminal
|
||||
.autoresize()
|
||||
.expect("Unable to determine terminal size");
|
||||
|
||||
// if the terminal size suddenly changed, we need to trigger a resize
|
||||
cx.editor.resize(area.clip_bottom(1)); // -1 from bottom for commandline
|
||||
|
||||
let surface = self.terminal.current_buffer_mut();
|
||||
|
||||
// let area = *surface.area();
|
||||
|
||||
let mut render_cx = RenderContext {
|
||||
editor: cx.editor,
|
||||
surface,
|
||||
scroll: None,
|
||||
};
|
||||
|
||||
pub fn render(&mut self, area: Rect, cx: &mut RenderContext) {
|
||||
for layer in &mut self.layers {
|
||||
layer.render(area, &mut render_cx);
|
||||
layer.render(area, cx);
|
||||
}
|
||||
|
||||
let (pos, kind) = self.cursor(area, cx.editor);
|
||||
let pos = pos.map(|pos| (pos.col as u16, pos.row as u16));
|
||||
|
||||
self.terminal.draw(pos, kind).unwrap();
|
||||
}
|
||||
|
||||
pub fn cursor(&self, area: Rect, editor: &Editor) -> (Option<Position>, CursorKind) {
|
||||
|
Loading…
Reference in New Issue
Block a user