Skip to content

Commit b178611

Browse files
authored
Improve debug logging of coda and minor bug fixes (#871)
1 parent 16aaa49 commit b178611

File tree

2 files changed

+26
-11
lines changed

2 files changed

+26
-11
lines changed

ts/packages/coda/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"pretest": "pnpm run build",
2929
"test-compile": "tsc -p ./src",
3030
"test:full": "vscode-test",
31-
"vscode:prepublish": "pnpm run esbuild-base --minify"
31+
"vscode:prepublish": "pnpm run esbuild-base --minify",
32+
"watch": "tsc -w"
3233
},
3334
"contributes": {
3435
"commands": [

ts/packages/coda/src/handleCodeEditorActions.ts

+24-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ interface ActionResult {
88
message: string;
99
}
1010

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+
1217
if (actionData && actionData.columnCount) {
1318
switch (actionData.columnCount) {
1419
case "single":
@@ -27,11 +32,19 @@ async function execChangeEditorColumns(actionData: any) {
2732
);
2833
break;
2934
default:
30-
return "Editor layout: Unknown column count";
35+
actionResult.message = "Editor layout: Unknown column count";
36+
actionResult.handled = false;
37+
return actionResult;
3138
}
32-
return "Changed editor columns to: " + actionData.columnCount;
39+
40+
actionResult.message =
41+
"Changed editor columns to: " + actionData.columnCount;
42+
return actionResult;
3343
}
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;
3548
}
3649

3750
export async function handleDebugActions(action: any): Promise<ActionResult> {
@@ -90,7 +103,7 @@ export async function handleDebugActions(action: any): Promise<ActionResult> {
90103
break;
91104
}
92105
default: {
93-
actionResult.message = `Did not understand the request "${action.parameters.text}"`;
106+
actionResult.message = `Did not understand the request for action: "${actionName}"`;
94107
actionResult.handled = false;
95108
}
96109
}
@@ -206,7 +219,7 @@ export async function handleDisplayKBActions(
206219
break;
207220
}
208221
default: {
209-
actionResult.message = `Did not understand the request "${action.parameters.text}"`;
222+
actionResult.message = `Did not understand the request for action: "${actionName}"`;
210223
actionResult.handled = false;
211224
}
212225
}
@@ -303,7 +316,7 @@ export async function handleGeneralKBActions(
303316
}
304317

305318
default: {
306-
actionResult.message = `Did not understand the request "${action.parameters.text}"`;
319+
actionResult.message = `Did not understand the request for action: "${actionName}"`;
307320
actionResult.handled = false;
308321
}
309322
}
@@ -390,12 +403,13 @@ export async function handleBaseEditorActions(
390403
}
391404

392405
case "changeEditorLayout": {
393-
actionResult.message = await execChangeEditorColumns(actionData);
406+
actionResult = await execChangeEditorColumns(actionData);
394407
break;
395408
}
396409

397410
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;
399413
break;
400414
}
401415
}
@@ -424,7 +438,7 @@ export async function handleVSCodeActions(action: any) {
424438
);
425439

426440
const handledResult = results.find((result: any) => result.handled);
427-
if (handledResult) {
441+
if (handledResult !== undefined) {
428442
actionResult = handledResult;
429443
} else {
430444
actionResult.handled = false;

0 commit comments

Comments
 (0)