From fd649a1ed942bbe1202b2014922e83f62c63a753 Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Thu, 2 Nov 2023 16:09:57 +0100 Subject: [PATCH] Make the backlog its own component --- src/components.rs | 2 ++ src/components/backlog.rs | 39 +++++++++++++++++++++++++++++++++++++++ src/components/home.rs | 31 +++++++++++++++++++++++-------- 3 files changed, 64 insertions(+), 8 deletions(-) create mode 100644 src/components/backlog.rs diff --git a/src/components.rs b/src/components.rs index 0770030..3f87e57 100644 --- a/src/components.rs +++ b/src/components.rs @@ -12,6 +12,8 @@ mod fps; pub use fps::FpsCounter; mod home; pub use home::Home; +mod backlog; +pub use backlog::Backlog; /// `Component` is a trait that represents a visual and interactive element of the user interface. /// Implementors of this trait can be registered with the main application loop and will be able to receive events, diff --git a/src/components/backlog.rs b/src/components/backlog.rs new file mode 100644 index 0000000..ae1b0f4 --- /dev/null +++ b/src/components/backlog.rs @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2023 Valentin Lorentz + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +use super::Component; +use color_eyre::eyre::{Result, WrapErr}; +use ratatui::{prelude::*, widgets::*}; + +#[derive(Default)] +pub struct Backlog {} + +impl Component for Backlog { + fn draw( + &mut self, + frame: &mut Frame<'_>, + area: Rect, + buffers: &crate::buffers::Buffers, + ) -> Result<()> { + frame.render_widget( + Paragraph::new(buffers.active_buffer().content()) + .block(Block::new().borders(Borders::ALL)) + .wrap(Wrap { trim: true }), + area, + ); + Ok(()) + } +} diff --git a/src/components/home.rs b/src/components/home.rs index 53b81bf..bdd0ca8 100644 --- a/src/components/home.rs +++ b/src/components/home.rs @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2023 Valentin Lorentz + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + use std::{collections::HashMap, time::Duration}; use color_eyre::eyre::{Result, WrapErr}; @@ -8,7 +24,7 @@ use tokio::sync::mpsc::UnboundedSender; use tokio::sync::OnceCell; use tui_textarea::{Input, Key, TextArea}; -use super::{Buflist, Component}; +use super::{Backlog, Buflist, Component}; use crate::{ action::Action, config::{Config, KeyBindings}, @@ -19,6 +35,7 @@ pub struct Home { command_tx: Option>, config: OnceCell, buflist: Buflist, + backlog: Backlog, textarea: TextArea<'static>, } @@ -121,15 +138,13 @@ impl Component for Home { ]) .split(layout[1]); - frame.render_widget( - Paragraph::new(buffers.active_buffer().content()) - .block(Block::new().borders(Borders::ALL)) - .wrap(Wrap { trim: true }), - layout[0], - ); - frame.render_widget(self.textarea.widget(), layout[1]); + self + .backlog + .draw(frame, layout[0], buffers) + .context("Error drawing backlog")?; + Ok(()) } }