You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gobang/src/components/table_value.rs

44 lines
1.1 KiB
Rust

use super::{Component, DrawableComponent, EventState};
use crate::components::command::CommandInfo;
use crate::event::Key;
use anyhow::Result;
use tui::{
backend::Backend,
layout::Rect,
style::{Color, Style},
widgets::{Block, Borders, Paragraph},
Frame,
};
pub struct TableValueComponent {
value: String,
}
impl TableValueComponent {
pub fn new(value: String) -> Self {
Self { value }
}
}
impl DrawableComponent for TableValueComponent {
fn draw<B: Backend>(&self, f: &mut Frame<B>, area: Rect, focused: bool) -> Result<()> {
let paragraph = Paragraph::new(self.value.clone())
.block(Block::default().borders(Borders::BOTTOM))
.style(if focused {
Style::default()
} else {
Style::default().fg(Color::DarkGray)
});
f.render_widget(paragraph, area);
Ok(())
}
}
impl Component for TableValueComponent {
fn commands(&self, _out: &mut Vec<CommandInfo>) {}
fn event(&mut self, _key: Key) -> Result<EventState> {
todo!("scroll");
}
}