1
- export default class VimStatusBar {
2
- constructor ( node , editor , sanitizer = null ) {
1
+ import { editor } from 'monaco-editor'
2
+
3
+ export class VimStatusBar {
4
+ private node : HTMLElement | null
5
+
6
+ private editor : editor . IStandaloneCodeEditor
7
+
8
+ private modeInfoNode = document . createElement ( 'span' )
9
+
10
+ private secInfoNode = document . createElement ( 'span' )
11
+
12
+ private notifNode = document . createElement ( 'span' )
13
+
14
+ private keyInfoNode = document . createElement ( 'span' )
15
+
16
+ private input : null | { node : HTMLInputElement ; options : any ; callback : any } = null
17
+
18
+ private notifTimeout : number | null = null
19
+
20
+ private sanitizer : null | ( ( content : string ) => HTMLElement )
21
+
22
+ constructor ( node : HTMLElement | null , editor : editor . IStandaloneCodeEditor , sanitizer = null ) {
3
23
this . node = node
4
- this . modeInfoNode = document . createElement ( 'span' )
5
- this . secInfoNode = document . createElement ( 'span' )
6
- this . notifNode = document . createElement ( 'span' )
24
+ if ( this . node ) {
25
+ this . node . appendChild ( this . modeInfoNode )
26
+ this . node . appendChild ( this . secInfoNode )
27
+ this . node . appendChild ( this . notifNode )
28
+ this . node . appendChild ( this . keyInfoNode )
29
+ }
7
30
this . notifNode . className = 'vim-notification'
8
- this . keyInfoNode = document . createElement ( 'span' )
9
31
this . keyInfoNode . setAttribute ( 'style' , 'float: right' )
10
- this . node . appendChild ( this . modeInfoNode )
11
- this . node . appendChild ( this . secInfoNode )
12
- this . node . appendChild ( this . notifNode )
13
- this . node . appendChild ( this . keyInfoNode )
14
32
this . toggleVisibility ( false )
15
33
this . editor = editor
16
34
this . sanitizer = sanitizer
17
35
}
18
36
19
- setMode ( ev ) {
37
+ setMode ( ev : { mode : string ; subMode : string } ) {
20
38
if ( ev . mode === 'visual' && ev . subMode === 'linewise' ) {
21
39
this . setText ( '--VISUAL LINE--' )
22
40
return
@@ -25,11 +43,11 @@ export default class VimStatusBar {
25
43
this . setText ( `--${ ev . mode . toUpperCase ( ) } --` )
26
44
}
27
45
28
- setKeyBuffer ( key ) {
46
+ setKeyBuffer ( key : string ) {
29
47
this . keyInfoNode . textContent = key
30
48
}
31
49
32
- setSec ( text , callback , options ) {
50
+ setSec ( text : string , callback ?: any , options ?: any ) {
33
51
this . notifNode . textContent = ''
34
52
if ( text === undefined ) {
35
53
return
@@ -62,22 +80,20 @@ export default class VimStatusBar {
62
80
return this . closeInput
63
81
}
64
82
65
- setText ( text ) {
83
+ setText ( text : string ) {
66
84
this . modeInfoNode . textContent = text
67
85
}
68
86
69
- toggleVisibility ( toggle ) {
70
- if ( toggle ) {
71
- this . node . style . display = 'block'
72
- } else {
73
- this . node . style . display = 'none'
87
+ toggleVisibility ( toggle : boolean ) {
88
+ if ( this . node ) {
89
+ this . node . style . display = toggle ? 'block' : 'none'
74
90
}
75
91
76
92
if ( this . input ) {
77
93
this . removeInputListeners ( )
78
94
}
79
95
80
- clearInterval ( this . notifTimeout )
96
+ this . notifTimeout && clearInterval ( this . notifTimeout )
81
97
}
82
98
83
99
closeInput = ( ) => {
@@ -94,22 +110,30 @@ export default class VimStatusBar {
94
110
this . setInnerHtml_ ( this . node , '' )
95
111
}
96
112
97
- inputKeyUp = ( e ) => {
98
- const { options } = this . input
99
- if ( options && options . onKeyUp ) {
100
- options . onKeyUp ( e , e . target . value , this . closeInput )
113
+ inputKeyUp = ( e : any ) => {
114
+ if ( this . input ) {
115
+ const { options } = this . input
116
+ if ( options && options . onKeyUp ) {
117
+ options . onKeyUp ( e , e . target . value , this . closeInput )
118
+ }
101
119
}
102
120
}
103
121
104
122
inputBlur = ( ) => {
123
+ if ( ! this . input ) {
124
+ return
125
+ }
105
126
const { options } = this . input
106
127
107
128
if ( options . closeOnBlur ) {
108
129
this . closeInput ( )
109
130
}
110
131
}
111
132
112
- inputKeyDown = ( e ) => {
133
+ inputKeyDown = ( e : any ) => {
134
+ if ( ! this . input ) {
135
+ return
136
+ }
113
137
const { options, callback } = this . input
114
138
115
139
if ( options && options . onKeyDown && options . onKeyDown ( e , e . target . value , this . closeInput ) ) {
@@ -130,10 +154,12 @@ export default class VimStatusBar {
130
154
}
131
155
132
156
addInputListeners ( ) {
157
+ if ( ! this . input ) {
158
+ return
159
+ }
133
160
const { node } = this . input
134
161
node . addEventListener ( 'keyup' , this . inputKeyUp )
135
162
node . addEventListener ( 'keydown' , this . inputKeyDown )
136
- node . addEventListener ( 'input' , this . inputKeyInput )
137
163
node . addEventListener ( 'blur' , this . inputBlur )
138
164
}
139
165
@@ -145,20 +171,22 @@ export default class VimStatusBar {
145
171
const { node } = this . input
146
172
node . removeEventListener ( 'keyup' , this . inputKeyUp )
147
173
node . removeEventListener ( 'keydown' , this . inputKeyDown )
148
- node . removeEventListener ( 'input' , this . inputKeyInput )
149
174
node . removeEventListener ( 'blur' , this . inputBlur )
150
175
}
151
176
152
- showNotification ( text ) {
177
+ showNotification ( text : string ) {
153
178
const sp = document . createElement ( 'span' )
154
179
this . setInnerHtml_ ( sp , text )
155
180
this . notifNode . textContent = sp . textContent
156
- this . notifTimeout = setTimeout ( ( ) => {
181
+ this . notifTimeout = window . setTimeout ( ( ) => {
157
182
this . notifNode . textContent = ''
158
183
} , 5000 )
159
184
}
160
185
161
- setInnerHtml_ ( element , htmlContents ) {
186
+ setInnerHtml_ ( element : HTMLElement | null , htmlContents : string ) {
187
+ if ( ! element ) {
188
+ return
189
+ }
162
190
if ( this . sanitizer ) {
163
191
// Clear out previous contents first.
164
192
while ( element . children . length ) {
0 commit comments