FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
opencode/.opencode/plugins/tui-smoke.tsx at dev · resting/opencode · GitHub
resting
/
opencode
Public
forked from
anomalyco/opencode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
opencode
/
.opencode
/
plugins
/
tui-smoke.tsx
Copy path
More file actions
More file actions
Latest commit
History
History
History
1019 lines (960 loc) · 30.5 KB
Breadcrumbs
opencode
/
.opencode
/
plugins
/
tui-smoke.tsx
Copy path
File metadata and controls
1019 lines (960 loc) · 30.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
@jsxImportSource
@opentui
/solid */
import
{
useTerminalDimensions
,
type
JSX
}
from
"@opentui/solid"
import
{
useBindings
,
useKeymapSelector
}
from
"@opentui/keymap/solid"
import
{
RGBA
,
VignetteEffect
,
type
KeyEvent
,
type
Renderable
}
from
"@opentui/core"
import
{
createBindingLookup
,
type
BindingConfig
}
from
"@opentui/keymap/extras"
import
type
{
TuiPlugin
,
TuiPluginApi
,
TuiPluginMeta
,
TuiPluginModule
,
TuiSlotPlugin
}
from
"@opencode-ai/plugin/tui"
const
tabs
=
[
"overview"
,
"counter"
,
"help"
]
const
command
=
{
modal
:
"smoke_modal"
,
screen
:
"smoke_screen"
,
alert
:
"smoke_alert"
,
confirm
:
"smoke_confirm"
,
prompt
:
"smoke_prompt"
,
select
:
"smoke_select"
,
host
:
"smoke_host"
,
home
:
"smoke_home"
,
toast
:
"smoke_toast"
,
dialog_close
:
"smoke_dialog_close"
,
local_push
:
"smoke_local_push"
,
local_pop
:
"smoke_local_pop"
,
screen_home
:
"smoke_screen_home"
,
screen_left
:
"smoke_screen_left"
,
screen_right
:
"smoke_screen_right"
,
screen_up
:
"smoke_screen_up"
,
screen_down
:
"smoke_screen_down"
,
screen_modal
:
"smoke_screen_modal"
,
screen_local
:
"smoke_screen_local"
,
screen_host
:
"smoke_screen_host"
,
screen_alert
:
"smoke_screen_alert"
,
screen_confirm
:
"smoke_screen_confirm"
,
screen_prompt
:
"smoke_screen_prompt"
,
screen_select
:
"smoke_screen_select"
,
modal_accept
:
"smoke_modal_accept"
,
modal_close
:
"smoke_modal_close"
,
}
type
SmokeBindings
=
BindingConfig
<
Renderable
,
KeyEvent
>
const
defaultKeymap
=
{
[
command
.
modal
]
:
"ctrl+shift+m"
,
[
command
.
screen
]
:
"ctrl+shift+o"
,
[
command
.
dialog_close
]
:
"escape"
,
[
command
.
local_push
]
:
"enter,return"
,
[
command
.
local_pop
]
:
"escape,q,backspace"
,
[
command
.
screen_home
]
:
"escape,ctrl+h"
,
[
command
.
screen_left
]
:
"left,h"
,
[
command
.
screen_right
]
:
"right,l"
,
[
command
.
screen_up
]
:
"up,k"
,
[
command
.
screen_down
]
:
"down,j"
,
[
command
.
screen_modal
]
:
"ctrl+shift+m"
,
[
command
.
screen_local
]
:
"x"
,
[
command
.
screen_host
]
:
"z"
,
[
command
.
screen_alert
]
:
"a"
,
[
command
.
screen_confirm
]
:
"c"
,
[
command
.
screen_prompt
]
:
"p"
,
[
command
.
screen_select
]
:
"s"
,
[
command
.
modal_accept
]
:
"enter,return"
,
[
command
.
modal_close
]
:
"escape"
,
}
const
pick
=
(
value
:
unknown
,
fallback
:
string
)
=>
{
if
(
typeof
value
!==
"string"
)
return
fallback
if
(
!
value
.
trim
(
)
)
return
fallback
return
value
}
const
num
=
(
value
:
unknown
,
fallback
:
number
)
=>
{
if
(
typeof
value
!==
"number"
)
return
fallback
return
value
}
const
record
=
(
value
:
unknown
)
:
value
is
Record
<
string
,
unknown
>
=>
!
!
value
&&
typeof
value
===
"object"
&&
!
Array
.
isArray
(
value
)
type
Cfg
=
{
label
:
string
route
:
string
vignette
:
number
keybinds
:
SmokeBindings
|
undefined
}
type
Route
=
{
modal
:
string
screen
:
string
}
type
State
=
{
tab
:
number
count
:
number
source
:
string
note
:
string
selected
:
string
local
:
number
}
const
cfg
=
(
options
:
Record
<
string
,
unknown
>
|
undefined
)
=>
{
return
{
label
:
pick
(
options
?.
label
,
"smoke"
)
,
route
:
pick
(
options
?.
route
,
"workspace-smoke"
)
,
vignette
:
Math
.
max
(
0
,
num
(
options
?.
vignette
,
0.35
)
)
,
keybinds
:
record
(
options
?.
keybinds
)
?
(
options
.
keybinds
as
SmokeBindings
)
:
undefined
,
}
}
const
names
=
(
input
:
Cfg
)
=>
{
return
{
modal
:
`
${
input
.
route
}
.modal`
,
screen
:
`
${
input
.
route
}
.screen`
,
}
}
function
createKeys
(
input
:
SmokeBindings
|
undefined
)
{
return
createBindingLookup
(
{
...
defaultKeymap
,
...
input
}
)
}
type
Keys
=
ReturnType
<
typeof
createKeys
>
const
ui
=
{
panel
:
"#1d1d1d"
,
border
:
"#4a4a4a"
,
text
:
"#f0f0f0"
,
muted
:
"#a5a5a5"
,
accent
:
"#5f87ff"
,
}
type
Color
=
RGBA
|
string
const
ink
=
(
map
:
Record
<
string
,
unknown
>
,
name
:
string
,
fallback
:
string
)
:
Color
=>
{
const
value
=
map
[
name
]
if
(
typeof
value
===
"string"
)
return
value
if
(
value
instanceof
RGBA
)
return
value
return
fallback
}
const
look
=
(
map
:
Record
<
string
,
unknown
>
)
=>
{
return
{
panel
:
ink
(
map
,
"backgroundPanel"
,
ui
.
panel
)
,
border
:
ink
(
map
,
"border"
,
ui
.
border
)
,
text
:
ink
(
map
,
"text"
,
ui
.
text
)
,
muted
:
ink
(
map
,
"textMuted"
,
ui
.
muted
)
,
accent
:
ink
(
map
,
"primary"
,
ui
.
accent
)
,
selected
:
ink
(
map
,
"selectedListItemText"
,
ui
.
text
)
,
}
}
const
tone
=
(
api
:
TuiPluginApi
)
=>
{
return
look
(
api
.
theme
.
current
)
}
type
Skin
=
{
panel
:
Color
border
:
Color
text
:
Color
muted
:
Color
accent
:
Color
selected
:
Color
}
const
Btn
=
(
props
:
{
txt
:
string
;
run
:
(
)
=>
void
;
skin
:
Skin
;
on
?:
boolean
}
)
=>
{
return
(
<
box
onMouseUp
=
{
(
)
=>
{
props
.
run
(
)
}
}
backgroundColor
=
{
props
.
on
?
props
.
skin
.
accent
:
props
.
skin
.
border
}
paddingLeft
=
{
1
}
paddingRight
=
{
1
}
>
<
text
fg
=
{
props
.
on
?
props
.
skin
.
selected
:
props
.
skin
.
text
}
>
{
props
.
txt
}
</
text
>
</
box
>
)
}
const
parse
=
(
params
:
Record
<
string
,
unknown
>
|
undefined
)
=>
{
const
tab
=
typeof
params
?.
tab
===
"number"
?
params
.
tab
:
0
const
count
=
typeof
params
?.
count
===
"number"
?
params
.
count
:
0
const
source
=
typeof
params
?.
source
===
"string"
?
params
.
source
:
"unknown"
const
note
=
typeof
params
?.
note
===
"string"
?
params
.
note
:
""
const
selected
=
typeof
params
?.
selected
===
"string"
?
params
.
selected
:
""
const
local
=
typeof
params
?.
local
===
"number"
?
params
.
local
:
0
return
{
tab
:
Math
.
max
(
0
,
Math
.
min
(
tab
,
tabs
.
length
-
1
)
)
,
count
,
source
,
note
,
selected
,
local
:
Math
.
max
(
0
,
local
)
,
}
}
const
current
=
(
api
:
TuiPluginApi
,
route
:
Route
)
=>
{
const
value
=
api
.
route
.
current
const
ok
=
Object
.
values
(
route
)
.
includes
(
value
.
name
)
if
(
!
ok
)
return
parse
(
undefined
)
if
(
!
(
"params"
in
value
)
)
return
parse
(
undefined
)
return
parse
(
value
.
params
)
}
const
opts
=
[
{
title
:
"Overview"
,
value
:
0
,
description
:
"Switch to overview tab"
,
}
,
{
title
:
"Counter"
,
value
:
1
,
description
:
"Switch to counter tab"
,
}
,
{
title
:
"Help"
,
value
:
2
,
description
:
"Switch to help tab"
,
}
,
]
const
host
=
(
api
:
TuiPluginApi
,
input
:
Cfg
,
skin
:
Skin
)
=>
{
api
.
ui
.
dialog
.
setSize
(
"medium"
)
api
.
ui
.
dialog
.
replace
(
(
)
=>
(
<
box
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
gap
=
{
1
}
flexDirection
=
"column"
>
<
text
fg
=
{
skin
.
text
}
>
<
b
>
{
input
.
label
}
host overlay
</
b
>
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
Using api.ui.dialog stack with built-in backdrop
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
esc closes · depth
{
api
.
ui
.
dialog
.
depth
}
</
text
>
<
box
flexDirection
=
"row"
gap
=
{
1
}
>
<
Btn
txt
=
"close"
run
=
{
(
)
=>
api
.
ui
.
dialog
.
clear
(
)
}
skin
=
{
skin
}
on
/>
</
box
>
</
box
>
)
)
}
const
warn
=
(
api
:
TuiPluginApi
,
route
:
Route
,
value
:
State
)
=>
{
const
DialogAlert
=
api
.
ui
.
DialogAlert
api
.
ui
.
dialog
.
setSize
(
"medium"
)
api
.
ui
.
dialog
.
replace
(
(
)
=>
(
<
DialogAlert
title
=
"Smoke alert"
message
=
"Testing built-in alert dialog"
onConfirm
=
{
(
)
=>
api
.
route
.
navigate
(
route
.
screen
,
{
...
value
,
source
:
"alert"
}
)
}
/>
)
)
}
const
check
=
(
api
:
TuiPluginApi
,
route
:
Route
,
value
:
State
)
=>
{
const
DialogConfirm
=
api
.
ui
.
DialogConfirm
api
.
ui
.
dialog
.
setSize
(
"medium"
)
api
.
ui
.
dialog
.
replace
(
(
)
=>
(
<
DialogConfirm
title
=
"Smoke confirm"
message
=
"Apply +1 to counter?"
onConfirm
=
{
(
)
=>
api
.
route
.
navigate
(
route
.
screen
,
{
...
value
,
count
:
value
.
count
+
1
,
source
:
"confirm"
}
)
}
onCancel
=
{
(
)
=>
api
.
route
.
navigate
(
route
.
screen
,
{
...
value
,
source
:
"confirm-cancel"
}
)
}
/>
)
)
}
const
entry
=
(
api
:
TuiPluginApi
,
route
:
Route
,
value
:
State
)
=>
{
const
DialogPrompt
=
api
.
ui
.
DialogPrompt
api
.
ui
.
dialog
.
setSize
(
"medium"
)
api
.
ui
.
dialog
.
replace
(
(
)
=>
(
<
DialogPrompt
title
=
"Smoke prompt"
value
=
{
value
.
note
}
onConfirm
=
{
(
note
)
=>
{
api
.
ui
.
dialog
.
clear
(
)
api
.
route
.
navigate
(
route
.
screen
,
{
...
value
,
note
,
source
:
"prompt"
}
)
}
}
onCancel
=
{
(
)
=>
{
api
.
ui
.
dialog
.
clear
(
)
api
.
route
.
navigate
(
route
.
screen
,
value
)
}
}
/>
)
)
}
const
picker
=
(
api
:
TuiPluginApi
,
route
:
Route
,
value
:
State
)
=>
{
const
DialogSelect
=
api
.
ui
.
DialogSelect
api
.
ui
.
dialog
.
setSize
(
"medium"
)
api
.
ui
.
dialog
.
replace
(
(
)
=>
(
<
DialogSelect
title
=
"Smoke select"
options
=
{
opts
}
current
=
{
value
.
tab
}
onSelect
=
{
(
item
)
=>
{
api
.
ui
.
dialog
.
clear
(
)
api
.
route
.
navigate
(
route
.
screen
,
{
...
value
,
tab
:
typeof
item
.
value
===
"number"
?
item
.
value
:
value
.
tab
,
selected
:
item
.
title
,
source
:
"select"
,
}
)
}
}
/>
)
)
}
const
Screen
=
(
props
:
{
api
:
TuiPluginApi
input
:
Cfg
route
:
Route
keys
:
Keys
meta
:
TuiPluginMeta
params
?:
Record
<
string
,
unknown
>
}
)
=>
{
const
dim
=
useTerminalDimensions
(
)
const
value
=
parse
(
props
.
params
)
const
skin
=
tone
(
props
.
api
)
const
set
=
(
local
:
number
,
base
?:
State
)
=>
{
const
next
=
base
??
current
(
props
.
api
,
props
.
route
)
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
next
,
local
:
Math
.
max
(
0
,
local
)
,
source
:
"local"
}
)
}
const
push
=
(
base
?:
State
)
=>
{
const
next
=
base
??
current
(
props
.
api
,
props
.
route
)
set
(
next
.
local
+
1
,
next
)
}
const
open
=
(
)
=>
{
const
next
=
current
(
props
.
api
,
props
.
route
)
if
(
next
.
local
>
0
)
return
set
(
1
,
next
)
}
const
pop
=
(
base
?:
State
)
=>
{
const
next
=
base
??
current
(
props
.
api
,
props
.
route
)
set
(
Math
.
max
(
0
,
next
.
local
-
1
)
,
next
)
}
const
show
=
(
)
=>
{
setTimeout
(
(
)
=>
{
open
(
)
}
,
0
)
}
const
screenActive
=
(
)
=>
props
.
api
.
route
.
current
.
name
===
props
.
route
.
screen
useBindings
(
(
)
=>
(
{
enabled
:
(
)
=>
screenActive
(
)
&&
props
.
api
.
ui
.
dialog
.
open
,
commands
:
[
{
name
:
command
.
dialog_close
,
run
(
)
{
props
.
api
.
ui
.
dialog
.
clear
(
)
}
,
}
,
]
,
bindings
:
props
.
keys
.
gather
(
"smoke.dialog"
,
[
command
.
dialog_close
]
)
,
}
)
)
useBindings
(
(
)
=>
(
{
enabled
:
(
)
=>
screenActive
(
)
&&
!
props
.
api
.
ui
.
dialog
.
open
&&
current
(
props
.
api
,
props
.
route
)
.
local
>
0
,
commands
:
[
{
name
:
command
.
local_push
,
run
(
)
{
push
(
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
{
name
:
command
.
local_pop
,
run
(
)
{
pop
(
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
]
,
bindings
:
props
.
keys
.
gather
(
"smoke.local"
,
[
command
.
local_push
,
command
.
local_pop
]
)
,
}
)
)
useBindings
(
(
)
=>
(
{
enabled
:
(
)
=>
screenActive
(
)
&&
!
props
.
api
.
ui
.
dialog
.
open
&&
current
(
props
.
api
,
props
.
route
)
.
local
===
0
,
commands
:
[
{
name
:
command
.
screen_home
,
run
(
)
{
props
.
api
.
route
.
navigate
(
"home"
)
}
,
}
,
{
name
:
command
.
screen_left
,
run
(
)
{
const
next
=
current
(
props
.
api
,
props
.
route
)
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
next
,
tab
:
(
next
.
tab
-
1
+
tabs
.
length
)
%
tabs
.
length
}
)
}
,
}
,
{
name
:
command
.
screen_right
,
run
(
)
{
const
next
=
current
(
props
.
api
,
props
.
route
)
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
next
,
tab
:
(
next
.
tab
+
1
)
%
tabs
.
length
}
)
}
,
}
,
{
name
:
command
.
screen_up
,
run
(
)
{
const
next
=
current
(
props
.
api
,
props
.
route
)
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
next
,
count
:
next
.
count
+
1
}
)
}
,
}
,
{
name
:
command
.
screen_down
,
run
(
)
{
const
next
=
current
(
props
.
api
,
props
.
route
)
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
next
,
count
:
next
.
count
-
1
}
)
}
,
}
,
{
name
:
command
.
screen_modal
,
run
(
)
{
props
.
api
.
route
.
navigate
(
props
.
route
.
modal
,
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
{
name
:
command
.
screen_local
,
run
(
)
{
open
(
)
}
,
}
,
{
name
:
command
.
screen_host
,
run
(
)
{
host
(
props
.
api
,
props
.
input
,
skin
)
}
,
}
,
{
name
:
command
.
screen_alert
,
run
(
)
{
warn
(
props
.
api
,
props
.
route
,
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
{
name
:
command
.
screen_confirm
,
run
(
)
{
check
(
props
.
api
,
props
.
route
,
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
{
name
:
command
.
screen_prompt
,
run
(
)
{
entry
(
props
.
api
,
props
.
route
,
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
{
name
:
command
.
screen_select
,
run
(
)
{
picker
(
props
.
api
,
props
.
route
,
current
(
props
.
api
,
props
.
route
)
)
}
,
}
,
]
,
bindings
:
props
.
keys
.
gather
(
"smoke.screen"
,
[
command
.
screen_home
,
command
.
screen_left
,
command
.
screen_right
,
command
.
screen_up
,
command
.
screen_down
,
command
.
screen_modal
,
command
.
screen_local
,
command
.
screen_host
,
command
.
screen_alert
,
command
.
screen_confirm
,
command
.
screen_prompt
,
command
.
screen_select
,
]
)
,
}
)
)
const
shortcuts
=
useKeymapSelector
(
(
keymap
)
=>
{
const
bindings
=
keymap
.
getCommandBindings
(
{
visibility
:
"registered"
,
commands
:
[
command
.
screen_home
,
command
.
screen_up
,
command
.
screen_down
,
command
.
screen_modal
,
command
.
screen_alert
,
command
.
screen_confirm
,
command
.
screen_prompt
,
command
.
screen_select
,
command
.
screen_local
,
command
.
screen_host
,
command
.
local_push
,
command
.
local_pop
,
]
,
}
)
return
{
screen_home
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_home
)
)
??
""
,
screen_up
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_up
)
)
??
""
,
screen_down
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_down
)
)
??
""
,
screen_modal
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_modal
)
)
??
""
,
screen_alert
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_alert
)
)
??
""
,
screen_confirm
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_confirm
)
)
??
""
,
screen_prompt
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_prompt
)
)
??
""
,
screen_select
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_select
)
)
??
""
,
screen_local
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_local
)
)
??
""
,
screen_host
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen_host
)
)
??
""
,
local_push
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
local_push
)
)
??
""
,
local_pop
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
local_pop
)
)
??
""
,
}
}
)
return
(
<
box
width
=
{
dim
(
)
.
width
}
height
=
{
dim
(
)
.
height
}
backgroundColor
=
{
skin
.
panel
}
position
=
"relative"
>
<
box
flexDirection
=
"column"
width
=
"100%"
height
=
"100%"
paddingTop
=
{
1
}
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
>
<
box
flexDirection
=
"row"
justifyContent
=
"space-between"
paddingBottom
=
{
1
}
>
<
text
fg
=
{
skin
.
text
}
>
<
b
>
{
props
.
input
.
label
}
screen
</
b
>
<
span
style
=
{
{
fg
:
skin
.
muted
}
}
>
plugin route
</
span
>
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
screen_home
}
home
</
text
>
</
box
>
<
box
flexDirection
=
"row"
gap
=
{
1
}
paddingBottom
=
{
1
}
>
{
tabs
.
map
(
(
item
,
i
)
=>
{
const
on
=
value
.
tab
===
i
return
(
<
Btn
txt
=
{
item
}
run
=
{
(
)
=>
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
value
,
tab
:
i
}
)
}
skin
=
{
skin
}
on
=
{
on
}
/>
)
}
)
}
</
box
>
<
box
border
borderColor
=
{
skin
.
border
}
paddingTop
=
{
1
}
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
flexGrow
=
{
1
}
>
{
value
.
tab
===
0
?
(
<
box
flexDirection
=
"column"
gap
=
{
1
}
>
<
text
fg
=
{
skin
.
text
}
>
Route:
{
props
.
route
.
screen
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
plugin state:
{
props
.
meta
.
state
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
first:
{
props
.
meta
.
state
===
"first"
?
"yes"
:
"no"
}
· updated:
{
" "
}
{
props
.
meta
.
state
===
"updated"
?
"yes"
:
"no"
}
· loads:
{
props
.
meta
.
load_count
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
plugin source:
{
props
.
meta
.
source
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
source:
{
value
.
source
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
note:
{
value
.
note
||
"(none)"
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
selected:
{
value
.
selected
||
"(none)"
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
local stack depth:
{
value
.
local
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
host stack open:
{
props
.
api
.
ui
.
dialog
.
open
?
"yes"
:
"no"
}
</
text
>
</
box
>
)
:
null
}
{
value
.
tab
===
1
?
(
<
box
flexDirection
=
"column"
gap
=
{
1
}
>
<
text
fg
=
{
skin
.
text
}
>
Counter:
{
value
.
count
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
screen_up
}
/
{
shortcuts
(
)
.
screen_down
}
change value
</
text
>
</
box
>
)
:
null
}
{
value
.
tab
===
2
?
(
<
box
flexDirection
=
"column"
gap
=
{
1
}
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
screen_modal
}
modal |
{
shortcuts
(
)
.
screen_alert
}
alert |
{
shortcuts
(
)
.
screen_confirm
}
{
" "
}
confirm |
{
shortcuts
(
)
.
screen_prompt
}
prompt |
{
shortcuts
(
)
.
screen_select
}
select
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
screen_local
}
local stack |
{
shortcuts
(
)
.
screen_host
}
host stack
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
local open:
{
shortcuts
(
)
.
local_push
}
push nested ·
{
shortcuts
(
)
.
local_pop
}
close
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
screen_home
}
returns home
</
text
>
</
box
>
)
:
null
}
</
box
>
<
box
flexDirection
=
"row"
gap
=
{
1
}
paddingTop
=
{
1
}
>
<
Btn
txt
=
"go home"
run
=
{
(
)
=>
props
.
api
.
route
.
navigate
(
"home"
)
}
skin
=
{
skin
}
/>
<
Btn
txt
=
"modal"
run
=
{
(
)
=>
props
.
api
.
route
.
navigate
(
props
.
route
.
modal
,
value
)
}
skin
=
{
skin
}
on
/>
<
Btn
txt
=
"local overlay"
run
=
{
show
}
skin
=
{
skin
}
/>
<
Btn
txt
=
"host overlay"
run
=
{
(
)
=>
host
(
props
.
api
,
props
.
input
,
skin
)
}
skin
=
{
skin
}
/>
<
Btn
txt
=
"alert"
run
=
{
(
)
=>
warn
(
props
.
api
,
props
.
route
,
value
)
}
skin
=
{
skin
}
/>
<
Btn
txt
=
"confirm"
run
=
{
(
)
=>
check
(
props
.
api
,
props
.
route
,
value
)
}
skin
=
{
skin
}
/>
<
Btn
txt
=
"prompt"
run
=
{
(
)
=>
entry
(
props
.
api
,
props
.
route
,
value
)
}
skin
=
{
skin
}
/>
<
Btn
txt
=
"select"
run
=
{
(
)
=>
picker
(
props
.
api
,
props
.
route
,
value
)
}
skin
=
{
skin
}
/>
</
box
>
</
box
>
<
box
visible
=
{
value
.
local
>
0
}
width
=
{
dim
(
)
.
width
}
height
=
{
dim
(
)
.
height
}
alignItems
=
"center"
position
=
"absolute"
zIndex
=
{
3000
}
paddingTop
=
{
dim
(
)
.
height
/
4
}
left
=
{
0
}
top
=
{
0
}
backgroundColor
=
{
RGBA
.
fromInts
(
0
,
0
,
0
,
160
)
}
onMouseUp
=
{
(
)
=>
{
pop
(
)
}
}
>
<
box
onMouseUp
=
{
(
evt
)
=>
{
evt
.
stopPropagation
(
)
}
}
width
=
{
60
}
maxWidth
=
{
dim
(
)
.
width
-
2
}
backgroundColor
=
{
skin
.
panel
}
border
borderColor
=
{
skin
.
border
}
paddingTop
=
{
1
}
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
gap
=
{
1
}
flexDirection
=
"column"
>
<
text
fg
=
{
skin
.
text
}
>
<
b
>
{
props
.
input
.
label
}
local overlay
</
b
>
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
Plugin-owned stack depth:
{
value
.
local
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
local_push
}
push nested ·
{
shortcuts
(
)
.
local_pop
}
pop/close
</
text
>
<
box
flexDirection
=
"row"
gap
=
{
1
}
>
<
Btn
txt
=
"push"
run
=
{
push
}
skin
=
{
skin
}
on
/>
<
Btn
txt
=
"pop"
run
=
{
pop
}
skin
=
{
skin
}
/>
</
box
>
</
box
>
</
box
>
</
box
>
)
}
const
Modal
=
(
props
:
{
api
:
TuiPluginApi
input
:
Cfg
route
:
Route
keys
:
Keys
params
?:
Record
<
string
,
unknown
>
}
)
=>
{
const
Dialog
=
props
.
api
.
ui
.
Dialog
const
value
=
parse
(
props
.
params
)
const
skin
=
tone
(
props
.
api
)
useBindings
(
(
)
=>
(
{
enabled
:
(
)
=>
props
.
api
.
route
.
current
.
name
===
props
.
route
.
modal
,
commands
:
[
{
name
:
command
.
modal_accept
,
run
(
)
{
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
parse
(
props
.
params
)
,
source
:
"modal"
}
)
}
,
}
,
{
name
:
command
.
modal_close
,
run
(
)
{
props
.
api
.
route
.
navigate
(
"home"
)
}
,
}
,
]
,
bindings
:
props
.
keys
.
gather
(
"smoke.modal"
,
[
command
.
modal_accept
,
command
.
modal_close
]
)
,
}
)
)
const
shortcuts
=
useKeymapSelector
(
(
keymap
)
=>
{
const
bindings
=
keymap
.
getCommandBindings
(
{
visibility
:
"registered"
,
commands
:
[
command
.
modal
,
command
.
screen
,
command
.
modal_accept
,
command
.
modal_close
]
,
}
)
return
{
modal
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
modal
)
)
??
""
,
screen
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
screen
)
)
??
""
,
modal_accept
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
modal_accept
)
)
??
""
,
modal_close
:
props
.
api
.
keys
.
formatBindings
(
bindings
.
get
(
command
.
modal_close
)
)
??
""
,
}
}
)
return
(
<
box
width
=
"100%"
height
=
"100%"
backgroundColor
=
{
skin
.
panel
}
>
<
Dialog
onClose
=
{
(
)
=>
props
.
api
.
route
.
navigate
(
"home"
)
}
>
<
box
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
gap
=
{
1
}
flexDirection
=
"column"
>
<
text
fg
=
{
skin
.
text
}
>
<
b
>
{
props
.
input
.
label
}
modal
</
b
>
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
modal
}
modal command
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
screen
}
screen command
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
shortcuts
(
)
.
modal_accept
}
opens screen ·
{
shortcuts
(
)
.
modal_close
}
closes
</
text
>
<
box
flexDirection
=
"row"
gap
=
{
1
}
>
<
Btn
txt
=
"open screen"
run
=
{
(
)
=>
props
.
api
.
route
.
navigate
(
props
.
route
.
screen
,
{
...
value
,
source
:
"modal"
}
)
}
skin
=
{
skin
}
on
/>
<
Btn
txt
=
"cancel"
run
=
{
(
)
=>
props
.
api
.
route
.
navigate
(
"home"
)
}
skin
=
{
skin
}
/>
</
box
>
</
box
>
</
Dialog
>
</
box
>
)
}
const
home
=
(
api
:
TuiPluginApi
,
input
:
Cfg
)
=>
(
{
slots
:
{
home_logo
(
ctx
)
{
const
map
=
ctx
.
theme
.
current
const
skin
=
look
(
map
)
const
art
=
[
" $$\\"
,
" $$ |"
,
" $$$$$$$\\ $$$$$$\\$$$$\\ $$$$$$\\ $$ | $$\\ $$$$$$\\"
,
"$$ _____|$$ _$$ _$$\\ $$ __$$\\ $$ | $$ |$$ __$$\\"
,
"\\$$$$$$\\ $$ / $$ / $$ |$$ / $$ |$$$$$$ / $$$$$$$$ |"
,
" \\____$$\\ $$ | $$ | $$ |$$ | $$ |$$ _$$< $$ ____|"
,
"$$$$$$$ |$$ | $$ | $$ |\\$$$$$$ |$$ | \\$$\\ \\$$$$$$$\\"
,
"\\_______/ \\__| \\__| \\__| \\______/ \\__| \\__| \\_______|"
,
]
const
fill
=
[
skin
.
accent
,
skin
.
muted
,
ink
(
map
,
"info"
,
ui
.
accent
)
,
skin
.
text
,
ink
(
map
,
"success"
,
ui
.
accent
)
,
ink
(
map
,
"warning"
,
ui
.
accent
)
,
ink
(
map
,
"secondary"
,
ui
.
accent
)
,
ink
(
map
,
"error"
,
ui
.
accent
)
,
]
return
(
<
box
flexDirection
=
"column"
>
{
art
.
map
(
(
line
,
i
)
=>
(
<
text
fg
=
{
fill
[
i
]
}
>
{
line
}
</
text
>
)
)
}
</
box
>
)
}
,
home_prompt
(
ctx
,
value
)
{
const
skin
=
look
(
ctx
.
theme
.
current
)
const
Prompt
=
api
.
ui
.
Prompt
const
Slot
=
api
.
ui
.
Slot
const
normal
=
[
`[SMOKE] route check for
${
input
.
label
}
`
,
"[SMOKE] confirm home_prompt slot override"
,
"[SMOKE] verify prompt-right slot passthrough"
,
]
const
shell
=
[
"printf '[SMOKE] home prompt\n'"
,
"git status --short"
,
"bun --version"
]
const
hint
=
(
<
box
flexShrink
=
{
0
}
flexDirection
=
"row"
gap
=
{
1
}
>
<
text
fg
=
{
skin
.
muted
}
>
<
span
style
=
{
{
fg
:
skin
.
accent
}
}
>
•
</
span
>
smoke home prompt
</
text
>
</
box
>
)
return
(
<
Prompt
workspaceID
=
{
value
.
workspace_id
}
hint
=
{
hint
}
right
=
{
<
box
flexDirection
=
"row"
gap
=
{
1
}
>
<
Slot
name
=
"home_prompt_right"
workspace_id
=
{
value
.
workspace_id
}
/>
<
Slot
name
=
"smoke_prompt_right"
workspace_id
=
{
value
.
workspace_id
}
label
=
{
input
.
label
}
/>
</
box
>
}
placeholders
=
{
{
normal
,
shell
}
}
/>
)
}
,
home_prompt_right
(
ctx
,
value
)
{
const
skin
=
look
(
ctx
.
theme
.
current
)
const
id
=
value
.
workspace_id
?.
slice
(
0
,
8
)
??
"none"
return
(
<
text
fg
=
{
skin
.
muted
}
>
<
span
style
=
{
{
fg
:
skin
.
accent
}
}
>
{
input
.
label
}
</
span
>
home:
{
id
}
</
text
>
)
}
,
session_prompt_right
(
ctx
,
value
)
{
const
skin
=
look
(
ctx
.
theme
.
current
)
return
(
<
text
fg
=
{
skin
.
muted
}
>
<
span
style
=
{
{
fg
:
skin
.
accent
}
}
>
{
input
.
label
}
</
span
>
session:
{
value
.
session_id
.
slice
(
0
,
8
)
}
</
text
>
)
}
,
smoke_prompt_right
(
ctx
,
value
)
{
const
skin
=
look
(
ctx
.
theme
.
current
)
const
id
=
typeof
value
.
workspace_id
===
"string"
?
value
.
workspace_id
.
slice
(
0
,
8
)
:
"none"
const
label
=
typeof
value
.
label
===
"string"
?
value
.
label
:
input
.
label
return
(
<
text
fg
=
{
skin
.
muted
}
>
<
span
style
=
{
{
fg
:
skin
.
accent
}
}
>
{
label
}
</
span
>
custom:
{
id
}
</
text
>
)
}
,
home_bottom
(
ctx
)
{
const
skin
=
look
(
ctx
.
theme
.
current
)
const
text
=
"extra content in the unified home bottom slot"
return
(
<
box
width
=
"100%"
maxWidth
=
{
75
}
alignItems
=
"center"
paddingTop
=
{
1
}
flexShrink
=
{
0
}
gap
=
{
1
}
>
<
box
border
borderColor
=
{
skin
.
border
}
backgroundColor
=
{
skin
.
panel
}
paddingTop
=
{
1
}
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
width
=
"100%"
>
<
text
fg
=
{
skin
.
muted
}
>
<
span
style
=
{
{
fg
:
skin
.
accent
}
}
>
{
input
.
label
}
</
span
>
{
text
}
</
text
>
</
box
>
</
box
>
)
}
,
}
,
}
)
const
block
=
(
input
:
Cfg
,
order
:
number
,
title
:
string
,
text
:
string
)
:
TuiSlotPlugin
=>
(
{
order
,
slots
:
{
sidebar_content
(
ctx
,
value
)
{
const
skin
=
look
(
ctx
.
theme
.
current
)
return
(
<
box
border
borderColor
=
{
skin
.
border
}
backgroundColor
=
{
skin
.
panel
}
paddingTop
=
{
1
}
paddingBottom
=
{
1
}
paddingLeft
=
{
2
}
paddingRight
=
{
2
}
flexDirection
=
"column"
gap
=
{
1
}
>
<
text
fg
=
{
skin
.
accent
}
>
<
b
>
{
title
}
</
b
>
</
text
>
<
text
fg
=
{
skin
.
text
}
>
{
text
}
</
text
>
<
text
fg
=
{
skin
.
muted
}
>
{
input
.
label
}
order
{
order
}
· session
{
value
.
session_id
.
slice
(
0
,
8
)
}
</
text
>
</
box
>
)
}
,
}
,
}
)
const
slot
=
(
api
:
TuiPluginApi
,
input
:
Cfg
)
:
TuiSlotPlugin
[
]
=>
[
home
(
api
,
input
)
,
block
(
input
,
50
,
"Smoke above"
,
"renders above internal sidebar blocks"
)
,
block
(
input
,
250
,
"Smoke between"
,
"renders between internal sidebar blocks"
)
,
block
(
input
,
650
,
"Smoke below"
,
"renders below internal sidebar blocks"
)
,
]
const
reg
=
(
api
:
TuiPluginApi
,
input
:
Cfg
,
keys
:
Keys
)
=>
{
const
route
=
names
(
input
)
api
.
keymap
.
registerLayer
(
{
commands
:
[
{
name
:
command
.
modal
,
title
:
`
${
input
.
label
}
modal`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke"
,
run
(
)
{
api
.
route
.
navigate
(
route
.
modal
,
{
source
:
"command"
}
)
}
,
}
,
{
name
:
command
.
screen
,
title
:
`
${
input
.
label
}
screen`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke-screen"
,
run
(
)
{
api
.
route
.
navigate
(
route
.
screen
,
{
source
:
"command"
,
tab
:
0
,
count
:
0
}
)
}
,
}
,
{
name
:
command
.
alert
,
title
:
`
${
input
.
label
}
alert dialog`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke-alert"
,
run
(
)
{
warn
(
api
,
route
,
current
(
api
,
route
)
)
}
,
}
,
{
name
:
command
.
confirm
,
title
:
`
${
input
.
label
}
confirm dialog`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke-confirm"
,
run
(
)
{
check
(
api
,
route
,
current
(
api
,
route
)
)
}
,
}
,
{
name
:
command
.
prompt
,
title
:
`
${
input
.
label
}
prompt dialog`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke-prompt"
,
run
(
)
{
entry
(
api
,
route
,
current
(
api
,
route
)
)
}
,
}
,
{
name
:
command
.
select
,
title
:
`
${
input
.
label
}
select dialog`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke-select"
,
run
(
)
{
picker
(
api
,
route
,
current
(
api
,
route
)
)
}
,
}
,
{
name
:
command
.
host
,
title
:
`
${
input
.
label
}
host overlay`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
slashName
:
"smoke-host"
,
run
(
)
{
host
(
api
,
input
,
tone
(
api
)
)
}
,
}
,
{
name
:
command
.
home
,
title
:
`
${
input
.
label
}
go home`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
enabled
:
(
)
=>
api
.
route
.
current
.
name
!==
"home"
,
run
(
)
{
api
.
route
.
navigate
(
"home"
)
}
,
}
,
{
name
:
command
.
toast
,
title
:
`
${
input
.
label
}
toast`
,
category
:
"Plugin"
,
namespace
:
"palette"
,
run
(
)
{
api
.
ui
.
toast
(
{
variant
:
"info"
,
title
:
"Smoke"
,
message
:
"Plugin toast works"
,
duration
:
2000
,
}
)
}
,
}
,
]
,
bindings
:
keys
.
gather
(
"smoke.global"
,
[
command
.
modal
,
command
.
screen
,
command
.
alert
,
command
.
confirm
,
command
.
prompt
,
command
.
select
,
command
.
host
,
command
.
home
,
command
.
toast
,
]
)
,
}
)
}
const
tui
:
TuiPlugin
=
async
(
api
,
options
,
meta
)
=>
{
if
(
options
?.
enabled
===
false
)
return
await
api
.
theme
.
install
(
"./smoke-theme.json"
)
api
.
theme
.
set
(
"smoke-theme"
)
const
value
=
cfg
(
options
)
const
route
=
names
(
value
)
const
keys
=
createKeys
(
value
.
keybinds
)
const
fx
=
new
VignetteEffect
(
value
.
vignette
)
const
post
=
fx
.
apply
.
bind
(
fx
)
api
.
renderer
.
addPostProcessFn
(
post
)
api
.
lifecycle
.
onDispose
(
(
)
=>
{
api
.
renderer
.
removePostProcessFn
(
post
)
}
)
api
.
route
.
register
(
[
{
name
:
route
.
screen
,
render
:
(
{
params
}
)
=>
<
Screen
api
=
{
api
}
input
=
{
value
}
route
=
{
route
}
keys
=
{
keys
}
meta
=
{
meta
}
params
=
{
params
}
/>
,
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL