-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtext_prompt.rs
More file actions
528 lines (462 loc) · 17.1 KB
/
text_prompt.rs
File metadata and controls
528 lines (462 loc) · 17.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
use std::borrow::Cow;
use std::vec;
use itertools::Itertools;
use ratatui_core::buffer::Buffer;
use ratatui_core::layout::Rect;
use ratatui_core::style::Stylize;
use ratatui_core::terminal::Frame;
use ratatui_core::text::{Line, Span};
use ratatui_core::widgets::{StatefulWidget, Widget};
use ratatui_widgets::block::Block;
use ratatui_widgets::paragraph::Paragraph;
use unicode_width::UnicodeWidthStr;
use crate::prelude::*;
// TODO style the widget
// TODO style each element of the widget.
// TODO handle multi-line input.
// TODO handle scrolling.
// TODO handle vertical movement.
// TODO handle bracketed paste.
/// A prompt widget that displays a message and a text input.
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct TextPrompt<'a> {
/// The message to display to the user before the input.
message: Cow<'a, str>,
/// The block to wrap the prompt in.
block: Option<Block<'a>>,
render_style: TextRenderStyle,
status_enabled: bool,
}
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Hash)]
pub enum TextRenderStyle {
#[default]
Default,
Password,
Invisible,
}
impl TextRenderStyle {
#[must_use]
pub fn render(&self, state: &TextState) -> String {
match self {
Self::Default => state.value().to_string(),
Self::Password => "*".repeat(state.len()),
Self::Invisible => String::new(),
}
}
}
impl<'a> TextPrompt<'a> {
#[must_use]
pub const fn new(message: Cow<'a, str>) -> Self {
Self {
message,
block: None,
render_style: TextRenderStyle::Default,
status_enabled: true,
}
}
#[must_use]
pub fn with_block(mut self, block: Block<'a>) -> Self {
self.block = Some(block);
self
}
#[must_use]
pub const fn with_render_style(mut self, render_style: TextRenderStyle) -> Self {
self.render_style = render_style;
self
}
#[must_use]
pub const fn with_status_disabled(mut self) -> Self {
self.status_enabled = false;
self
}
}
impl Prompt for TextPrompt<'_> {
/// Draws the prompt widget.
///
/// This is in addition to the `Widget` trait implementation as we need the `Frame` to set the
/// cursor position.
fn draw(self, frame: &mut Frame, area: Rect, state: &mut Self::State) {
frame.render_stateful_widget(self, area, state);
if state.is_focused() {
frame.set_cursor_position(state.cursor());
}
}
}
impl<'a> StatefulWidget for TextPrompt<'a> {
type State = TextState<'a>;
fn render(mut self, mut area: Rect, buf: &mut Buffer, state: &mut Self::State) {
self.render_block(&mut area, buf);
let width = area.width as usize;
let height = area.height as usize;
let value = Span::raw(self.render_style.render(state));
let value_width = value.width();
let line = {
let mut parts = vec![];
if self.status_enabled {
parts.push(state.status().symbol());
parts.push(" ".into());
}
parts.push(self.message.bold());
parts.push(" › ".cyan().dim());
parts.push(value);
Line::from(parts)
};
let prompt_width = line.width() - value_width;
let lines = wrap(line, width).take(height).collect_vec();
// constrain the position to the area
let position = state.width_to_pos(state.position()) + prompt_width;
let position = position.min(area.area() as usize - 1);
let row = position / width;
let column = position % width;
*state.cursor_mut() = (area.x + column as u16, area.y + row as u16);
Paragraph::new(lines).render(area, buf);
}
}
/// wraps a line into multiple lines of the given width.
///
/// This is a character based wrap, not a word based wrap.
///
/// TODO: move this into the `Line` type.
fn wrap(line: Line, width: usize) -> impl Iterator<Item = Line> {
let mut line = line;
std::iter::from_fn(move || {
if line.width() > width {
let (first, second) = line_split_at(line.clone(), width);
line = second;
Some(first)
} else if line.width() > 0 {
let first = line.clone();
line = Line::default();
Some(first)
} else {
None
}
})
}
/// splits a line into two lines at the given position.
///
/// TODO: move this into the `Line` type.
/// TODO: fix this so that it operates on multi-width characters.
fn line_split_at(line: Line, mid: usize) -> (Line, Line) {
let mut first = Line::default();
let mut second = Line::default();
first.alignment = line.alignment;
second.alignment = line.alignment;
for span in line.spans {
let first_width = first.width();
let span_width = span.width();
if first_width + span_width <= mid {
first.spans.push(span);
} else if first_width < mid && first_width + span_width > mid {
let span_mid = mid - first_width;
let (span_first, span_second) = span_split_at(span, span_mid);
first.spans.push(span_first);
second.spans.push(span_second);
} else {
second.spans.push(span);
}
}
(first, second)
}
/// Splits a span into two spans at the given character width
///
/// TODO: move this into the `Span` type.
fn span_split_at(span: Span, mid: usize) -> (Span, Span) {
let mut first = String::new();
let mut second = span.content.to_string();
while first.width() < mid {
first.push(second.remove(0));
}
(
Span::styled(first, span.style),
Span::styled(second, span.style),
)
}
impl TextPrompt<'_> {
fn render_block(&mut self, area: &mut Rect, buf: &mut Buffer) {
if let Some(block) = self.block.take() {
let inner = block.inner(*area);
block.render(*area, buf);
*area = inner;
};
}
}
impl<T> From<T> for TextPrompt<'static>
where
T: Into<Cow<'static, str>>,
{
fn from(message: T) -> Self {
Self::new(message.into())
}
}
#[cfg(test)]
mod tests {
use ratatui_core::backend::{Backend, TestBackend};
use ratatui_core::layout::Position;
use ratatui_core::style::{Color, Modifier};
use ratatui_core::terminal::Terminal;
use ratatui_macros::line;
use ratatui_widgets::borders::Borders;
use rstest::{fixture, rstest};
use super::*;
use crate::Status;
#[test]
fn new() {
const PROMPT: TextPrompt<'_> = TextPrompt::new(Cow::Borrowed("Enter your name"));
assert_eq!(PROMPT.message, "Enter your name");
assert_eq!(PROMPT.block, None);
assert_eq!(PROMPT.render_style, TextRenderStyle::Default);
}
#[test]
fn default() {
let prompt = TextPrompt::default();
assert_eq!(prompt.message, "");
assert_eq!(prompt.block, None);
assert_eq!(prompt.render_style, TextRenderStyle::Default);
}
#[test]
fn from() {
let prompt = TextPrompt::from("Enter your name");
assert_eq!(prompt.message, "Enter your name");
}
#[test]
fn render() {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new();
let mut buffer = Buffer::empty(Rect::new(0, 0, 15, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line!["?".cyan(), " ", "prompt".bold(), " › ".cyan().dim(), " ",];
assert_eq!(buffer, Buffer::with_lines([line]));
assert_eq!(state.cursor(), (11, 0));
}
#[test]
fn render_emoji() {
let prompt = TextPrompt::from("🔍");
let mut state = TextState::new();
let mut buffer = Buffer::empty(Rect::new(0, 0, 11, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line!["?".cyan(), " ", "🔍".bold(), " › ".cyan().dim(), " "];
assert_eq!(buffer, Buffer::with_lines([line]));
assert_eq!(state.cursor(), (7, 0));
}
#[test]
fn render_with_done() {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_status(Status::Done);
let mut buffer = Buffer::empty(Rect::new(0, 0, 15, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line![
"✔".green(),
" ",
"prompt".bold(),
" › ".cyan().dim(),
" "
];
assert_eq!(buffer, Buffer::with_lines([line]));
}
#[test]
fn render_with_aborted() {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_status(Status::Aborted);
let mut buffer = Buffer::empty(Rect::new(0, 0, 15, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line!["✘".red(), " ", "prompt".bold(), " › ".cyan().dim(), " "];
assert_eq!(buffer, Buffer::with_lines([line]));
}
#[test]
fn render_with_disabled_status() {
let prompt = TextPrompt::from("prompt").with_status_disabled();
let mut state = TextState::new().with_status(Status::Aborted);
let mut buffer = Buffer::empty(Rect::new(0, 0, 13, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line!["prompt".bold(), " › ".cyan().dim(), " "];
assert_eq!(buffer, Buffer::with_lines([line]));
}
#[test]
fn render_with_value() {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_value("value");
let mut buffer = Buffer::empty(Rect::new(0, 0, 30, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line![
"?".cyan(),
" ",
"prompt".bold(),
" › ".cyan().dim(),
"value ".to_string()
];
assert_eq!(buffer, Buffer::with_lines([line]));
}
#[test]
fn render_with_block() {
let prompt = TextPrompt::from("prompt")
.with_block(Block::default().borders(Borders::ALL).title("Title"));
let mut state = TextState::new();
let mut buffer = Buffer::empty(Rect::new(0, 0, 15, 3));
prompt.render(buffer.area, &mut buffer, &mut state);
let mut expected = Buffer::with_lines(vec![
"┌Title────────┐",
"│? prompt › │",
"└─────────────┘",
]);
expected.set_style(Rect::new(1, 1, 1, 1), Color::Cyan);
expected.set_style(Rect::new(3, 1, 6, 1), Modifier::BOLD);
expected.set_style(Rect::new(9, 1, 3, 1), (Color::Cyan, Modifier::DIM));
assert_eq!(buffer, expected);
}
#[test]
fn render_password() {
let prompt = TextPrompt::from("prompt").with_render_style(TextRenderStyle::Password);
let mut state = TextState::new().with_value("value");
let mut buffer = Buffer::empty(Rect::new(0, 0, 30, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line![
"?".cyan(),
" ",
"prompt".bold(),
" › ".cyan().dim(),
"***** ".to_string()
];
assert_eq!(buffer, Buffer::with_lines([line]));
}
#[test]
fn render_invisible() {
let prompt = TextPrompt::from("prompt").with_render_style(TextRenderStyle::Invisible);
let mut state = TextState::new().with_value("value");
let mut buffer = Buffer::empty(Rect::new(0, 0, 30, 1));
prompt.render(buffer.area, &mut buffer, &mut state);
let line = line![
"?".cyan(),
" ",
"prompt".bold(),
" › ".cyan().dim(),
" ".to_string()
];
assert_eq!(buffer, Buffer::with_lines([line]));
}
#[fixture]
fn terminal() -> Terminal<TestBackend> {
Terminal::new(TestBackend::new(17, 2)).unwrap()
}
type Result<T> = std::result::Result<T, core::convert::Infallible>;
#[rstest]
fn draw_not_focused<'a>(mut terminal: Terminal<TestBackend>) -> Result<()> {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_value("hello");
// The cursor is not changed when the prompt is not focused.
let _ = terminal.draw(|frame| prompt.draw(frame, frame.area(), &mut state))?;
assert_eq!(state.cursor(), (11, 0));
assert_eq!(
terminal.backend_mut().get_cursor_position().unwrap(),
Position::ORIGIN
);
Ok(())
}
#[rstest]
fn draw_focused<'a>(mut terminal: Terminal<TestBackend>) -> Result<()> {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_value("hello");
// The cursor is changed when the prompt is focused.
state.focus();
let _ = terminal.draw(|frame| prompt.clone().draw(frame, frame.area(), &mut state))?;
assert_eq!(state.cursor(), (11, 0));
assert_eq!(
terminal.backend_mut().get_cursor_position().unwrap(),
Position::new(11, 0)
);
Ok(())
}
#[rstest]
#[case::position_0(0, (11, 0))] // start of value
#[case::position_3(2, (13, 0))] // middle of value
#[case::position_4(4, (15, 0))] // last character of value
#[case::position_5(5, (16, 0))] // one character beyond the value
fn draw_unwrapped_position<'a>(
#[case] position: usize,
#[case] expected_cursor: (u16, u16),
mut terminal: Terminal<TestBackend>,
) -> Result<()> {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_value("hello");
// expected: "? prompt › hello "
// " "
// position: 012345
// cursor: 01234567890123456
// The cursor is changed when the prompt is focused and the position is changed.
state.focus();
*state.position_mut() = position;
let _ = terminal.draw(|frame| prompt.clone().draw(frame, frame.area(), &mut state))?;
assert_eq!(state.cursor(), expected_cursor);
assert_eq!(terminal.get_cursor_position()?, expected_cursor.into());
Ok(())
}
#[rstest]
#[case::position_0(0, (11, 0))]
#[case::position_1(1, (13, 0))]
#[case::position_2(2, (15, 0))]
#[case::position_3(3, (0, 1))]
fn draw_wrapped_position_fullwidth<'a>(
#[case] position: usize,
#[case] expected_cursor: (u16, u16),
mut terminal: Terminal<TestBackend>,
) -> Result<()> {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_value("ほげほげほげ");
state.focus();
*state.position_mut() = position;
let _ = terminal.draw(|frame| prompt.clone().draw(frame, frame.area(), &mut state))?;
assert_eq!(state.cursor(), expected_cursor);
assert_eq!(terminal.get_cursor_position()?, expected_cursor.into());
Ok(())
}
#[rstest]
#[case::position_0(0, (12, 0))]
#[case::position_1(1, (14, 0))]
#[ignore]
#[case::position_2(2, (0, 1))]
#[ignore]
#[case::position_3(3, (2, 1))]
fn draw_wrapped_position_fullwidth_shift_by_one<'a>(
#[case] position: usize,
#[case] expected_cursor: (u16, u16),
mut terminal: Terminal<TestBackend>,
) -> Result<()> {
let prompt = TextPrompt::from("prompt2");
let mut state = TextState::new().with_value("ほげほげほげ");
state.focus();
*state.position_mut() = position;
let _ = terminal.draw(|frame| prompt.clone().draw(frame, frame.area(), &mut state))?;
assert_eq!(state.cursor(), expected_cursor);
assert_eq!(terminal.get_cursor_position()?, expected_cursor.into());
Ok(())
}
#[rstest]
#[case::position_0(0, (11, 0))] // start of value
#[case::position_1(3, (14, 0))] // middle of value
#[case::position_5(5, (16, 0))] // end of line
#[case::position_6(6, (0, 1))] // first character of the second line
#[case::position_7(7, (1, 1))] // second character of the second line
#[case::position_11(10, (4, 1))] // last character of the value
#[case::position_12(11, (5, 1))] // one character beyond the value
fn draw_wrapped_position<'a>(
#[case] position: usize,
#[case] expected_cursor: (u16, u16),
mut terminal: Terminal<TestBackend>,
) -> Result<()> {
let prompt = TextPrompt::from("prompt");
let mut state = TextState::new().with_value("hello world");
// line 1: "? prompt › hello "
// position: 012345
// cursor: 01234567890123456
// line 2: "world "
// position: 678901
// cursor: 01234567890123456
// The cursor is changed when the prompt is focused and the position is changed.
state.focus();
*state.position_mut() = position;
let _ = terminal.draw(|frame| prompt.clone().draw(frame, frame.area(), &mut state))?;
assert_eq!(state.cursor(), expected_cursor);
assert_eq!(terminal.get_cursor_position()?, expected_cursor.into());
Ok(())
}
}