-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement text styling across the UI.
- Loading branch information
Showing
10 changed files
with
212 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pub mod masked; | ||
pub mod menu; | ||
pub mod style; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
use std::str::FromStr; | ||
|
||
use tui::style::{Color, Style}; | ||
|
||
#[derive(Clone)] | ||
enum Component { | ||
Bg, | ||
Fg, | ||
} | ||
|
||
pub enum Themed { | ||
Container, | ||
Time, | ||
Text, | ||
Border, | ||
Title, | ||
Greet, | ||
Prompt, | ||
Input, | ||
Action, | ||
ActionButton, | ||
} | ||
|
||
#[derive(Default)] | ||
pub struct Theme { | ||
container: Option<(Component, Color)>, | ||
time: Option<(Component, Color)>, | ||
text: Option<(Component, Color)>, | ||
border: Option<(Component, Color)>, | ||
title: Option<(Component, Color)>, | ||
greet: Option<(Component, Color)>, | ||
prompt: Option<(Component, Color)>, | ||
input: Option<(Component, Color)>, | ||
action: Option<(Component, Color)>, | ||
button: Option<(Component, Color)>, | ||
} | ||
|
||
impl Theme { | ||
pub fn parse(spec: &str) -> Theme { | ||
use Component::*; | ||
|
||
let directives = spec.split(';').filter_map(|directive| directive.split_once('=')); | ||
let mut style = Theme::default(); | ||
|
||
for (key, value) in directives { | ||
if let Ok(color) = Color::from_str(value) { | ||
match key { | ||
"container" => style.container = Some((Bg, color)), | ||
"time" => style.time = Some((Fg, color)), | ||
"text" => style.text = Some((Fg, color)), | ||
"border" => style.border = Some((Fg, color)), | ||
"title" => style.title = Some((Fg, color)), | ||
"greet" => style.greet = Some((Fg, color)), | ||
"prompt" => style.prompt = Some((Fg, color)), | ||
"input" => style.input = Some((Fg, color)), | ||
"action" => style.action = Some((Fg, color)), | ||
"button" => style.button = Some((Fg, color)), | ||
_ => {} | ||
} | ||
} | ||
} | ||
|
||
if style.time.is_none() { | ||
style.time = style.text.clone(); | ||
} | ||
if style.greet.is_none() { | ||
style.greet = style.text.clone(); | ||
} | ||
if style.title.is_none() { | ||
style.title = style.border.clone(); | ||
} | ||
if style.button.is_none() { | ||
style.button = style.action.clone(); | ||
} | ||
|
||
style | ||
} | ||
|
||
pub fn of(&self, targets: &[Themed]) -> Style { | ||
targets.iter().fold(Style::default(), |style, target| self.apply(style, target)) | ||
} | ||
|
||
fn apply(&self, style: Style, target: &Themed) -> Style { | ||
use Themed::*; | ||
|
||
let color = match target { | ||
Container => &self.container, | ||
Time => &self.time, | ||
Text => &self.text, | ||
Border => &self.border, | ||
Title => &self.title, | ||
Greet => &self.greet, | ||
Prompt => &self.prompt, | ||
Input => &self.input, | ||
Action => &self.action, | ||
ActionButton => &self.button, | ||
}; | ||
|
||
match color { | ||
Some((component, color)) => match component { | ||
Component::Fg => style.fg(*color), | ||
Component::Bg => style.bg(*color), | ||
}, | ||
|
||
None => style, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.