-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathutools.api.d.ts
569 lines (565 loc) · 16.1 KB
/
utools.api.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
interface UBrowser {
/**
* 设置 User-Agent
*/
useragent(userAgent: string): this;
/**
* 前往
*/
goto(url: string, headers?: { Referer: string, userAgent: string }): this;
/**
* 显示Markdown
*/
goto(mdText: string, title?: string): this;
/**
* 页面大小
*/
viewport(width: number, height: number): this;
/**
* 隐藏 ubrowser 窗口
*/
hide(): this;
/**
* 显示 ubrowser 窗口
*/
show(): this;
/**
* 注入样式
*/
css(css: string): this;
/**
* 键盘按键
*/
press(key: string, ...modifier: ('control' | 'ctrl' | 'shift' | 'meta' | 'alt' | 'command' | 'cmd')[]): this;
/**
* 粘贴
* @param text 如果是图片的base64编码字符串,粘贴图片,为空只执行粘贴动作
*/
paste(text?: string): this;
/**
* 页面截图
* @param arg 1.字符串 - 要截取的DOM元素, 2.对象 - 截图位置和大小, 3.空 - 为截取整个窗口
* @param savePath 截图保存路径,可以是文件夹 或 .png文件完全路径, 默认保存临时目录
*/
screenshot(arg: string | { x: number, y: number, width: number, height: number }, savePath?: string): this;
/**
* 保存为PDF
* @param options 选项
* @param savePath PDF保存路径,可以是文件夹 或 .pdf文件完全路径, 默认保存临时目录
*/
pdf(options?: { marginsType: 0 | 1 | 2, pageSize: ('A3' | 'A4' | 'A5' | 'Legal' | 'Letter' | 'Tabloid') | ({ width: number, height: number }) }, savePath?: string): this;
/**
* 模拟设备
*/
device(arg: ('iPhone 11' | 'iPhone X' | 'iPad' | 'iPhone 6/7/8 Plus' | 'iPhone 6/7/8' | 'iPhone 5/SE' | 'HUAWEI Mate10' | 'HUAWEI Mate20' | 'HUAWEI Mate30' | 'HUAWEI Mate30 Pro') | { size: { width: number, height: number }, useragent: string }): this;
/**
* 获取 cookie
* @param name 为空获取全部cookie
*/
cookies(name?: string): this;
/**
* 设置Cookie
*/
setCookies(name: string, value: string): this;
/**
* 设置Cookie
*/
setCookies(cookies: { name: string, value: string }[]): this;
/**
* 删除 cookie
*/
removeCookies(name: string): this;
/**
* 清空cookie
* @param url 在执行"goto"前执行 url参数必需
*/
clearCookies(url?: string): this;
/**
* 打开开发者工具
*/
devTools(mode?: 'right' | 'bottom' | 'undocked' | 'detach'): this;
/**
* 执行JS计算 并获得结果
* @param func 在目标网页中执行
* @param params 传到 func 中的参数
*/
evaluate(func: (...params: any[]) => any, ...params: any[]): this;
/**
* 等待时间
* @param ms 毫秒
*/
wait(ms: number): this;
/**
* 等待元素出现
* @param selector DOM元素
* @param timeout 超时 默认10000 ms(10秒)
*/
wait(selector: string, timeout?: number): this;
/**
* 等待 JS函数 执行返回 true
* @param func 执行的JS函数
* @param timeout 超时 默认10000 ms(10秒)
* @param params 传到 func 中的参数
*/
wait(func: (...params: any[]) => boolean, timeout?: number, ...params: any[]): this;
/**
* 当元素存在时执行直到碰到 end
* @param selector DOM元素
*/
when(selector: string): this;
/**
* 当 JS函数执行返回 true 时执行直到碰到 end
* @param func 执行的JS函数
* @param params 传到 func 中的参数
*/
when(func: (...params: any[]) => boolean, ...params: any[]): this;
/**
* 配合 when 使用
*/
end(): this;
/**
* 单击元素
*/
click(selector: string): this;
/**
* 元素触发按下鼠标左键
*/
mousedown(selector: string): this;
/**
* 元素触发释放鼠标左键
*/
mouseup(selector: string): this;
/**
* 赋值 file input
* @param selector <input type='file' /> 元素
* @param payload 1. string - 文件路径 或 图片的base64编码,2. string[] - 文件路径集合,3. 文件 Buffer
*/
file(selector: string, payload: string | string[] | Uint8Array): this;
/**
* input textarea select 等元素赋值并触发 input 或 change事件
*/
value(selector: string, value: string): this;
/**
* checkbox radio 元素选中或取消选中
*/
check(selector: string, checked: boolean): this;
/**
* 元素获得焦点
*/
focus(selector: string): this;
/**
* 滚动到元素位置
*/
scroll(selector: string): this;
/**
* Y轴滚动
*/
scroll(y: number): this;
/**
* X轴和Y轴滚动
*/
scroll(x: number,y: number): this;
/**
* 运行在闲置的 ubrowser 上
* @param ubrowserId utools.getIdleUBrowsers() 中获得
*/
run(ubrowserId: number): Promise<any[]>;
/**
* 启动一个 ubrowser 运行
* @param options
*/
run(options: {
show?: boolean,
width?: number,
height?: number,
x?: number,
y?: number,
center?: boolean,
minWidth?: number,
minHeight?: number,
maxWidth?: number,
maxHeight?: number,
resizable?: boolean,
movable?: boolean,
minimizable?: boolean,
maximizable?: boolean,
alwaysOnTop?: boolean,
fullscreen?: boolean,
fullscreenable?: boolean,
enableLargerThanScreen?: boolean,
opacity?: number
}): Promise<any[]>;
}
interface Display {
accelerometerSupport: ('available' | 'unavailable' | 'unknown');
bounds: Rectangle;
colorDepth: number;
colorSpace: string;
depthPerComponent: number;
id: number;
internal: boolean;
monochrome: boolean;
rotation: number;
scaleFactor: number;
size: Size;
touchSupport: ('available' | 'unavailable' | 'unknown');
workArea: Rectangle;
workAreaSize: Size;
}
declare namespace utools {
/**
* 插件装配初始化完成触发
*/
function onPluginReady(callback: () => void): void;
/**
* 插件进入时触发
*/
function onPluginEnter(callback: (action: {code: string, type: string, payload: any, optional: { type: string, payload: any }[] }) => void): void;
/**
* 插件隐藏时触发
*/
function onPluginOut(callback: () => void): void;
/**
* 插件分离时触发
*/
function onPluginDetach(callback: () => void): void;
/**
* 插件从云端拉取到数据时触发
*/
function onDbPull(callback: (docs: { _id: string, _rev: string }[]) => void): void;
/**
* 隐藏主窗口
* @param isRestorePreWindow 是否焦点回归到前面的活动窗口,默认 true
*/
function hideMainWindow(isRestorePreWindow?: boolean): boolean;
/**
* 显示主窗口
*/
function showMainWindow(): boolean;
/**
* 设置插件自身高度
*/
function setExpendHeight(height: number): boolean;
/**
* 设置子输入框
* @param onChange 修改时触发
* @param placeholder 占位符, 默认为空
* @param isFocus 是否获得焦点,默认为 true
*/
function setSubInput(onChange: (text: string) => void, placeholder?: string, isFocus?: boolean): boolean;
/**
* 移除子输入框
*/
function removeSubInput(): boolean;
/**
* 赋值子输入框
*/
function setSubInputValue(value: string): boolean;
/**
* 子输入框获得焦点
*/
function subInputFocus(): boolean;
/**
* 子输入框获得焦点并选中
*/
function subInputSelect(): boolean;
/**
* 子输入框失去焦点,插件获得焦点
*/
function subInputBlur(): boolean;
/**
* 创建窗口
* @param url 相对路径的html文件 例如: test.html?param=1
* @param options 与Electron new BrowserWindow options一样 https://www.electronjs.org/docs/api/browser-window#new-browserwindowoptions
* @param callback url 加载完成时的回调
*/
function createBrowserWindow(url: string, options: { width?: number, height?: number }, callback?: () => void): number;
/**
* 隐藏插件到后台
*/
function outPlugin(): boolean;
/**
* 是否深色模式
*/
function isDarkColors(): boolean;
/**
* 获取用户
*/
function getUser(): { avatar: string, nickname: string, type: string } | null;
/**
* 获取用户服务端临时令牌
*/
function getUserServerTemporaryToken(): { ok: boolean, token: string, expiredAt: number } | { error: boolean, name: string, message: string };
/**
* 设置插件动态功能
*/
function setFeature(feature: {
code: string,
explain: string,
platform: ('darwin' | 'win32' | 'linux') | (Array<'darwin' | 'win32' | 'linux'>),
icon?: string,
cmds: string | {
type: 'img' | 'files' | 'regex' | 'over' | 'window',
label: string
}[]
}): boolean;
/**
* 移除插件动态功能
*/
function removeFeature(code: string): boolean;
/**
* 获取插件所有动态功能
*/
function getFeatures(): {
code: string,
explain: string,
platform: ('darwin' | 'win32' | 'linux') | (Array<'darwin' | 'win32' | 'linux'>),
icon?: string,
cmds: string | {
type: 'img' | 'files' | 'regex' | 'over' | 'window',
label: string
}[]
}[];
/**
* 插件间跳转
*/
function redirect(label: string, payload: string | { type: 'text' | 'img' | 'files', data: any }): void;
/**
* 获取闲置的 ubrowser
*/
function getIdleUBrowsers(): { id: number, title: string, url: string}[];
/**
* 设置 ubrowser 代理 https://www.electronjs.org/docs/api/session#sessetproxyconfig
*/
function setUBrowserProxy(config: {pacScript?: string, proxyRules?: string, proxyBypassRules?: string}): boolean;
/**
* 清空 ubrowser 缓存
*/
function clearUBrowserCache(): boolean;
/**
* 显示系统通知
*/
function showNotification(body: string): void;
/**
* 弹出文件选择框
*/
function showOpenDialog(options: {
title?: string,
defaultPath?: string,
buttonLabel?: string,
filters?: { name: string, extensions: string[] }[],
properties?: Array<'openFile' | 'openDirectory' | 'multiSelections' | 'showHiddenFiles' | 'createDirectory' | 'promptToCreate' | 'noResolveAliases' | 'treatPackageAsDirectory' | 'dontAddToRecent'>,
message?: string,
securityScopedBookmarks?: boolean
}): (string[]) | (undefined);
/**
* 弹出文件保存框
*/
function showSaveDialog(options: {
title?: string,
defaultPath?: string,
buttonLabel?: string,
filters?: { name: string, extensions: string[] }[],
message?: string,
nameFieldLabel?: string,
showsTagField?: string,
properties?: Array<'showHiddenFiles' | 'createDirectory' | 'treatPackageAsDirectory' | 'showOverwriteConfirmation' | 'dontAddToRecent'>,
securityScopedBookmarks?: boolean
}): (string) | (undefined);
/**
* 弹出消息框
*/
function showMessageBox(options: {
type?: string,
buttons?: string[],
defaultId?: number,
title?: string,
message: string,
detail?: string,
checkboxLabel?: string,
checkboxChecked?: boolean,
icon?: string,
cancelId?: number,
noLink?: boolean,
normalizeAccessKeys?: boolean
}): number;
/**
* 插件页面中查找
*/
function findInPage(text: string, options?: {
forward?: boolean,
findNext?: boolean,
matchCase?: boolean,
wordStart?: boolean,
medialCapitalAsWordStart?: boolean
}): void;
/**
* 停止插件页面中查找
*/
function stopFindInPage (action: 'clearSelection' | 'keepSelection' | 'activateSelection'): void;
/**
* 拖拽文件
*/
function startDrag(file: string | string[]): void;
/**
* 屏幕取色
*/
function screenColorPick(callback: (color: { hex: string, rgb: string }) => void): void;
/**
* 屏幕截图
*/
function screenCapture(callback: (imgBase64: string) => void): void;
/**
* 获取本地ID
*/
function getLocalId(): string;
/**
* 获取软件版本
*/
function getAppVersion(): string;
/**
* 获取路径
*/
function getPath(name: 'home' | 'appData' | 'userData' | 'cache' | 'temp' | 'exe' | 'module' | 'desktop' | 'documents' | 'downloads' | 'music' | 'pictures' | 'videos' | 'logs' | 'pepperFlashSystemPlugin'): string;
/**
* 获取文件图标
*/
function getFileIcon(filePath: string): string;
/**
* 复制文件到剪贴板
*/
function copyFile(file: string | string[]): boolean;
/**
* 复制图片到剪贴板
* @param img base64、buffer、图片路径
*/
function copyImage(img: string | Uint8Array): boolean;
/**
* 复制文本到剪贴板
*/
function copyText(text: string): boolean;
/**
* 获取当前文件管理器路径(linux 不支持)
*/
function getCurrentFolderPath(): string;
/**
* 获取当前浏览器URL(linux 不支持)
* MacOs 支持浏览器 Safari、Chrome、Opera、Vivaldi、Brave
* Windows 支持浏览器 Chrome、Firefox、Edge、IE、Opera、Brave
* Linux 不支持
*/
function getCurrentBrowserUrl(): string;
/**
* 默认方式打开给定的文件
*/
function shellOpenPath(fullPath: string): void;
/**
* 在文件管理器中显示给定的文件
*/
function shellShowItemInFolder(fullPath: string): void;
/**
* 系统默认的协议打开URL
*/
function shellOpenExternal(url: string): void;
/**
* 播放哔哔声
*/
function shellBeep(): void;
/**
* 模拟键盘按键
*/
function simulateKeyboardTap(key: string, ...modifier: ('control' | 'ctrl' | 'shift' | 'option' | 'alt' | 'command' | 'super')[]): void;
/**
* 模拟鼠标单击
*/
function simulateMouseClick(x?: number, y?: number): void;
/**
* 模拟鼠标右击
*/
function simulateMouseRightClick(x?: number, y?: number): void;
/**
* 模拟鼠标双击
*/
function simulateMouseDoubleClick(x?: number, y?: number): void;
/**
* 模拟鼠标移动
*/
function simulateMouseMove(x: number, y: number): void;
/**
* 获取鼠标绝对位置
*/
function getCursorScreenPoint(): { x: number, y: number };
/**
* 获取主显示器
*/
function getPrimaryDisplay(): Display;
/**
* 获取所有显示器
*/
function getAllDisplays(): Display[];
/**
* 获取位置所在的显示器
*/
function getDisplayNearestPoint(point: { x: number, y: number }): Display;
/**
* 获取矩形所在的显示器
*/
function getDisplayMatching(rect: { x: number, y: number, width: number, height: number }): Display;
/**
* 是否 MacOs 操作系统
*/
function isMacOs(): boolean;
/**
* 是否 Windows 操作系统
*/
function isWindows(): boolean;
/**
* 是否 Linux 操作系统
*/
function isLinux(): boolean;
namespace db {
/**
* 创建/更新文档
*/
function put(doc: { _id: string, _rev?: string }): { id: string, rev?: string, ok?: boolean, error?: boolean, name?: string, message?: string };
/**
* 获取文档
*/
function get(id: string): { _id: string, _rev: string } | null;
/**
* 删除文档
*/
function remove(doc: string | {_id: string, _rev: string}): { id?: string, rev?: string, ok?: boolean, error?: boolean, name?: string, message?: string };
/**
* 批量操作文档(新增、修改、删除)
*/
function bulkDocs(docs: { _id: string, _rev: string }[]): { id: string, rev?: string, ok?: boolean, error?: boolean, name?: string, message?: string }[];
/**
* 获取所有文档 可根据文档id前缀查找
*/
function allDocs(key?: string): { _id: string, _rev: string }[];
/**
* 存储附件
* @param docId 文档ID
* @param attachmentId 附件ID
* @param rev 文档版本,如果文档已存在必填
* @param attachment 附件 buffer
* @param type 附件类型,比如:image/png, text/plain
*/
function putAttachment(docId: string, attachmentId: string, rev: string, attachment: Uint8Array, type: string):{ id: string, rev?: string, ok?: boolean, error?: boolean, name?: string, message?: string };
/**
* 获取附件
* @param docId 文档ID
* @param attachmentId 附件ID
*/
function getAttachment(docId: string, attachmentId: string): Uint8Array | null;
/**
* 删除附件
* @param docId 文档ID
* @param attachmentId 附件ID
* @param rev 文档版本号
*/
function removeAttachment (docId: string, attachmentId: string, rev: string): { id?: string, rev?: string, ok?: boolean, error?: boolean, name?: string, message?: string };
}
const ubrowser: UBrowser;
}