Skip to content

Commit 0c708ee

Browse files
committed
Add small screencast
1 parent bc17b6d commit 0c708ee

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A minimal radio player for the terminal.
44

5-
![rdo screenhot](docs/screenshot.png)
5+
![rdo screenhot](docs/rdo.gif)
66

77
## Usage
88

docs/rdo.gif

115 KB
Loading

src/ui.rs

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use ratatui::crossterm::event::KeyEvent;
22
use ratatui::style::{Modifier, Style};
3+
use ratatui::widgets::Wrap;
34

45
use crate::app::{App, EditField, Mode, Station};
56

@@ -41,7 +42,7 @@ impl<'a> UI<'a> {
4142
}
4243

4344
fn show_confirm_delete(&mut self, app: &App, f: &mut ratatui::Frame, index: usize) {
44-
let area = centered_rect(60, 15, f.area());
45+
let area = centered_rect(55, 5, f.area());
4546
let name = app
4647
.stations
4748
.get(index)
@@ -55,10 +56,11 @@ impl<'a> UI<'a> {
5556
.block(Block::bordered().title("Delete?").padding(Padding::new(
5657
0,
5758
0,
58-
area.height / 2 - 1,
59+
0,
5960
0,
6061
)))
61-
.centered();
62+
.centered()
63+
.wrap(Wrap { trim: false });
6264
f.render_widget(Clear, area);
6365
f.render_widget(block, area);
6466
}
@@ -122,7 +124,7 @@ impl<'a> UI<'a> {
122124
.title_alignment(Alignment::Center)
123125
.padding(ratatui::widgets::Padding::horizontal(5))
124126
.style(Style::default().bg(Color::DarkGray));
125-
let area = centered_rect(60, 18, f.area());
127+
let area = centered_rect(60, 8, f.area());
126128

127129
let popup_chunks = Layout::default()
128130
.direction(Direction::Vertical)
@@ -193,24 +195,24 @@ impl<'a> UI<'a> {
193195
}
194196
}
195197

196-
pub fn centered_rect(percent_x: u16, percent_y: u16, r: Rect) -> Rect {
198+
pub fn centered_rect(width: u16, height: u16, r: Rect) -> Rect {
197199
// Cut the given rectangle into three vertical pieces
198200
let popup_layout = Layout::default()
199201
.direction(Direction::Vertical)
200202
.constraints([
201-
Constraint::Percentage((100 - percent_y) / 2),
202-
Constraint::Percentage(percent_y),
203-
Constraint::Percentage((100 - percent_y) / 2),
203+
Constraint::Min(0),
204+
Constraint::Length(height),
205+
Constraint::Min(0),
204206
])
205207
.split(r);
206208

207209
// Then cut the middle vertical piece into three width-wise pieces
208210
Layout::default()
209211
.direction(Direction::Horizontal)
210212
.constraints([
211-
Constraint::Percentage((100 - percent_x) / 2),
212-
Constraint::Percentage(percent_x),
213-
Constraint::Percentage((100 - percent_x) / 2),
213+
Constraint::Min(0),
214+
Constraint::Length(width),
215+
Constraint::Min(0),
214216
])
215217
.split(popup_layout[1])[1] // Return the middle chunk
216218
}

0 commit comments

Comments
 (0)