@@ -8,7 +8,12 @@ interface ActionResult {
8
8
message : string ;
9
9
}
10
10
11
- async function execChangeEditorColumns ( actionData : any ) {
11
+ async function execChangeEditorColumns ( actionData : any ) : Promise < ActionResult > {
12
+ let actionResult : ActionResult = {
13
+ handled : true ,
14
+ message : "Ok" ,
15
+ } ;
16
+
12
17
if ( actionData && actionData . columnCount ) {
13
18
switch ( actionData . columnCount ) {
14
19
case "single" :
@@ -27,11 +32,19 @@ async function execChangeEditorColumns(actionData: any) {
27
32
) ;
28
33
break ;
29
34
default :
30
- return "Editor layout: Unknown column count" ;
35
+ actionResult . message = "Editor layout: Unknown column count" ;
36
+ actionResult . handled = false ;
37
+ return actionResult ;
31
38
}
32
- return "Changed editor columns to: " + actionData . columnCount ;
39
+
40
+ actionResult . message =
41
+ "Changed editor columns to: " + actionData . columnCount ;
42
+ return actionResult ;
33
43
}
34
- return "Edit layout: Did not understand the request!" ;
44
+
45
+ actionResult . message = "Did not understand the request!" ;
46
+ actionResult . handled = false ;
47
+ return actionResult ;
35
48
}
36
49
37
50
export async function handleDebugActions ( action : any ) : Promise < ActionResult > {
@@ -90,7 +103,7 @@ export async function handleDebugActions(action: any): Promise<ActionResult> {
90
103
break ;
91
104
}
92
105
default : {
93
- actionResult . message = `Did not understand the request "${ action . parameters . text } "` ;
106
+ actionResult . message = `Did not understand the request for action: "${ actionName } "` ;
94
107
actionResult . handled = false ;
95
108
}
96
109
}
@@ -206,7 +219,7 @@ export async function handleDisplayKBActions(
206
219
break ;
207
220
}
208
221
default : {
209
- actionResult . message = `Did not understand the request "${ action . parameters . text } "` ;
222
+ actionResult . message = `Did not understand the request for action: "${ actionName } "` ;
210
223
actionResult . handled = false ;
211
224
}
212
225
}
@@ -303,7 +316,7 @@ export async function handleGeneralKBActions(
303
316
}
304
317
305
318
default : {
306
- actionResult . message = `Did not understand the request "${ action . parameters . text } "` ;
319
+ actionResult . message = `Did not understand the request for action: "${ actionName } "` ;
307
320
actionResult . handled = false ;
308
321
}
309
322
}
@@ -390,12 +403,13 @@ export async function handleBaseEditorActions(
390
403
}
391
404
392
405
case "changeEditorLayout" : {
393
- actionResult . message = await execChangeEditorColumns ( actionData ) ;
406
+ actionResult = await execChangeEditorColumns ( actionData ) ;
394
407
break ;
395
408
}
396
409
397
410
default : {
398
- actionResult . message = `Did not understand the request "${ action . parameters . text } "` ;
411
+ actionResult . message = `Did not understand the request for action: "${ actionName } "` ;
412
+ actionResult . handled = false ;
399
413
break ;
400
414
}
401
415
}
@@ -424,7 +438,7 @@ export async function handleVSCodeActions(action: any) {
424
438
) ;
425
439
426
440
const handledResult = results . find ( ( result : any ) => result . handled ) ;
427
- if ( handledResult ) {
441
+ if ( handledResult !== undefined ) {
428
442
actionResult = handledResult ;
429
443
} else {
430
444
actionResult . handled = false ;
0 commit comments