mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
file now rendered line by line
This commit is contained in:
parent
e93b15cef3
commit
c3a23a1c09
1 changed files with 34 additions and 24 deletions
|
@ -3,7 +3,7 @@ use crossterm::{
|
||||||
cursor::position,
|
cursor::position,
|
||||||
event::{self, read, Event, EventStream, KeyCode, KeyEvent},
|
event::{self, read, Event, EventStream, KeyCode, KeyEvent},
|
||||||
execute, queue,
|
execute, queue,
|
||||||
style::Print,
|
style::{Color, Print, SetForegroundColor},
|
||||||
terminal::{self, disable_raw_mode, enable_raw_mode},
|
terminal::{self, disable_raw_mode, enable_raw_mode},
|
||||||
};
|
};
|
||||||
use futures::{future::FutureExt, select, StreamExt};
|
use futures::{future::FutureExt, select, StreamExt};
|
||||||
|
@ -16,25 +16,37 @@ use anyhow::Error;
|
||||||
use crate::{keymap, Args};
|
use crate::{keymap, Args};
|
||||||
use helix_core::{Buffer, State};
|
use helix_core::{Buffer, State};
|
||||||
|
|
||||||
pub struct View<'a> {
|
pub struct BufferComponent<'a> {
|
||||||
x: u16,
|
x: u16,
|
||||||
y: u16,
|
y: u16,
|
||||||
contents: &'a str,
|
contents: Vec<&'a str>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl View<'_> {
|
impl BufferComponent<'_> {
|
||||||
pub fn render(&self) {
|
pub fn render(&self) {
|
||||||
execute!(
|
let mut line_count = 0;
|
||||||
stdout(),
|
for line in &self.contents {
|
||||||
cursor::MoveTo(self.x, self.y),
|
execute!(
|
||||||
Print(self.contents)
|
stdout(),
|
||||||
);
|
SetForegroundColor(Color::DarkCyan),
|
||||||
|
cursor::MoveTo(self.x, self.y + line_count),
|
||||||
|
Print((line_count + 1).to_string())
|
||||||
|
);
|
||||||
|
execute!(
|
||||||
|
stdout(),
|
||||||
|
SetForegroundColor(Color::Reset),
|
||||||
|
cursor::MoveTo(self.x + 2, self.y + line_count),
|
||||||
|
Print(line)
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
line_count += 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Editor {
|
pub struct Editor {
|
||||||
state: Option<State>,
|
state: Option<State>,
|
||||||
current_line: u16,
|
first_line: u16,
|
||||||
size: (u16, u16),
|
size: (u16, u16),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +54,7 @@ impl Editor {
|
||||||
pub fn new(mut args: Args) -> Result<Self, Error> {
|
pub fn new(mut args: Args) -> Result<Self, Error> {
|
||||||
let mut editor = Editor {
|
let mut editor = Editor {
|
||||||
state: None,
|
state: None,
|
||||||
current_line: 0,
|
first_line: 0,
|
||||||
size: terminal::size().unwrap(),
|
size: terminal::size().unwrap(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -65,19 +77,17 @@ impl Editor {
|
||||||
|
|
||||||
match &self.state {
|
match &self.state {
|
||||||
Some(s) => {
|
Some(s) => {
|
||||||
for line in s
|
let view = BufferComponent {
|
||||||
.file()
|
x: 0,
|
||||||
.lines_at(self.current_line as usize)
|
y: self.first_line,
|
||||||
.take(self.size.1 as usize)
|
contents: s
|
||||||
{
|
.file()
|
||||||
let view = View {
|
.lines_at(self.first_line as usize)
|
||||||
x: 0,
|
.take(self.size.1 as usize)
|
||||||
y: self.current_line,
|
.map(|x| x.as_str().unwrap())
|
||||||
contents: line.as_str().unwrap(),
|
.collect::<Vec<&str>>(),
|
||||||
};
|
};
|
||||||
view.render();
|
view.render();
|
||||||
self.current_line += 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
None => (),
|
None => (),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue