aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui
diff options
context:
space:
mode:
authorGokul Soumya2021-08-17 00:25:48 +0000
committerGitHub2021-08-17 00:25:48 +0000
commit14c08e855f6d0ebfbf1d7cb5d7010507ad3a5db6 (patch)
treea9a0ea3d0f9fbb61bc258be87e7f51a965126471 /helix-term/src/ui
parent27616153bc5117153f246e538bf32de226fa8fc9 (diff)
Refactor infobox rendering and parsing (#579)
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r--helix-term/src/ui/info.rs24
1 files changed, 12 insertions, 12 deletions
diff --git a/helix-term/src/ui/info.rs b/helix-term/src/ui/info.rs
index 0f14260e..0da0fe65 100644
--- a/helix-term/src/ui/info.rs
+++ b/helix-term/src/ui/info.rs
@@ -1,8 +1,8 @@
use crate::compositor::{Component, Context};
-use helix_view::graphics::Rect;
+use helix_view::graphics::{Margin, Rect};
use helix_view::info::Info;
use tui::buffer::Buffer as Surface;
-use tui::widgets::{Block, Borders, Widget};
+use tui::widgets::{Block, Borders, Paragraph, Widget};
impl Component for Info {
fn render(&mut self, viewport: Rect, surface: &mut Surface, cx: &mut Context) {
@@ -11,10 +11,11 @@ impl Component for Info {
// Calculate the area of the terminal to modify. Because we want to
// render at the bottom right, we use the viewport's width and height
// which evaluate to the most bottom right coordinate.
- let (width, height) = (self.width + 2, self.height + 2);
+ let width = self.width + 2 + 2; // +2 for border, +2 for margin
+ let height = self.height + 2; // +2 for border
let area = viewport.intersection(Rect::new(
viewport.width.saturating_sub(width),
- viewport.height.saturating_sub(height + 2),
+ viewport.height.saturating_sub(height + 2), // +2 for statusline
width,
height,
));
@@ -24,15 +25,14 @@ impl Component for Info {
.title(self.title.as_str())
.borders(Borders::ALL)
.border_style(style);
- let inner = block.inner(area);
+
+ let margin = Margin {
+ vertical: 0,
+ horizontal: 1,
+ };
+ let inner = block.inner(area).inner(&margin);
block.render(area, surface);
- // Only write as many lines as there are rows available.
- for (y, line) in (inner.y..)
- .zip(self.text.lines())
- .take(inner.height as usize)
- {
- surface.set_string(inner.x, y, line, style);
- }
+ Paragraph::new(self.text.as_str()).render(inner, surface);
}
}