termscp 1.0.0

termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/Kube/S3/WebDAV
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
//! ## Theme
//!
//! theme tab components

use tui_realm_stdlib::components::{Input, Label};
use tuirealm::command::{Cmd, CmdResult, Direction, Position};
use tuirealm::component::{AppComponent, Component};
use tuirealm::event::{Event, Key, KeyEvent, KeyModifiers, NoUserEvent};
use tuirealm::props::{
    AttrValue, Attribute, BorderType, Borders, Color, HorizontalAlignment, InputType, Style,
    TextModifiers, Title,
};
use tuirealm::state::{State, StateValue};

use super::{Msg, ThemeMsg};
use crate::ui::activities::setup::IdTheme;

// -- components

#[derive(Component)]
pub struct AuthTitle {
    component: Label,
}

impl Default for AuthTitle {
    fn default() -> Self {
        Self {
            component: Label::default()
                .modifiers(TextModifiers::BOLD)
                .text("Authentication styles"),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthTitle {
    fn on(&mut self, _ev: &Event<NoUserEvent>) -> Option<Msg> {
        None
    }
}

#[derive(Component)]
pub struct MiscTitle {
    component: Label,
}

impl Default for MiscTitle {
    fn default() -> Self {
        Self {
            component: Label::default()
                .modifiers(TextModifiers::BOLD)
                .text("Misc styles"),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscTitle {
    fn on(&mut self, _ev: &Event<NoUserEvent>) -> Option<Msg> {
        None
    }
}

#[derive(Component)]
pub struct TransferTitle {
    component: Label,
}

impl Default for TransferTitle {
    fn default() -> Self {
        Self {
            component: Label::default()
                .modifiers(TextModifiers::BOLD)
                .text("Transfer styles"),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for TransferTitle {
    fn on(&mut self, _ev: &Event<NoUserEvent>) -> Option<Msg> {
        None
    }
}

#[derive(Component)]
pub struct TransferTitle2 {
    component: Label,
}

impl Default for TransferTitle2 {
    fn default() -> Self {
        Self {
            component: Label::default()
                .modifiers(TextModifiers::BOLD)
                .text("Transfer styles (2)"),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for TransferTitle2 {
    fn on(&mut self, _ev: &Event<NoUserEvent>) -> Option<Msg> {
        None
    }
}

#[derive(Component)]
pub struct AuthAddress {
    component: InputColor,
}

impl AuthAddress {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Ip Address",
                IdTheme::AuthAddress,
                value,
                Msg::Theme(ThemeMsg::AuthAddressBlurDown),
                Msg::Theme(ThemeMsg::AuthAddressBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthAddress {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct AuthBookmarks {
    component: InputColor,
}

impl AuthBookmarks {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Bookmarks",
                IdTheme::AuthBookmarks,
                value,
                Msg::Theme(ThemeMsg::AuthBookmarksBlurDown),
                Msg::Theme(ThemeMsg::AuthBookmarksBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthBookmarks {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct AuthPassword {
    component: InputColor,
}

impl AuthPassword {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Password",
                IdTheme::AuthPassword,
                value,
                Msg::Theme(ThemeMsg::AuthPasswordBlurDown),
                Msg::Theme(ThemeMsg::AuthPasswordBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthPassword {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct AuthPort {
    component: InputColor,
}

impl AuthPort {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Port",
                IdTheme::AuthPort,
                value,
                Msg::Theme(ThemeMsg::AuthPortBlurDown),
                Msg::Theme(ThemeMsg::AuthPortBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthPort {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct AuthProtocol {
    component: InputColor,
}

impl AuthProtocol {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Protocol",
                IdTheme::AuthProtocol,
                value,
                Msg::Theme(ThemeMsg::AuthProtocolBlurDown),
                Msg::Theme(ThemeMsg::AuthProtocolBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthProtocol {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct AuthRecentHosts {
    component: InputColor,
}

impl AuthRecentHosts {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Recent connections",
                IdTheme::AuthRecentHosts,
                value,
                Msg::Theme(ThemeMsg::AuthRecentHostsBlurDown),
                Msg::Theme(ThemeMsg::AuthRecentHostsBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthRecentHosts {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}
#[derive(Component)]
pub struct AuthUsername {
    component: InputColor,
}

impl AuthUsername {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Username",
                IdTheme::AuthUsername,
                value,
                Msg::Theme(ThemeMsg::AuthUsernameBlurDown),
                Msg::Theme(ThemeMsg::AuthUsernameBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for AuthUsername {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ExplorerLocalBg {
    component: InputColor,
}

impl ExplorerLocalBg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Local explorer background",
                IdTheme::ExplorerLocalBg,
                value,
                Msg::Theme(ThemeMsg::ExplorerLocalBgBlurDown),
                Msg::Theme(ThemeMsg::ExplorerLocalBgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ExplorerLocalBg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ExplorerLocalFg {
    component: InputColor,
}

impl ExplorerLocalFg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Local explorer foreground",
                IdTheme::ExplorerLocalFg,
                value,
                Msg::Theme(ThemeMsg::ExplorerLocalFgBlurDown),
                Msg::Theme(ThemeMsg::ExplorerLocalFgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ExplorerLocalFg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ExplorerLocalHg {
    component: InputColor,
}

impl ExplorerLocalHg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Local explorer highlighted",
                IdTheme::ExplorerLocalHg,
                value,
                Msg::Theme(ThemeMsg::ExplorerLocalHgBlurDown),
                Msg::Theme(ThemeMsg::ExplorerLocalHgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ExplorerLocalHg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ExplorerRemoteBg {
    component: InputColor,
}

impl ExplorerRemoteBg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Remote explorer background",
                IdTheme::ExplorerRemoteBg,
                value,
                Msg::Theme(ThemeMsg::ExplorerRemoteBgBlurDown),
                Msg::Theme(ThemeMsg::ExplorerRemoteBgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ExplorerRemoteBg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ExplorerRemoteFg {
    component: InputColor,
}

impl ExplorerRemoteFg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Remote explorer foreground",
                IdTheme::ExplorerRemoteFg,
                value,
                Msg::Theme(ThemeMsg::ExplorerRemoteFgBlurDown),
                Msg::Theme(ThemeMsg::ExplorerRemoteFgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ExplorerRemoteFg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ExplorerRemoteHg {
    component: InputColor,
}

impl ExplorerRemoteHg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Remote explorer highlighted",
                IdTheme::ExplorerRemoteHg,
                value,
                Msg::Theme(ThemeMsg::ExplorerRemoteHgBlurDown),
                Msg::Theme(ThemeMsg::ExplorerRemoteHgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ExplorerRemoteHg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct LogBg {
    component: InputColor,
}

impl LogBg {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Log window background",
                IdTheme::LogBg,
                value,
                Msg::Theme(ThemeMsg::LogBgBlurDown),
                Msg::Theme(ThemeMsg::LogBgBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for LogBg {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct LogWindow {
    component: InputColor,
}

impl LogWindow {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Log window",
                IdTheme::LogWindow,
                value,
                Msg::Theme(ThemeMsg::LogWindowBlurDown),
                Msg::Theme(ThemeMsg::LogWindowBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for LogWindow {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscError {
    component: InputColor,
}

impl MiscError {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Error",
                IdTheme::MiscError,
                value,
                Msg::Theme(ThemeMsg::MiscErrorBlurDown),
                Msg::Theme(ThemeMsg::MiscErrorBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscError {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscInfo {
    component: InputColor,
}

impl MiscInfo {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Info",
                IdTheme::MiscInfo,
                value,
                Msg::Theme(ThemeMsg::MiscInfoBlurDown),
                Msg::Theme(ThemeMsg::MiscInfoBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscInfo {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscInput {
    component: InputColor,
}

impl MiscInput {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Input",
                IdTheme::MiscInput,
                value,
                Msg::Theme(ThemeMsg::MiscInputBlurDown),
                Msg::Theme(ThemeMsg::MiscInputBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscInput {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscKeys {
    component: InputColor,
}

impl MiscKeys {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Key strokes",
                IdTheme::MiscKeys,
                value,
                Msg::Theme(ThemeMsg::MiscKeysBlurDown),
                Msg::Theme(ThemeMsg::MiscKeysBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscKeys {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscQuit {
    component: InputColor,
}

impl MiscQuit {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Quit dialogs",
                IdTheme::MiscQuit,
                value,
                Msg::Theme(ThemeMsg::MiscQuitBlurDown),
                Msg::Theme(ThemeMsg::MiscQuitBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscQuit {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscSave {
    component: InputColor,
}

impl MiscSave {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Save confirmations",
                IdTheme::MiscSave,
                value,
                Msg::Theme(ThemeMsg::MiscSaveBlurDown),
                Msg::Theme(ThemeMsg::MiscSaveBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscSave {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct MiscWarn {
    component: InputColor,
}

impl MiscWarn {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Warnings",
                IdTheme::MiscWarn,
                value,
                Msg::Theme(ThemeMsg::MiscWarnBlurDown),
                Msg::Theme(ThemeMsg::MiscWarnBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for MiscWarn {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct ProgBar {
    component: InputColor,
}

impl ProgBar {
    pub fn new(color: Color) -> Self {
        Self {
            component: InputColor::new(
                "Progress bar",
                IdTheme::ProgBar,
                color,
                Msg::Theme(ThemeMsg::ProgBarBlurDown),
                Msg::Theme(ThemeMsg::ProgBarBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for ProgBar {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct StatusHidden {
    component: InputColor,
}

impl StatusHidden {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Hidden files",
                IdTheme::StatusHidden,
                value,
                Msg::Theme(ThemeMsg::StatusHiddenBlurDown),
                Msg::Theme(ThemeMsg::StatusHiddenBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for StatusHidden {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct StatusSorting {
    component: InputColor,
}

impl StatusSorting {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "File sorting",
                IdTheme::StatusSorting,
                value,
                Msg::Theme(ThemeMsg::StatusSortingBlurDown),
                Msg::Theme(ThemeMsg::StatusSortingBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for StatusSorting {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

#[derive(Component)]
pub struct StatusSync {
    component: InputColor,
}

impl StatusSync {
    pub fn new(value: Color) -> Self {
        Self {
            component: InputColor::new(
                "Synchronized browsing",
                IdTheme::StatusSync,
                value,
                Msg::Theme(ThemeMsg::StatusSyncBlurDown),
                Msg::Theme(ThemeMsg::StatusSyncBlurUp),
            ),
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for StatusSync {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        self.component.on(ev)
    }
}

// -- input color

#[derive(Component)]
struct InputColor {
    component: Input,
    id: IdTheme,
    on_key_down: Msg,
    on_key_up: Msg,
}

impl InputColor {
    pub fn new(name: &str, id: IdTheme, color: Color, on_key_down: Msg, on_key_up: Msg) -> Self {
        let value = crate::utils::fmt::fmt_color(&color);
        Self {
            component: Input::default()
                .borders(
                    Borders::default()
                        .color(color)
                        .modifiers(BorderType::Rounded),
                )
                .foreground(color)
                .input_type(InputType::Color)
                .placeholder(tuirealm::props::SpanStatic::styled(
                    "#aa33ee",
                    Style::default().fg(Color::Rgb(128, 128, 128)),
                ))
                .title(Title::from(name.to_string()).alignment(HorizontalAlignment::Left))
                .value(value),
            id,
            on_key_down,
            on_key_up,
        }
    }

    fn update_color(&mut self, result: CmdResult) -> Option<Msg> {
        if let CmdResult::Changed(State::Single(StateValue::String(color))) = result {
            let color = tuirealm::utils::parser::parse_color(&color).unwrap();
            self.attr(Attribute::Foreground, AttrValue::Color(color));
            self.attr(
                Attribute::Borders,
                AttrValue::Borders(
                    Borders::default()
                        .modifiers(BorderType::Rounded)
                        .color(color),
                ),
            );
            Some(Msg::Theme(ThemeMsg::ColorChanged(self.id.clone(), color)))
        } else {
            self.attr(Attribute::Foreground, AttrValue::Color(Color::Red));
            self.attr(
                Attribute::Borders,
                AttrValue::Borders(
                    Borders::default()
                        .modifiers(BorderType::Rounded)
                        .color(Color::Red),
                ),
            );
            Some(Msg::None)
        }
    }
}

impl AppComponent<Msg, NoUserEvent> for InputColor {
    fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
        match ev {
            Event::Keyboard(KeyEvent {
                code: Key::Left, ..
            }) => {
                self.perform(Cmd::Move(Direction::Left));
                Some(Msg::None)
            }
            Event::Keyboard(KeyEvent {
                code: Key::Right, ..
            }) => {
                self.perform(Cmd::Move(Direction::Right));
                Some(Msg::None)
            }
            Event::Keyboard(KeyEvent {
                code: Key::Home, ..
            }) => {
                self.perform(Cmd::GoTo(Position::Begin));
                Some(Msg::None)
            }
            Event::Keyboard(KeyEvent { code: Key::End, .. }) => {
                self.perform(Cmd::GoTo(Position::End));
                Some(Msg::None)
            }
            Event::Keyboard(KeyEvent {
                code: Key::Delete, ..
            }) => {
                let result = self.perform(Cmd::Cancel);
                self.update_color(result)
            }
            Event::Keyboard(KeyEvent {
                code: Key::Backspace,
                ..
            }) => {
                let result = self.perform(Cmd::Delete);
                self.update_color(result)
            }
            Event::Keyboard(KeyEvent {
                // NOTE: escaped control sequence
                code: Key::Char('h' | 'r' | 's'),
                modifiers: KeyModifiers::CONTROL,
            }) => Some(Msg::None),
            Event::Keyboard(KeyEvent {
                code: Key::Char(ch),
                ..
            }) => {
                let result = self.perform(Cmd::Type(*ch));
                self.update_color(result)
            }
            Event::Keyboard(KeyEvent {
                code: Key::Down, ..
            }) => Some(self.on_key_down.clone()),
            Event::Keyboard(KeyEvent { code: Key::Up, .. }) => Some(self.on_key_up.clone()),
            _ => None,
        }
    }
}