-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
268 lines (234 loc) · 5.62 KB
/
index.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
import path from "path";
import fs from "fs";
export interface Button {
id: string;
icon: string;
tooltip: string;
click: () => void;
}
export interface ToggleButton {
id: string;
icon: string;
tooltip: string;
}
export interface View {
buttonId?: string; // corresponding buttonId
onBeforeMount?: () => void;
onMounted?: (root: HTMLElement) => void;
onBeforeUnmount?: () => void;
onUnmounted?: () => void;
}
export interface Page {
id: string;
label: string;
type: string;
data?: any;
}
interface LayoutController {
openPage: (page: Page) => void;
closePage: (pageId: string) => void;
toggleLeftMenu: (visible?: boolean) => void;
togglePDFMenuView: (visible?: boolean) => void;
}
interface Controller {
layout: LayoutController;
path: typeof path;
fs: typeof fs;
}
interface Params {
pluginPath: string;
pluginId: string;
}
// plugin settings
interface Setting {
label: string;
description: string;
}
export interface SettingToggle extends Setting {
type: "toggle";
value: boolean;
}
export interface SettingSelect extends Setting {
type: "select";
options: Array<{ label: string; icon?: string; value: any }>;
value: { label: string; icon?: string; value: any };
}
export interface SettingInput extends Setting {
type: "input";
inputType: "text" | "number";
value: string | number;
}
export interface SettingSlider extends Setting {
type: "slider";
min: number;
max: number;
step?: number; // step between valid values > 0.0
snap?: boolean; // snap on valid values
value: number;
}
export class Plugin {
ribbonBtns: Button[] = [];
ribbonToggleBtns: ToggleButton[] = [];
pdfMenuBtns: Button[] = [];
pdfMenuToggleBtns: ToggleButton[] = [];
leftMenuViews: View[] = [];
pdfMenuViews: View[] = [];
pageViews: View[] = [];
settings: Array<
SettingToggle | SettingSelect | SettingSlider | SettingInput
> = [];
params: Params;
controller: Controller;
constructor(params: Params, controller: Controller) {
this.params = params;
this.controller = controller;
}
/**
* Clears all data
*/
init() {
this.ribbonBtns = [];
this.ribbonToggleBtns = [];
this.pdfMenuBtns = [];
this.pdfMenuToggleBtns = [];
this.leftMenuViews = [];
this.pdfMenuViews = [];
this.pageViews = [];
this.settings = [];
}
/**
* Runs when plugin is enabled
* Put all addXXBtn / addXXView here
*/
enable() {
throw new Error("enable() must be implemented");
}
/**
* Runs when plugin is disabled
*/
disable() {}
/**
* Add a button to ribbon
* @param btn
*/
addRibbonBtn(btn: Button) {
this.ribbonBtns.push(btn);
}
/**
* Add a toggle button to ribbon
* @param btn
*/
addRibbonToggleBtn(btn: ToggleButton) {
this.ribbonToggleBtns.push(btn);
}
/**
* Add a button to selection menu in PDF
* @param btn
*/
addPDFMenuBtn(btn: Button) {
this.pdfMenuBtns.push(btn);
}
/**
* Add a toggle button to selection menu in PDF
* @param btn
*/
addPDFMenuToggleBtn(btn: ToggleButton) {
this.pdfMenuToggleBtns.push(btn);
}
/**
* Register toggle view to LeftMenu
* @param view
*/
registerLeftMenuView(view: View) {
this.leftMenuViews.push(view);
}
toggleLeftMenu(visible?: boolean) {
this.controller.layout.toggleLeftMenu(visible);
}
/**
* Register toggle view to selection menu in PDF
* @param view
*/
registerPDFMenuView(view: View) {
this.pdfMenuViews.push(view);
}
togglePDFMenuView(visible?: boolean) {
this.controller.layout.togglePDFMenuView(visible);
}
/**
* Register view to Page
* @param view
*/
registerPageView(view: View) {
this.pageViews.push(view);
}
openPage(page: Page) {
let _page = {} as Page;
_page = Object.assign(_page, page);
_page.id = `${this.params.pluginId}-${page.id}`;
this.controller.layout.openPage(_page);
}
closePage(pageId: string) {
this.controller.layout.closePage(pageId);
}
addSetting(
setting: SettingToggle | SettingSelect | SettingSlider | SettingInput
) {
this.settings.push(setting);
}
getSettingValue(label: string) {
return this.settings.find((setting) => setting.label === label);
}
/**
* No need to call this.
* PluginManager will call this function automatically
* when values in settings changed
*/
saveSettings() {
this.saveData("pluginSettings.json", JSON.stringify(this.settings));
}
/**
* No need to call this.
* PluginManager will load settings after plugin is enabled
*/
loadSettings() {
let raw = this.loadData("pluginSettings.json", "utf8");
if (raw) this.settings = JSON.parse(raw);
}
/**
* Save data to local disk, resides in plugin's folder
* @param fileName - fileName with extension
* @param options - fs.writeFileSync options
*/
async saveData(
fileName: string,
data: string | NodeJS.ArrayBufferView,
options?: fs.WriteFileOptions
) {
try {
let filePath = this.controller.path.join(
this.params.pluginPath,
fileName
);
this.controller.fs.writeFileSync(filePath, data, options);
} catch (error) {
console.log(error);
}
}
/**
* Load data from local disk, load from plugin's folder
* @param fileName - fileName with extension
* @param encoding - 'ascii' | 'utf8' | 'utf-8' | ...
*/
loadData(fileName: string, encoding: BufferEncoding) {
try {
let filePath = this.controller.path.join(
this.params.pluginPath,
fileName
);
return this.controller.fs.readFileSync(filePath, { encoding });
} catch (error) {
console.log(error);
}
}
}