-
Notifications
You must be signed in to change notification settings - Fork 26
/
elements.ts
501 lines (441 loc) · 13 KB
/
elements.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
import { isInstanceOf, isLike } from '../helpers'
import {} from './commands'
import { isPropsUIPage, PropsUIPage } from './pages'
import { isPropsUIPrompt, PropsUIPrompt } from './prompts'
import { VisualizationType } from './visualizations'
export type PropsUI =
| PropsUIText
| PropsUIButton
| PropsUICheckBox
| PropsUIRadioItem
| PropsUISpinner
| PropsUIProgress
| PropsUIHeader
| PropsUITable
| PropsUISearchBar
| PropsUIPage
| PropsUIPrompt
export type PropsUIText =
| PropsUITextTitle0
| PropsUITextTitle1
| PropsUITextTitle2
| PropsUITextTitle3
| PropsUITextTitle6
| PropsUITextBodyLarge
| PropsUITextLabel
export type PropsUIButton =
| PropsUIButtonPrimary
| PropsUIButtonSecundary
| PropsUIButtonBack
| PropsUIButtonForward
| PropsUIButtonIconBack
| PropsUIButtonIconForward
| PropsUIButtonIcon
| PropsUIButtonLabel
| PropsUIButtonIconLabel
// UI
export function isPropsUI (arg: any): arg is PropsUI {
return (
isPropsUIText(arg) ||
isPropsUIButton(arg) ||
isPropsUISpinner(arg) ||
isPropsUIProgress(arg) ||
isPropsUIHeader(arg) ||
isPropsUITable(arg) ||
isPropsUIPage(arg) ||
isPropsUIPrompt(arg)
)
}
// TEXTS
export function isPropsUIText (arg: any): arg is PropsUIText {
return (
isPropsUITextTitle0(arg) ||
isPropsUITextTitle0(arg) ||
isPropsUITextTitle1(arg) ||
isPropsUITextTitle2(arg) ||
isPropsUITextTitle3(arg) ||
isPropsUITextTitle4(arg) ||
isPropsUITextTitle6(arg) ||
isPropsUITextBodyLarge(arg) ||
isPropsUITextBodyMedium(arg) ||
isPropsUITextLabel(arg) ||
isPropsUITextCaption(arg)
)
}
export interface PropsUITextLabel {
__type__: 'PropsUITextLabel'
text: string
color?: string
margin?: string
}
export function isPropsUITextLabel (arg: any): arg is PropsUITextLabel {
return isInstanceOf<PropsUITextLabel>(arg, 'PropsUITextLabel', ['text', 'color', 'margin'])
}
export interface PropsUITextCaption {
__type__: 'PropsUITextCaption'
text: string
color?: string
margin?: string
}
export function isPropsUITextCaption (arg: any): arg is PropsUITextCaption {
return isInstanceOf<PropsUITextCaption>(arg, 'PropsUITextCaption', ['text', 'color', 'margin'])
}
export interface PropsUITextBodyLarge {
__type__: 'PropsUITextBodyLarge'
text: string
color?: string
margin?: string
}
export function isPropsUITextBodyLarge (arg: any): arg is PropsUITextBodyLarge {
return isInstanceOf<PropsUITextBodyLarge>(arg, 'PropsUITextBodyLarge', [
'text',
'color',
'margin'
])
}
export interface PropsUITextBodyMedium {
__type__: 'PropsUITextBodyMedium'
text: string
color?: string
margin?: string
}
export function isPropsUITextBodyMedium (arg: any): arg is PropsUITextBodyMedium {
return isInstanceOf<PropsUITextBodyMedium>(arg, 'PropsUITextBodyMedium', [
'text',
'color',
'margin'
])
}
export interface PropsUITextBodySmall {
__type__: 'PropsUITextBodySmall'
text: string
color?: string
margin?: string
}
export function isPropsUITextBodySmall (arg: any): arg is PropsUITextBodySmall {
return isInstanceOf<PropsUITextBodySmall>(arg, 'PropsUITextBodySmall', [
'text',
'color',
'margin'
])
}
export interface PropsUITextTitle0 {
__type__: 'PropsUITextTitle0'
text: string
color?: string
margin?: string
}
export function isPropsUITextTitle0 (arg: any): arg is PropsUITextTitle0 {
return isInstanceOf<PropsUITextTitle0>(arg, 'PropsUITextTitle0', ['text', 'color', 'margin'])
}
export interface PropsUITextTitle1 {
__type__: 'PropsUITextTitle1'
text: string
color?: string
margin?: string
}
export function isPropsUITextTitle1 (arg: any): arg is PropsUITextTitle1 {
return isInstanceOf<PropsUITextTitle1>(arg, 'PropsUITextTitle1', ['text', 'color', 'margin'])
}
export interface PropsUITextTitle2 {
__type__: 'PropsUITextTitle2'
text: string
color?: string
margin?: string
}
export function isPropsUITextTitle2 (arg: any): arg is PropsUITextTitle2 {
return isInstanceOf<PropsUITextTitle2>(arg, 'PropsUITextTitle2', ['text', 'color', 'margin'])
}
export interface PropsUITextTitle3 {
__type__: 'PropsUITextTitle3'
text: string
color?: string
margin?: string
}
export function isPropsUITextTitle3 (arg: any): arg is PropsUITextTitle3 {
return isInstanceOf<PropsUITextTitle3>(arg, 'PropsUITextTitle3', ['text', 'color', 'margin'])
}
export interface PropsUITextTitle4 {
__type__: 'PropsUITextTitle4'
text: string
color?: string
margin?: string
}
export function isPropsUITextTitle4 (arg: any): arg is PropsUITextTitle4 {
return isInstanceOf<PropsUITextTitle4>(arg, 'PropsUITextTitle4', ['text', 'color', 'margin'])
}
export interface PropsUITextTitle6 {
__type__: 'PropsUITextTitle6'
text: string
color?: string
margin?: string
}
export function isPropsUITextTitle6 (arg: any): arg is PropsUITextTitle6 {
return isInstanceOf<PropsUITextTitle6>(arg, 'PropsUITextTitle6', ['text', 'color', 'margin'])
}
// BUTTONS
export function isPropsUIButton (arg: any): arg is PropsUIButton {
return (
isPropsUIButtonPrimary(arg) ||
isPropsUIButtonSecundary(arg) ||
isPropsUIButtonBack(arg) ||
isPropsUIButtonForward(arg) ||
isPropsUIButtonIconBack(arg) ||
isPropsUIButtonIconForward(arg) ||
isPropsUIButtonIcon(arg) ||
isPropsUIButtonLabel(arg) ||
isPropsUIButtonIconLabel(arg)
)
}
export interface PropsUIButtonPrimary {
__type__: 'PropsUIButtonPrimary'
label: string
color?: string
enabled?: boolean
spinning?: boolean
onClick: () => void
}
export function isPropsUIButtonPrimary (arg: any): arg is PropsUIButtonPrimary {
return isInstanceOf<PropsUIButtonPrimary>(arg, 'PropsUIButtonPrimary', [
'label',
'color',
'onClick'
])
}
export interface PropsUIButtonSecundary {
__type__: 'PropsUIButtonSecundary'
label: string
color?: string
onClick: () => void
}
export function isPropsUIButtonSecundary (arg: any): arg is PropsUIButtonSecundary {
return isInstanceOf<PropsUIButtonSecundary>(arg, 'PropsUIButtonSecundary', [
'label',
'color',
'onClick'
])
}
export interface PropsUIButtonBack {
__type__: 'PropsUIButtonBack'
label: string
onClick: () => void
}
export function isPropsUIButtonBack (arg: any): arg is PropsUIButtonBack {
return isInstanceOf<PropsUIButtonBack>(arg, 'PropsUIButtonBack', ['label', 'onClick'])
}
export interface PropsUIButtonForward {
__type__: 'PropsUIButtonForward'
label: string
onClick: () => void
}
export function isPropsUIButtonForward (arg: any): arg is PropsUIButtonForward {
return isInstanceOf<PropsUIButtonForward>(arg, 'PropsUIButtonForward', ['label', 'onClick'])
}
export interface PropsUIButtonIconBack {
__type__: 'PropsUIButtonIconBack'
onClick: () => void
}
export function isPropsUIButtonIconBack (arg: any): arg is PropsUIButtonIconBack {
return isInstanceOf<PropsUIButtonIconBack>(arg, 'PropsUIButtonIconBack', ['onClick'])
}
export interface PropsUIButtonIconForward {
__type__: 'PropsUIButtonIconForward'
onClick: () => void
}
export function isPropsUIButtonIconForward (arg: any): arg is PropsUIButtonIconForward {
return isInstanceOf<PropsUIButtonIconForward>(arg, 'PropsUIButtonIconForward', ['onClick'])
}
export interface PropsUIButtonIcon {
__type__: 'PropsUIButtonIcon'
icon: string
onClick: () => void
}
export function isPropsUIButtonIcon (arg: any): arg is PropsUIButtonIcon {
return isInstanceOf<PropsUIButtonIcon>(arg, 'PropsUIButtonIcon', ['icon', 'onClick'])
}
export interface PropsUIButtonIconLabel {
__type__: 'PropsUIButtonIconLabel'
icon: string
label: string
color?: string
alignment?: string
onClick: () => void
}
export function isPropsUIButtonIconLabel (arg: any): arg is PropsUIButtonIconLabel {
return isInstanceOf<PropsUIButtonIconLabel>(arg, 'PropsUIButtonIconLabel', [
'icon',
'label',
'color',
'alignment',
'onClick'
])
}
export interface PropsUIButtonLabel {
__type__: 'PropsUIButtonLabel'
label: string
color?: string
onClick: () => void
}
export function isPropsUIButtonLabel (arg: any): arg is PropsUIButtonLabel {
return isInstanceOf<PropsUIButtonLabel>(arg, 'PropsUIButtonLabel', ['label', 'onClick'])
}
// Radio item
export interface PropsUIRadioItem {
id: number
value: string
selected: boolean
onSelect: () => void
}
export function isPropsUIRadioItem (arg: any): arg is PropsUIRadioItem {
return isInstanceOf<PropsUIRadioItem>(arg, 'PropsUIRadioItem', [
'id',
'value',
'selected',
'onSelect'
])
}
// Check box
export interface PropsUICheckBox {
id: string
selected: boolean
size?: string
onSelect: () => void
}
export function isPropsUICheckBox (arg: any): arg is PropsUICheckBox {
return isInstanceOf<PropsUICheckBox>(arg, 'PropsUICheckBox', ['id', 'selected', 'onSelect'])
}
// SPINNER
export interface PropsUISpinner {
__type__: 'PropsUISpinner'
spinning?: boolean
color?: string
}
export function isPropsUISpinner (arg: any): arg is PropsUISpinner {
return isInstanceOf<PropsUISpinner>(arg, 'PropsUISpinner', ['color', 'spinning'])
}
// PROGRESS
export interface PropsUIProgress {
__type__: 'PropsUIProgress'
percentage: number
}
export function isPropsUIProgress (arg: any): arg is PropsUIProgress {
return isInstanceOf<PropsUIProgress>(arg, 'PropsUIProgress', ['percentage'])
}
// Header
export interface PropsUIHeader {
__type__: 'PropsUIHeader'
title: Text
}
export function isPropsUIHeader (arg: any): arg is PropsUIHeader {
return isInstanceOf<PropsUIHeader>(arg, 'PropsUIHeader', ['title'])
}
// Footer
export interface PropsUIFooter {
__type__: 'PropsUIFooter'
progressPercentage: number
}
export function isPropsUIFooter (arg: any): arg is PropsUIFooter {
return isInstanceOf<PropsUIFooter>(arg, 'PropsUIFooter', ['progressPercentage'])
}
// TABLE
export interface PropsUITable {
__type__: 'PropsUITable'
id: string
head: PropsUITableHead
body: PropsUITableBody
pageSize?: number
}
export function isPropsUITable (arg: any): arg is PropsUITable {
return isInstanceOf<PropsUITable>(arg, 'PropsUITable', ['pageSize', 'id', 'head', 'body'])
}
export interface PropsUITableHead {
__type__: 'PropsUITableHead'
cells: PropsUITableCell[]
}
export function isPropsUITableHead (arg: any): arg is PropsUITableHead {
return isInstanceOf<PropsUITableHead>(arg, 'PropsUITableHead', ['cells'])
}
export interface PropsUITableBody {
__type__: 'PropsUITableBody'
rows: PropsUITableRow[]
}
export function isPropsUITableBody (arg: any): arg is PropsUITableBody {
return isInstanceOf<PropsUITableBody>(arg, 'PropsUITableBody', ['rows'])
}
export interface PropsUITableRow {
__type__: 'PropsUITableRow'
id: string
cells: PropsUITableCell[]
}
export function isPropsUITableRow (arg: any): arg is PropsUITableRow {
return isInstanceOf<PropsUITableRow>(arg, 'PropsUITableRow', ['id', 'cells'])
}
export interface PropsUITableCell {
__type__: 'PropsUITableCell'
text: string
}
export function isPropsUITableCell (arg: any): arg is PropsUITableCell {
return isInstanceOf<PropsUITableCell>(arg, 'PropsUITableCell', ['text'])
}
export interface TableContext {
title: string
deletedRowCount: number
annotations: Annotation[]
originalBody: PropsUITableBody
deletedRows: string[][]
visualizations?: VisualizationType[]
}
export type TableWithContext = TableContext & PropsUITable
export interface Annotation {
row_id: string
[key: string]: any
}
// SEARCH BAR
export interface PropsUISearchBar {
__type__: 'PropsUISearchBar'
search: string
onSearch: (search: string) => void
placeholder?: string
debounce?: number
}
export function isPropsUISearchBar (arg: any): arg is PropsUISearchBar {
return isInstanceOf<PropsUISearchBar>(arg, 'PropsUISearchBar', ['placeholder'])
}
// BASE TYPES
export type Text = Translatable | string
export function isText (arg: any): arg is Text {
return typeof arg === 'string' || isTranslatable(arg)
}
export interface Translatable {
translations: { [locale: string]: string }
}
export function isTranslatable (arg: any): arg is Translatable {
return isLike<Translatable>(arg, ['translations'])
}
// QUESTION ITEMS
export interface PropsUIQuestionMultipleChoice {
__type__: 'PropsUIQuestionMultipleChoice'
id: number
question: Text
choices: Text[]
}
export function isPropsUIQuestionMultipleChoice (arg: any): arg is PropsUIQuestionMultipleChoice {
return isInstanceOf<PropsUIQuestionMultipleChoice>(arg, 'PropsUIQuestionMultipleChoice', ['id', 'question', 'choices'])
}
export interface PropsUIQuestionMultipleChoiceCheckbox {
__type__: 'PropsUIQuestionMultipleChoiceCheckbox'
id: number
question: Text
choices: Text[]
}
export function isPropsUIQuestionMultipleChoiceCheckbox (arg: any): arg is PropsUIQuestionMultipleChoiceCheckbox {
return isInstanceOf<PropsUIQuestionMultipleChoiceCheckbox>(arg, 'PropsUIQuestionMultipleChoiceCheckbox', ['id', 'question', 'choices'])
}
export interface PropsUIQuestionOpen {
__type__: 'PropsUIQuestionOpen'
id: number
question: Text
}
export function isPropsUIQuestionOpen (arg: any): arg is PropsUIQuestionOpen {
return isInstanceOf<PropsUIQuestionOpen>(arg, 'PropsUIQuestionOpen', ['id', 'question'])
}