2
2
// Import the module and reference it with the alias vscode in your code below
3
3
import * as vscode from 'vscode' ;
4
4
import * as cp from "child_process" ;
5
+ import * as lodash from "lodash" ;
5
6
import { stdout } from 'process' ;
6
7
7
8
class InterfaceItem implements vscode . QuickPickItem {
@@ -33,9 +34,9 @@ export function activate(context: vscode.ExtensionContext) {
33
34
// The code you place here will be executed every time your command is executed
34
35
35
36
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 ) ;
39
40
quickPick . busy = true ;
40
41
vscode . commands . executeCommand < vscode . SymbolInformation [ ] > ( "vscode.executeWorkspaceSymbolProvider" , value ) . then (
41
42
symbols => {
@@ -51,23 +52,36 @@ export function activate(context: vscode.ExtensionContext) {
51
52
}
52
53
) ;
53
54
quickPick . busy = false ;
54
- } ) ;
55
+ } , 300 ) ;
56
+
57
+ quickPick . onDidChangeValue ( handle ) ;
55
58
56
59
quickPick . onDidChangeSelection ( selections => {
57
- console . log ( "onDidChangeSelection " , selections ) ;
60
+ console . debug ( "onDidChangeSelection " , selections ) ;
58
61
const item = selections [ 0 ] ;
59
62
if ( item instanceof InterfaceItem ) {
60
63
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 ) ;
62
66
cp . exec ( command , { cwd : vscode . workspace . workspaceFolders === undefined ? "" : vscode . workspace . workspaceFolders [ 0 ] . uri . path } ,
63
67
( err , out ) => {
64
68
if ( err ) {
65
69
const message = command + "\n" + err . message ;
66
70
vscode . window . showErrorMessage ( message ) ;
67
71
return ;
68
72
}
73
+ // debounce
74
+
69
75
const message = command ;
70
76
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 ) ;
71
85
} ) ;
72
86
}
73
87
} ) ;
0 commit comments