Skip to content

Commit f09efd9

Browse files
committed
support debounce compute; add readme
1 parent 3e7936c commit f09efd9

File tree

5 files changed

+60
-14
lines changed

5 files changed

+60
-14
lines changed

README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
# autoimpl
22

3-
auto generate interface stub for golang struct.
3+
auto generate interface stub for golang struct.
4+
5+
## dependance
6+
7+
* vscode-go extesion
8+
* `go get -u github.com/josharian/impl`
9+
10+
## demo
11+
12+
* Press `Command+I` or input `Pick interface and generate stub` in command line palette
13+
* Input interface name
14+
* Pick one interface and press `Enter`
15+
* Oopps!
16+
![demo](./img/usage.gif)

img/usage.gif

5.04 MB
Loading

package-lock.json

+7-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+19-5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
"engines": {
1212
"vscode": "^1.57.0"
1313
},
14+
"keywords": [
15+
"go",
16+
"golang",
17+
"interface",
18+
"method",
19+
"stubs",
20+
"generate"
21+
],
1422
"categories": [
1523
"Other"
1624
],
@@ -22,13 +30,15 @@
2230
"commands": [
2331
{
2432
"command": "autoimpl.generateInterfaceStub",
25-
"title": "Pick interface and generate stub"
33+
"title": "Pick interface and generate stub",
34+
"category": "go"
2635
}
2736
],
2837
"keybindings": [
2938
{
3039
"command": "autoimpl.generateInterfaceStub",
31-
"mac": "cmd+i"
40+
"mac": "cmd+i",
41+
"category": "go"
3242
}
3343
]
3444
},
@@ -44,19 +54,23 @@
4454
"test": "node ./out/test/runTest.js"
4555
},
4656
"devDependencies": {
47-
"@types/vscode": "^1.57.0",
4857
"@types/glob": "^7.1.3",
58+
"@types/lodash": "^4.14.170",
4959
"@types/mocha": "^8.2.2",
5060
"@types/node": "14.x",
51-
"eslint": "^7.27.0",
61+
"@types/vscode": "^1.57.0",
5262
"@typescript-eslint/eslint-plugin": "^4.26.0",
5363
"@typescript-eslint/parser": "^4.26.0",
64+
"eslint": "^7.27.0",
5465
"glob": "^7.1.7",
5566
"mocha": "^8.4.0",
67+
"ts-loader": "^9.2.2",
5668
"typescript": "^4.3.2",
5769
"vscode-test": "^1.5.2",
58-
"ts-loader": "^9.2.2",
5970
"webpack": "^5.38.1",
6071
"webpack-cli": "^4.7.0"
72+
},
73+
"dependencies": {
74+
"lodash": "^4.17.21"
6175
}
6276
}

src/extension.ts

+20-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Import the module and reference it with the alias vscode in your code below
33
import * as vscode from 'vscode';
44
import * as cp from "child_process";
5+
import * as lodash from "lodash";
56
import { stdout } from 'process';
67

78
class InterfaceItem implements vscode.QuickPickItem {
@@ -33,9 +34,9 @@ export function activate(context: vscode.ExtensionContext) {
3334
// The code you place here will be executed every time your command is executed
3435

3536
const quickPick = vscode.window.createQuickPick();
36-
quickPick.items = [];
37-
quickPick.onDidChangeValue(value => {
38-
console.log("onDidChangeValue ", value);
37+
38+
let handle = lodash.debounce(function name(value: string) {
39+
console.debug("onDidChangeValue ", value);
3940
quickPick.busy = true;
4041
vscode.commands.executeCommand<vscode.SymbolInformation[]>("vscode.executeWorkspaceSymbolProvider", value).then(
4142
symbols => {
@@ -51,23 +52,36 @@ export function activate(context: vscode.ExtensionContext) {
5152
}
5253
);
5354
quickPick.busy = false;
54-
});
55+
}, 300);
56+
57+
quickPick.onDidChangeValue(handle);
5558

5659
quickPick.onDidChangeSelection(selections => {
57-
console.log("onDidChangeSelection ", selections);
60+
console.debug("onDidChangeSelection ", selections);
5861
const item = selections[0];
5962
if (item instanceof InterfaceItem) {
6063
console.info(item);
61-
const command = "impl 'this *Demo' " + item.package + "." + item.name;
64+
const command = "impl 'ReceiverName__ *Receiver__' " + item.package + "." + item.name;
65+
console.info(command);
6266
cp.exec(command, { cwd: vscode.workspace.workspaceFolders === undefined ? "" : vscode.workspace.workspaceFolders[0].uri.path },
6367
(err, out) => {
6468
if (err) {
6569
const message = command + "\n" + err.message;
6670
vscode.window.showErrorMessage(message);
6771
return;
6872
}
73+
// debounce
74+
6975
const message = command;
7076
vscode.window.showInformationMessage(message);
77+
const editor = vscode.window.activeTextEditor;
78+
79+
let stub = "\n" + out + "\n";
80+
stub = stub.replace("(ReceiverName__ * Receiver__)", "($0 *$1)");
81+
stub = stub.replace(new RegExp("ReceiverName__", 'g'), '${0:r}');
82+
stub = stub.replace(new RegExp("Receiver__", 'g'), '${1:receiver}');
83+
let snippet = new vscode.SnippetString(stub);
84+
editor?.insertSnippet(snippet);
7185
});
7286
}
7387
});

0 commit comments

Comments
 (0)