mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-21 21:09:42 +00:00
Added the credits label
This commit is contained in:
parent
ec76dcd99b
commit
d5c5876878
32
src/state.rs
32
src/state.rs
|
@ -10,10 +10,10 @@ use crate::{
|
||||||
use crossterm::event::{KeyCode, KeyEvent, KeyEventKind};
|
use crossterm::event::{KeyCode, KeyEvent, KeyEventKind};
|
||||||
use ego_tree::NodeId;
|
use ego_tree::NodeId;
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
layout::{Constraint, Direction, Layout},
|
layout::{Alignment, Constraint, Direction, Layout},
|
||||||
style::{Style, Stylize},
|
style::{Style, Stylize},
|
||||||
text::Line,
|
text::{Line, Span},
|
||||||
widgets::{Block, Borders, List, ListState},
|
widgets::{Block, Borders, List, ListState, Paragraph},
|
||||||
Frame,
|
Frame,
|
||||||
};
|
};
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
@ -66,12 +66,35 @@ impl AppState {
|
||||||
state
|
state
|
||||||
}
|
}
|
||||||
pub fn draw(&mut self, frame: &mut Frame) {
|
pub fn draw(&mut self, frame: &mut Frame) {
|
||||||
|
let label_block =
|
||||||
|
Block::default()
|
||||||
|
.borders(Borders::all())
|
||||||
|
.border_set(ratatui::symbols::border::Set {
|
||||||
|
top_left: " ",
|
||||||
|
top_right: " ",
|
||||||
|
bottom_left: " ",
|
||||||
|
bottom_right: " ",
|
||||||
|
vertical_left: " ",
|
||||||
|
vertical_right: " ",
|
||||||
|
horizontal_top: "*",
|
||||||
|
horizontal_bottom: "*",
|
||||||
|
});
|
||||||
|
let str1 = "Linutil ";
|
||||||
|
let str2 = "by Chris Titus";
|
||||||
|
let label = Paragraph::new(Line::from(vec![
|
||||||
|
Span::styled(str1, Style::default().bold()),
|
||||||
|
Span::styled(str2, Style::default().italic()),
|
||||||
|
]))
|
||||||
|
.block(label_block)
|
||||||
|
.alignment(Alignment::Center);
|
||||||
|
|
||||||
let longest_tab_display_len = self
|
let longest_tab_display_len = self
|
||||||
.tabs
|
.tabs
|
||||||
.iter()
|
.iter()
|
||||||
.map(|tab| tab.name.len() + self.theme.tab_icon().len())
|
.map(|tab| tab.name.len() + self.theme.tab_icon().len())
|
||||||
.max()
|
.max()
|
||||||
.unwrap_or(0);
|
.unwrap_or(0)
|
||||||
|
.max(str1.len() + str2.len());
|
||||||
|
|
||||||
let vertical = Layout::default()
|
let vertical = Layout::default()
|
||||||
.direction(Direction::Vertical)
|
.direction(Direction::Vertical)
|
||||||
|
@ -94,6 +117,7 @@ impl AppState {
|
||||||
.direction(Direction::Vertical)
|
.direction(Direction::Vertical)
|
||||||
.constraints([Constraint::Length(3), Constraint::Min(1)])
|
.constraints([Constraint::Length(3), Constraint::Min(1)])
|
||||||
.split(horizontal[0]);
|
.split(horizontal[0]);
|
||||||
|
frame.render_widget(label, left_chunks[0]);
|
||||||
|
|
||||||
let tabs = self
|
let tabs = self
|
||||||
.tabs
|
.tabs
|
||||||
|
|
Loading…
Reference in New Issue
Block a user