-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypes.ts
More file actions
416 lines (376 loc) · 12.6 KB
/
types.ts
File metadata and controls
416 lines (376 loc) · 12.6 KB
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
export type ScalarType = 'boolean' | 'datetime' | 'number' | 'integer' | 'text';
export type PrimitiveType = ScalarType | 'variant' | 'link';
export type ValueType = PrimitiveType | 'error';
/**
* All mutable workbook control variable types
*/
export type ControlType =
| 'boolean'
| 'date'
| 'number'
| 'text'
| 'text-list'
| 'number-list'
| 'date-list'
| 'number-range'
| 'date-range';
export interface PluginConfig<T> {
id: string;
config: T;
screenshot: boolean;
[key: string]: any;
}
/**
* Style colors available to plugins
* @typedef {object} PluginStyle
* @property {string} backgroundColor Background color set from workbook if any
*/
export interface PluginStyle {
backgroundColor: string;
}
/**
* @typedef {object} WorkbookVariable
* @property {string} name Name of control variable within workbook
* @property {{string}} defaultValue Current value containing at least type as string
*/
export interface WorkbookVariable {
name: string;
defaultValue: { type: string; value: any };
}
/**
* @typedef {object} UrlParameter
* @property {string} value Current url value
*/
export interface UrlParameter {
value: string;
}
export type WorkbookSelection = Record<string, { type: string; val?: unknown }>;
export type PluginMessageResponse = MessageEvent<{
type: string;
result: any[];
error: any;
}>;
export interface WbElement {
id: string;
}
/**
* @typedef {object} WorkbookElementData
* @property {Object<string, any>} data Workbook data sorted by column ID
*/
export interface WorkbookElementData {
[colId: string]: any[];
}
/**
* Column data
* @typedef {object} WorkbookElementColumn
* @property {string} id Column ID
* @property {string} name Column Name
* @property {string} columnType Type of data contained within column
*/
export interface WorkbookElementColumn {
id: string;
name: string;
columnType: ValueType;
}
/**
* Record of Column data with corresponding IDs
* @typedef {object} WorkbookElementColumns
* @property {Object<string, WorkbookElementColumn>} column Column ID and corresponding column data
*/
export interface WorkbookElementColumns {
[colId: string]: WorkbookElementColumn;
}
/**
* Function to Unsubscribe from the corresponding elements
* @typedef {() => void} Unsubscriber
*/
export type Unsubscriber = () => void;
export interface CustomPluginConfigOptionBase {
name: string;
label?: string;
}
export interface CustomPluginConfigGroup extends CustomPluginConfigOptionBase {
type: 'group';
}
export interface CustomPluginConfigElement
extends CustomPluginConfigOptionBase {
type: 'element';
}
export interface CustomPluginConfigColumn extends CustomPluginConfigOptionBase {
type: 'column';
allowedTypes?: ValueType[];
source: string;
allowMultiple: boolean;
}
export interface CustomPluginConfigText extends CustomPluginConfigOptionBase {
type: 'text';
source?: string; // can point to a group or element config
// if true will omit from prehydrated configs passed through querystring
secure?: boolean;
multiline?: boolean;
placeholder?: string;
defaultValue?: string;
}
export interface CustomPluginConfigToggle extends CustomPluginConfigOptionBase {
type: 'toggle';
source?: string;
defaultValue?: boolean;
}
export interface CustomPluginConfigCheckbox
extends CustomPluginConfigOptionBase {
type: 'checkbox';
source?: string;
defaultValue?: boolean;
}
export interface CustomPluginConfigRadio extends CustomPluginConfigOptionBase {
type: 'radio';
source?: string;
singleLine?: boolean;
values: string[];
defaultValue?: string;
}
export interface CustomPluginConfigDropdown
extends CustomPluginConfigOptionBase {
type: 'dropdown';
source?: string;
width?: string;
values: string[];
defaultValue?: string;
}
export interface CustomPluginConfigColor extends CustomPluginConfigOptionBase {
type: 'color';
source?: string;
}
export interface CustomPluginConfigVariable
extends CustomPluginConfigOptionBase {
type: 'variable';
allowedTypes?: ControlType[];
}
export interface CustomPluginConfigInteraction
extends CustomPluginConfigOptionBase {
type: 'interaction';
}
export interface CustomPluginConfigActionTrigger
extends CustomPluginConfigOptionBase {
type: 'action-trigger';
}
export interface CustomPluginConfigActionEffect
extends CustomPluginConfigOptionBase {
type: 'action-effect';
}
export interface CustomPluginConfigUrlParameter
extends Omit<CustomPluginConfigOptionBase, 'label'> {
type: 'url-parameter';
}
/**
* Different types Plugin Config Options
* @typedef {object} CustomPluginConfigOptions
* @property {string} type Type of config option
* @property {string} name Name ID of config option
* @property {(string | undefined)} label Displayed label for config option
*/
export type CustomPluginConfigOptions =
| CustomPluginConfigGroup
| CustomPluginConfigElement
| CustomPluginConfigColumn
| CustomPluginConfigText
| CustomPluginConfigToggle
| CustomPluginConfigCheckbox
| CustomPluginConfigRadio
| CustomPluginConfigDropdown
| CustomPluginConfigColor
| CustomPluginConfigVariable
| CustomPluginConfigInteraction
| CustomPluginConfigActionTrigger
| CustomPluginConfigActionEffect
| CustomPluginConfigUrlParameter;
/**
* @typedef {object} PluginInstance
* @template T Type of Config passed in
* @property {string} sigmaEnv Permissions within Sigma Environment
* @property {object} config Set of helper functions for interacting with Plugin Config
* @property {object} elements Set of helper functions for interacting with Workbook Element Data
* @property {Function} destroy Destroys Plugin Instance and removes all subscriptions
*/
export interface PluginInstance<T = any> {
sigmaEnv: 'author' | 'viewer' | 'explorer';
config: {
/**
* Getter for entire Plugin Config
* @template T Config type to be passed in
* @returns {Partial<T>} Current Plugin Config
*/
get(): Partial<T> | undefined;
/**
* Performs a shallow merge between current config and passed in config
* @template T Config type to be passed in
* @param {Partial<T>} config Config to directly assign
*/
set(config: Partial<T>): void;
/**
* Getter for key within plugin config
* @template K Possible key within CustomPluginConfigOptions
* @param {K} key Key within config to retrieve
* @returns Value within config for passed in key
*/
getKey<K extends keyof T>(key: K): Pick<T, K>;
/**
* Assigns key value pair within plugin
* @template K Possible key within CustomPluginConfigOptions
* @template V Value corresponding to K
* @param {K} key Key within config to set
* @param {V} value New value to set key to
*/
setKey<K extends keyof T>(key: K, value: Pick<T, K>): void;
/**
* Subscriber for Plugin Config
* @param {Function} listener Function to be called upon changes to Plugin Config
*/
subscribe(listener: (arg0: T) => void): Unsubscriber;
/**
* Set possible options for plugin config
* @param {CustomPluginConfigOptions[]} options Possible config options
*/
configureEditorPanel(options: CustomPluginConfigOptions[]): void;
/**
* Gets a static image of a workbook variable
* @param {string} configId ID from config of type: 'variable'
* @returns {WorkbookVariable} Current value of the workbook variable
*/
getVariable(configId: string): WorkbookVariable;
/**
* Setter for workbook variable passed in
* @param {string} configId ID from config of type: 'variable'
* @param {unknown[]} values Values to assign to the workbook variable
*/
setVariable(configId: string, ...values: unknown[]): void;
/**
* @deprecated Use Action API instead
* Getter for interaction selection state
* @param {string} configId ID from config of type: 'interaction'
*/
getInteraction(configId: string): WorkbookSelection[];
/**
* @deprecated Use Action API instead
* Setter for interaction selection state
* @param {string} configId ID from config of type: 'interaction'
* @param {string} elementId Source element ID from element type in Plugin Config
* @param {Object} selection List of column IDs or Columns and values and key-value pairs to select
*/
setInteraction(
configId: string,
elementId: string,
selection: WorkbookSelection[],
): void;
/**
* Triggers an action based on the provided action trigger ID
* @param {string} configId ID from config of type: 'action-trigger'
*/
triggerAction(configId: string): void;
/**
* Registers an effect with the provided action effect ID
* @param {string} configId ID from config of type: 'action-effect'
* @param {Function} effect The effect function to register
* @returns {Unsubscriber} A callable unsubscriber
*/
registerEffect(configId: string, effect: () => void): () => void;
/**
* Overrider function for Config Ready state
* @param {boolean} loadingState Boolean representing if Plugin Config is still loading
*/
setLoadingState(ready: boolean): void;
/**
* Allows users to subscribe to changes in the passed in variable
* @param {string} configId ID from config of type: 'variable'
* @callback callback Function to be called upon receiving an updated workbook variable
* @returns {Unsubscriber} A callable unsubscriber
*/
subscribeToWorkbookVariable(
configId: string,
callback: (input: WorkbookVariable) => void,
): Unsubscriber;
/**
* Allows users to subscribe to changes in the url parameter
* @param {string} configId ID from config of type: 'url-parameter'
* @callback callback Function to be called upon receiving an updated url parameter
* @returns {Unsubscriber} A callable unsubscriber
*/
subscribeToUrlParameter(
configId: string,
callback: (input: UrlParameter) => void,
): Unsubscriber;
/**
* Gets the current value of a url parameter
* @param {string} configId ID from config of type: 'url-parameter'
* @returns {UrlParameter} Current value of the url parameter
*/
getUrlParameter(configId: string): UrlParameter;
/**
* Setter for url parameter
* @param {string} configId ID from config of type: 'url-parameter'
* @param {string} value Value to assign to the url parameter
*/
setUrlParameter(configId: string, value: string): void;
/**
* @deprecated Use Action API instead
* Allows users to subscribe to changes in the passed in interaction ID
* @param {string} configId ID from the config of type: 'interaction'
* @callback callback Function to be called upon receiving an updated interaction selection state
* @returns {Unsubscriber} A callable unsubscriber
*/
subscribeToWorkbookInteraction(
configId: string,
callback: (input: WorkbookSelection[]) => void,
): Unsubscriber;
};
elements: {
/**
* Getter for Column Data by parent sheet ID
* @param {string} configId ID from config of type: 'element'
* @returns {WorkbookElementColumns} Column values contained within corresponding sheet
*/
getElementColumns(configId: string): Promise<WorkbookElementColumns>;
/**
* Subscriber to changes in column data by ID
* @param {string} configId ID from config of type: 'element'
* @callback callback Callback function to be called upon changes to column data
* @returns {Unsubscriber} Callable unsubscriber to column data changes
*/
subscribeToElementColumns(
configId: string,
callback: (cols: WorkbookElementColumns) => void,
): Unsubscriber;
/**
* Subscriber for the data within a given sheet
* @param {string} configId ID from config of type: 'element'
* @callback callback Function to call on data passed in
* @returns {Unsubscriber} A callable unsubscriber to changes in the data
*/
subscribeToElementData(
configId: string,
callback: (data: WorkbookElementData) => void,
): Unsubscriber;
/**
* Ask sigma to load more data
* @param {string} configId ID from config of type: 'element'
*/
fetchMoreElementData(configId: string): void;
};
style: {
/**
* Subscribe to style updates
* @param callback Function to call when style updates
* @returns Unsubscriber function
*/
subscribe(callback: (style: PluginStyle) => void): () => void;
/**
* Request current style from workbook
* @returns Promise with current style
*/
get(): Promise<PluginStyle>;
};
/**
* Destroys plugin instance and removes all subscribers
*/
destroy(): void;
}