-
Notifications
You must be signed in to change notification settings - Fork 32
/
lowcode-context.d.ts
204 lines (201 loc) · 4.21 KB
/
lowcode-context.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import type vscode from 'vscode';
interface Context {
/**
* @description 模版数据
* @type {object}
*/
model: object;
/**
* @description vscode 对象,能调用 vscode 提供的 api
* @type {typeof vscode}
*/
vscode: typeof vscode;
/**
* @description 调用脚本的工作目录,不一定是脚本所在的项目目录
* @type {string}
*/
workspaceRootPath: string;
/**
* @description 区块生成目录
* @type {string}
*/
createBlockPath?: string;
/**
* @description OutputChannel
* @type {vscode.OutputChannel}
*/
outputChannel: vscode.OutputChannel;
/**
* @description log
* @type {vscode.OutputChannel}
*/
log: vscode.OutputChannel;
/**
* @description 调用 ChatGPT
*/
createChatCompletion: (options: {
messages: {
role: 'system' | 'user' | 'assistant';
content: string;
}[];
handleChunk?: ((data: { text?: string }) => void) | undefined;
showWebview?: boolean;
}) => Promise<string>;
/**
* @description 当前选择的物料路径(加上物料名称)
* @type {string}
*/
materialPath: string;
/**
* @description 一些环境变量
*/
env: {
/**
* @description 等于 workspaceRootPath
* @type {string}
*/
rootPath: string;
/**
* @description 临时工作目录
* @type {string}
*/
tempWorkPath: string;
/**
* @description 物料路径
* @type {string}
*/
materialsPath: string;
/**
* @description 区块路径
* @type {string}
*/
blockMaterialsPath: string;
/**
* @description 代码片段路径
* @type {string}
*/
snippetMaterialsPath: string;
/**
* @description 私有物料路径
* @type {string}
*/
privateMaterialsPath: string;
/**
* @description ExtensionContext
* @type {vscode.ExtensionContext}
*/
extensionContext: vscode.ExtensionContext;
};
/**
* @description lwocode 插件内部使用的一些库,暴露出来避免重复安装
*/
libs: {
/**
* @description axios
* @type {*}
*/
axios: any;
/**
* @description copy-paste
* @type {*}
*/
copyPaste: any;
/**
* @description directory-tree
* @type {*}
*/
dirTree: any;
/**
* @description ejs
* @type {*}
*/
ejs: any;
/**
* @description fs-extra
* @type {*}
*/
fsExtra: any;
/**
* @description execa
* @type {*}
*/
execa: any;
/**
* @description glob
* @type {*}
*/
glob: any;
/**
* @description prettier
* @type {*}
*/
prettier: any;
/**
* @description strip-comments
* @type {*}
*/
stripComments: any;
/**
* @description strip-json-comments
* @type {*}
*/
stripJsonComments: any;
/**
* @description generate-schema
* @type {*}
*/
generateSchema: any;
/**
* @description json-schema-to-typescript
* @type {*}
*/
jsonSchemaToTypescript: any;
/**
* @description typescript-json-schema
* @type {*}
*/
typescriptJsonSchema: any;
/**
* @description axios
* @type {*}
*/
tar: any;
};
/**
* 剪贴板的图片,执行脚本弹框里点击确定按钮的时候获取的,不通过 webview 获取不到
*/
clipboardImage?: string;
/**
* 打开 webview 获取剪贴板里的图片,base64 格式
*/
getClipboardImage: () => Promise<string | undefined>;
/**
* @description 最后一次激活的 TextEditor
*/
activeTextEditor?: vscode.TextEditor;
}
export interface CompileContext extends Context {
/**
* @description 代码片段编译后的代码
* @type {string}
*/
code: string;
/**
* @description 执行右键菜单时选中的文件夹
* @type {string}
*/
explorerSelectedPath: string;
/** 脚本方法名,runScript 方法才有 */
method: string;
/** 脚本方法名,runScript 方法才有 */
script: string;
/** 脚本方法参数,runScript 方法才有 */
params: string;
}
export interface ViewCallContext extends Context {
/**
* @description 传入的方法参数
* @type {string}
*/
params: string;
}