-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(examples): Add example of half block rendering (#687)
This is a fun example of how to render big text using half blocks
- Loading branch information
Showing
4 changed files
with
101 additions
and
0 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
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,71 @@ | ||
use std::{ | ||
io::{self, stdout}, | ||
thread::sleep, | ||
time::Duration, | ||
}; | ||
|
||
use crossterm::terminal::{disable_raw_mode, enable_raw_mode}; | ||
use indoc::indoc; | ||
use itertools::izip; | ||
use ratatui::{prelude::*, widgets::*}; | ||
|
||
/// A fun example of using half block characters to draw a logo | ||
fn main() -> io::Result<()> { | ||
let r = indoc! {" | ||
▄▄▄ | ||
█▄▄▀ | ||
█ █ | ||
"} | ||
.lines(); | ||
let a = indoc! {" | ||
▄▄ | ||
█▄▄█ | ||
█ █ | ||
"} | ||
.lines(); | ||
let t = indoc! {" | ||
▄▄▄ | ||
█ | ||
█ | ||
"} | ||
.lines(); | ||
let u = indoc! {" | ||
▄ ▄ | ||
█ █ | ||
▀▄▄▀ | ||
"} | ||
.lines(); | ||
let i = indoc! {" | ||
▄ | ||
█ | ||
█ | ||
"} | ||
.lines(); | ||
let mut terminal = init()?; | ||
terminal.draw(|frame| { | ||
let logo = izip!(r, a.clone(), t.clone(), a, t, u, i) | ||
.map(|(r, a, t, a2, t2, u, i)| { | ||
format!("{:5}{:5}{:4}{:5}{:4}{:5}{:5}", r, a, t, a2, t2, u, i) | ||
}) | ||
.collect::<Vec<_>>() | ||
.join("\n"); | ||
frame.render_widget(Paragraph::new(logo), frame.size()); | ||
})?; | ||
sleep(Duration::from_secs(5)); | ||
restore()?; | ||
println!(); | ||
Ok(()) | ||
} | ||
|
||
pub fn init() -> io::Result<Terminal<impl Backend>> { | ||
enable_raw_mode()?; | ||
let options = TerminalOptions { | ||
viewport: Viewport::Inline(3), | ||
}; | ||
Terminal::with_options(CrosstermBackend::new(stdout()), options) | ||
} | ||
|
||
pub fn restore() -> io::Result<()> { | ||
disable_raw_mode()?; | ||
Ok(()) | ||
} |
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,12 @@ | ||
# This is a vhs script. See https://github.com/charmbracelet/vhs for more info. | ||
# To run this script, install vhs and run `vhs ./examples/popup.tape` | ||
Output "target/ratatui-logo.gif" | ||
Set Theme "Aardvark Blue" | ||
Set Width 550 | ||
Set Height 220 | ||
Hide | ||
Type "cargo run --example=ratatui-logo --features=crossterm" | ||
Enter | ||
Sleep 2s | ||
Show | ||
Sleep 2s |