rtlibs-tui 0.1.5

rtools library: ratatui widgets
Documentation
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
use ratatui::layout::Position;

#[derive(Debug, Default)]
pub struct InputState
{
    pub(crate) input: String,
    pub(crate) character_index: usize,
    pub(crate) cursor: Position,
    pub(crate) clear_on_cancel: bool,
    pub(crate) clear_on_confirm: bool,
    pub(crate) max_length: Option<usize>,
    pub(crate) is_numeric: bool,
    pub(crate) right_aligned: bool,
    pub(crate) label: Option<String>,
    pub(crate) pending: Option<String>,
    pub(crate) placeholder: String,
    pub(crate) placeholder_options: Vec<String>,
    pub(crate) placeholder_options_index: usize,
    // path: Option<String>,
}

impl InputState
{
    pub fn new() -> Self
    {
        Self::default()
    }

    pub fn with_placeholder<S>(
        mut self,
        placeholder: S,
    ) -> Self
    where
        S: AsRef<str>,
    {
        self.placeholder = placeholder
            .as_ref()
            .to_string();
        self
    }

    pub fn set_label<S>(
        &mut self,
        label: S,
    ) where
        S: AsRef<str>,
    {
        self.label = Some(
            label
                .as_ref()
                .to_string(),
        )
    }

    pub fn with_label<S>(
        mut self,
        label: S,
    ) -> Self
    where
        S: AsRef<str>,
    {
        self.set_label(label);
        self
    }

    pub fn has_label(&self) -> bool
    {
        self.label
            .is_some()
    }

    pub fn label(&self) -> Option<&String>
    {
        self.label
            .as_ref()
    }

    pub fn right_aligned(mut self) -> Self
    {
        self.right_aligned = true;
        self
    }

    pub fn numeric(mut self) -> Self
    {
        self.is_numeric = true;
        self
    }

    pub fn with_default<S>(
        mut self,
        value: S,
    ) -> Self
    where
        S: AsRef<str>,
    {
        self.input = value
            .as_ref()
            .to_string();
        self
    }

    pub fn with_max_length(
        mut self,
        length: usize,
    ) -> Self
    {
        self.max_length = Some(length);
        self
    }

    pub fn set<S>(
        &mut self,
        text: S,
    ) where
        S: AsRef<str>,
    {
        self.clear();
        self.write(text);
    }

    pub fn write<S>(
        &mut self,
        text: S,
    ) where
        S: AsRef<str>,
    {
        let mut inner = move |text: &str| {
            for c in text.chars()
            {
                self.enter_char(c);
            }
        };

        inner(text.as_ref())
        // for c in text
        //     .as_ref()
        //     .chars()
        // {
        //     self.enter_char(c);
        // }
    }

    pub fn write_pending<S>(
        &mut self,
        text: S,
    ) where
        S: AsRef<str>,
    {
        let mut inner = move |text: &str| {
            if let Some(pending) = self
                .pending
                .as_ref()
            {
                for _ in 0..pending
                    .chars()
                    .count()
                {
                    self.delete_char();
                }
            }
            for c in text.chars()
            {
                self.enter_char(c);
            }
            self.pending = Some(text.to_string());
        };

        inner(text.as_ref())
    }

    // pub fn display_input(&self) -> Line<'_>
    // {
    //     if let Some(placeholder) = self
    //         .placeholder
    //         .as_ref()
    //     {
    //         Line::from(
    //             vec![
    //                 Span::raw(
    //                     self.input
    //                         .clone(),
    //                 ),
    //                 Span::styled(
    //                     placeholder,
    //                     Style::new().dark_gray(),
    //                 ),
    //             ],
    //         )
    //     }
    //     else
    //     {
    //         Line::raw(
    //             self.input
    //                 .clone(),
    //         )
    //     }
    // }

    pub fn input(&self) -> String
    {
        if let Some(pending) = self
            .pending
            .as_ref()
        {
            self.input
                .strip_suffix(pending)
                .map(|s| s.to_string())
                .unwrap_or(
                    self.input
                        .clone(),
                )
        }
        else
        {
            self.input
                .clone()
        }

        // &self.input
    }

    pub fn set_clear_on_cancel(
        &mut self,
        value: bool,
    )
    {
        self.clear_on_cancel = value;
    }

    pub fn with_clear_on_cancel(mut self) -> Self
    {
        self.set_clear_on_cancel(true);
        self
    }

    pub fn clear_on_cancel(&self) -> bool
    {
        self.clear_on_cancel
    }

    pub fn set_clear_on_confirm(
        &mut self,
        value: bool,
    )
    {
        self.clear_on_confirm = value;
    }

    pub fn with_clear_on_confirm(mut self) -> Self
    {
        self.set_clear_on_confirm(true);
        self
    }

    pub fn clear_on_confirm(&self) -> bool
    {
        self.clear_on_confirm
    }

    pub fn cursor(&self) -> Position
    {
        self.cursor
    }

    pub fn clear(&mut self)
    {
        self.input
            .clear();
        self.reset_cursor();
    }

    pub(crate) fn move_cursor_left(&mut self)
    {
        let cursor_moved_left = self
            .character_index
            .saturating_sub(1);
        self.character_index = self.clamp_cursor(cursor_moved_left);
    }

    pub(crate) fn move_cursor_start(&mut self)
    {
        self.character_index = self.clamp_cursor(0);
    }

    pub(crate) fn move_cursor_right(&mut self)
    {
        let cursor_moved_right = self
            .character_index
            .saturating_add(1);
        self.character_index = self.clamp_cursor(cursor_moved_right);
    }

    pub(crate) fn move_cursor_end(&mut self)
    {
        self.character_index = self.clamp_cursor(
            self.input
                .chars()
                .count(),
        )
    }

    pub(crate) fn enter_char(
        &mut self,
        new_char: char,
    )
    {
        if let Some(max_length) = self.max_length
        {
            if self
                .input
                .chars()
                .count()
                >= max_length
            {
                return;
            }
        }

        if self.is_numeric && ((new_char as u8) < 48 || (new_char as u8) > 57)
        {
            return;
        }

        let index = self.byte_index();
        self.input
            .insert(
                index, new_char,
            );
        self.move_cursor_right();
    }

    fn byte_index(&mut self) -> usize
    {
        self.input
            .char_indices()
            .map(|(i, _)| i)
            .nth(self.character_index)
            .unwrap_or(
                self.input
                    .len(),
            )
    }

    pub(crate) fn supp_char(&mut self)
    {
        let is_not_cursor_rightmost = self.character_index
            != self
                .input
                .chars()
                .count();
        if is_not_cursor_rightmost
        {
            let before = self
                .input
                .chars()
                .take(self.character_index);
            let after = self
                .input
                .chars()
                .skip(self.character_index + 1);
            self.input = before
                .chain(after)
                .collect();
        }
    }

    pub(crate) fn delete_char(&mut self)
    {
        let is_not_cursor_leftmost = self.character_index != 0;
        if is_not_cursor_leftmost
        {
            let current_index = self.character_index;
            let from_left_to_current_index = current_index - 1;
            let before_char_to_delete = self
                .input
                .chars()
                .take(from_left_to_current_index);
            let after_char_to_delete = self
                .input
                .chars()
                .skip(current_index);
            self.input = before_char_to_delete
                .chain(after_char_to_delete)
                .collect();
            self.move_cursor_left();
        }
    }

    fn clamp_cursor(
        &self,
        new_cursor_pos: usize,
    ) -> usize
    {
        new_cursor_pos.clamp(
            0,
            self.input
                .chars()
                .count(),
        )
    }

    pub fn reset_cursor(&mut self)
    {
        self.character_index = 0;
    }

    pub fn word_under_cursor(&self) -> String
    {
        let mut start_index = self.character_index;
        if start_index
            == self
                .input
                .chars()
                .count()
        {
            start_index -= 1;
        }
        start_index = start_index.saturating_sub(1);

        // .saturating_sub(1);
        while start_index > 0
            && (self
                .input
                .chars()
                .nth(start_index)
                .unwrap_or(' ')
                != ' ')
        {
            start_index -= 1;
        }
        // if start_index != 0
        // {
        //     start_index += 1;
        // }

        let end_index = self.character_index;
        // let mut end_index = self.character_index;
        let ending = self
            .input
            .chars()
            .count();
        // while (end_index < ending)
        //     && (self
        //         .input
        //         .chars()
        //         .nth(end_index)
        //         .unwrap_or(' ')
        //         != ' ')
        // {
        //     end_index += 1;
        // }
        // end_index -= 1;

        let (start, _) = self
            .input
            .char_indices()
            .nth(start_index)
            .unwrap();

        let part = if end_index == ending
        {
            &self.input[start..]
        }
        else
        {
            let (end, _) = self
                .input
                .char_indices()
                .nth(end_index)
                .unwrap();
            &self.input[start..end]
        };

        // let part = &self
        //     .input
        //     .chars()
        //     .collect::<Vec<_>>()[start_index..end_index]
        //     .join("");
        //
        // println!("--{part}--");

        part.trim()
            .to_string()
    }

    pub fn has_placeholder(&self) -> bool
    {
        !self
            .placeholder
            .is_empty()
        // if let Some(placeholder) = self
        //     .placeholder
        //     .as_ref()
        // {
        //     !placeholder.is_empty()
        // }
        // else
        // {
        //     false
        // }
    }

    pub(crate) fn clear_placeholder(&mut self)
    {
        self.placeholder
            .clear();
        self.placeholder_options
            .clear();
        self.placeholder_options_index = 0;
    }
}