-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathtypes.ts
506 lines (436 loc) · 12.3 KB
/
types.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
import type { JSONPatchDocument, JSONPath, JSONPointer, JSONValue } from 'immutable-json-patch'
import type { SvelteComponentTyped } from 'svelte'
export type { JSONValue, JSONPointer, JSONPath, JSONPatchDocument } from 'immutable-json-patch'
export type TextContent = { text: string } | { json: undefined; text: string }
export type JSONContent = { json: JSONValue } | { json: JSONValue; text: undefined }
export type Content = JSONContent | TextContent
export type JSONParser = JSON
export interface VisibleSection {
start: number
end: number
}
export enum Mode {
text = 'text',
tree = 'tree'
}
export enum SelectionType {
after = 'after',
inside = 'inside',
key = 'key',
value = 'value',
multi = 'multi'
}
export enum CaretType {
after = 'after',
key = 'key',
value = 'value',
inside = 'inside'
}
export interface CaretPosition {
path: JSONPath
type: CaretType // TODO: refactor this to use SelectionType here, then we can simplify the util functions to turn this into a selection
}
export interface DocumentState {
expandedMap: JSONPointerMap<boolean>
enforceStringMap: JSONPointerMap<boolean>
visibleSectionsMap: JSONPointerMap<VisibleSection[]>
selection: JSONSelection | undefined
}
export interface JSONPatchResult {
json: JSONValue
previousJson: JSONValue
undo: JSONPatchDocument
redo: JSONPatchDocument
}
export type AfterPatchCallback = (
patchedJson: JSONValue,
patchedState: DocumentState
) => { json?: JSONValue; state?: DocumentState }
export interface MultiSelection {
type: SelectionType.multi
paths: JSONPath[]
anchorPath: JSONPath
focusPath: JSONPath
pointersMap: { [pointer: JSONPointer]: boolean }
}
export interface AfterSelection {
type: SelectionType.after
anchorPath: JSONPath
focusPath: JSONPath
pointersMap: { [pointer: JSONPointer]: boolean }
}
export interface InsideSelection {
type: SelectionType.inside
anchorPath: JSONPath
focusPath: JSONPath
pointersMap: { [pointer: JSONPointer]: boolean }
}
export interface KeySelection {
type: SelectionType.key
anchorPath: JSONPath
focusPath: JSONPath
pointersMap: { [pointer: JSONPointer]: boolean }
edit?: boolean
}
export interface ValueSelection {
type: SelectionType.value
anchorPath: JSONPath
focusPath: JSONPath
pointersMap: { [pointer: JSONPointer]: boolean }
edit?: boolean
}
export type JSONSelection =
| MultiSelection
| AfterSelection
| InsideSelection
| KeySelection
| ValueSelection
export type JSONPointerMap<T> = { [pointer: JSONPointer]: T }
export type ClipboardValues = Array<{ key: string; value: JSONValue }>
export interface FontAwesomeIcon {
prefix: string
iconName: string
icon: [number, number, Array<number | string>, string, string]
}
export interface DropdownButtonItem {
text: string
onClick: () => void
icon?: FontAwesomeIcon
title?: string
disabled?: boolean
}
export interface MenuButtonItem {
onClick: () => void
icon?: FontAwesomeIcon
text?: string
title?: string
className?: string
disabled?: boolean
}
export interface MenuSeparatorItem {
separator: true
}
export interface MenuSpaceItem {
space: true
}
export type MenuItem = MenuButtonItem | MenuSeparatorItem | MenuSpaceItem
export interface MessageAction {
text: string
title: string
icon?: FontAwesomeIcon
onClick?: () => void
onMouseDown?: () => void
disabled?: boolean
}
export enum ValidationSeverity {
info = 'info',
warning = 'warning',
error = 'error'
}
export interface ValidationError {
path: JSONPath
message: string
severity: ValidationSeverity
}
export interface NestedValidationError extends ValidationError {
isChildError?: boolean
}
export type Validator = (json: JSONValue) => ValidationError[]
export interface ParseError {
position: number | null
line: number | null
column: number | null
message: string
}
export interface ContentParseError {
parseError: ParseError
isRepairable: boolean
}
export interface ContentValidationErrors {
validationErrors: ValidationError[]
}
export type ContentErrors = ContentParseError | ContentValidationErrors
export interface RichValidationError extends ValidationError {
line?: number
column?: number
from: number
to: number
actions: Array<{ name: string; apply: () => void }> | null
}
export interface TextLocation {
path: JSONPath
line: number
column: number
from: number
to: number
}
export interface Section {
start: number // start included
end: number // end excluded
}
export interface QueryLanguage {
id: string
name: string
description: string
createQuery: (json: JSONValue, queryOptions: QueryLanguageOptions) => string
executeQuery: (json: JSONValue, query: string) => JSONValue
}
export interface QueryLanguageOptions {
filter?: {
path?: string[]
relation?: '==' | '!=' | '<' | '<=' | '>' | '>='
value?: string
}
sort?: {
path?: string[]
direction?: 'asc' | 'desc'
}
projection?: {
paths?: string[][]
}
}
export type OnChangeQueryLanguage = (queryLanguageId: string) => void
export interface OnChangeStatus {
contentErrors: ContentErrors
patchResult: JSONPatchResult | null
}
export type OnChange = ((content: Content, previousContent: Content, OnChangeStatus) => void) | null
export type OnSelect = (selection: JSONSelection) => void
export type OnPatch = (operations: JSONPatchDocument, afterPatch?: AfterPatchCallback) => void
export type OnSort = (operations: JSONPatchDocument) => void
export type OnFind = (findAndReplace: boolean) => void
export type OnPaste = (pastedText: string) => void
export type OnPasteJson = (pastedJson: { path: JSONPath; contents: JSONValue }) => void
export type OnRenderValue = (props: RenderValueProps) => RenderValueComponentDescription[]
export type OnClassName = (path: JSONPath, value: JSONValue) => string | undefined
export type OnChangeMode = (mode: Mode) => void
export type OnContextMenu = (contextMenuProps: AbsolutePopupOptions) => void
export type OnRenderMenu = (
mode: 'tree' | 'text' | 'repair',
items: MenuItem[]
) => MenuItem[] | undefined | void
export type OnError = (error: Error) => void
export type OnFocus = () => void
export type OnBlur = () => void
export interface SearchResult {
items: ExtendedSearchResultItem[]
itemsMap: JSONPointerMap<ExtendedSearchResultItem[]>
activeItem: ExtendedSearchResultItem | undefined
activeIndex: number | -1
}
export enum SearchField {
key = 'key',
value = 'value'
}
export interface SearchResultItem {
path: JSONPath
field: SearchField
fieldIndex: number
start: number
end: number
}
export interface ExtendedSearchResultItem extends SearchResultItem {
active: boolean
}
export interface ValueNormalization {
escapeValue: (unescapedValue: unknown) => string
unescapeValue: (escapedValue: string) => string
}
export type PastedJson = { contents: JSONValue; path: JSONPath } | undefined
export type EscapeValue = (value: JSONValue) => string
export type UnescapeValue = (escapedValue: string) => string
export interface DragInsideProps {
json: JSONValue
selection: JSONSelection
deltaY: number
items: Array<{ path: JSONPath; height: number }>
}
export type DragInsideAction =
| { beforePath: JSONPath; offset: number }
| { append: true; offset: number }
export interface RenderedItem {
path: JSONPath
height: number
}
export interface HistoryItem {
undo: {
patch: JSONPatchDocument | undefined
json: JSONValue | undefined
text: string | undefined
state: DocumentState
textIsRepaired: boolean
}
redo: {
patch: JSONPatchDocument | undefined
json: JSONValue | undefined
text: string | undefined
state: DocumentState
textIsRepaired: boolean
}
}
export type InsertType = 'value' | 'object' | 'array' | 'structure'
export interface PopupEntry {
id: number
component: SvelteComponentTyped
props: Record<string, unknown>
options: AbsolutePopupOptions
}
export interface AbsolutePopupOptions {
anchor?: Element
left?: number
top?: number
width?: number
height?: number
offsetTop?: number
offsetLeft?: number
showTip?: boolean
closeOnOuterClick?: boolean
onClose?: () => void
}
export interface JSONEditorPropsOptional {
content?: Content
readOnly?: boolean
indentation?: number | string
tabSize?: number
mode?: Mode
mainMenuBar?: boolean
navigationBar?: boolean
statusBar?: boolean
escapeControlCharacters?: boolean
escapeUnicodeCharacters?: boolean
validator?: Validator
queryLanguages?: QueryLanguage[]
queryLanguageId?: string
onChangeQueryLanguage?: OnChangeQueryLanguage
onChange?: OnChange
onRenderValue?: OnRenderValue
onClassName?: OnClassName
onRenderMenu?: OnRenderMenu
onChangeMode?: OnChangeMode
onError?: OnError
onFocus?: OnFocus
onBlur?: OnBlur
}
export interface TreeModeContext {
readOnly: boolean
parser: JSONParser
normalization: ValueNormalization
getJson: () => JSONValue
getDocumentState: () => DocumentState
findElement: (path: JSONPath) => Element | null
focus: () => void
onPatch: (operations: JSONPatchDocument, afterPatch?: AfterPatchCallback) => JSONPatchResult
onInsert: (type: InsertType) => void
onExpand: (path: JSONPath, expanded: boolean, recursive?: boolean) => void
onSelect: OnSelect
onFind: OnFind
onExpandSection: (path: JSONPath, section: Section) => void
onPasteJson: (newPastedJson: PastedJson) => void
onRenderValue: OnRenderValue
onContextMenu: OnContextMenu
onClassName: OnClassName
onDrag: (event: Event) => void
onDragEnd: () => void
}
export interface RenderValuePropsOptional {
path?: JSONPath
value?: JSONValue
readOnly?: boolean
enforceString?: boolean
selection?: JSONSelection
searchResultItems?: SearchResultItem[]
isSelected?: boolean
isEditing?: boolean
parser?: JSONParser
normalization?: ValueNormalization
onPatch?: TreeModeContext['onPatch']
onPasteJson?: OnPasteJson
onSelect?: OnSelect
onFind?: OnFind
focus?: () => void
}
export interface RenderValueProps extends RenderValuePropsOptional {
path: JSONPath
value: JSONValue
readOnly: boolean
enforceString: boolean
selection: JSONSelection | undefined
searchResultItems: SearchResultItem[] | undefined
isSelected: boolean
isEditing: boolean
parser: JSONParser
normalization: ValueNormalization
onPatch: TreeModeContext['onPatch']
onPasteJson: OnPasteJson
onSelect: OnSelect
onFind: OnFind
focus: () => void
}
export interface JSONNodeProp {
key: string
value: JSONValue
path: JSONPath
pointer: JSONPointer
expandedMap: JSONPointerMap<boolean> | undefined
enforceStringMap: JSONPointerMap<boolean> | undefined
visibleSectionsMap: JSONPointerMap<VisibleSection[]> | undefined
validationErrorsMap: JSONPointerMap<NestedValidationError> | undefined
keySearchResultItemsMap: ExtendedSearchResultItem[] | undefined
valueSearchResultItemsMap: JSONPointerMap<ExtendedSearchResultItem[]> | undefined
selection: JSONSelection | undefined
}
export interface JSONNodeItem {
index: number
value: JSONValue
path: JSONPath
pointer: JSONPointer
expandedMap: JSONPointerMap<boolean> | undefined
enforceStringMap: JSONPointerMap<boolean> | undefined
visibleSectionsMap: JSONPointerMap<VisibleSection[]> | undefined
validationErrorsMap: JSONPointerMap<NestedValidationError> | undefined
searchResultItemsMap: JSONPointerMap<ExtendedSearchResultItem[]> | undefined
selection: JSONSelection | undefined
}
export interface DraggingState {
initialTarget: Element
initialClientY: number
initialContentTop: number
selectionStartIndex: number
selectionItemsCount: number
items: RenderedItem[] | null
offset: number
didMoveItems: boolean
}
// TODO: can we define proper generic types here?
export interface RenderValueComponentDescription {
component: SvelteComponentTyped
props: Record<string, unknown>
}
export interface TransformModalOptions {
id?: string
selectedPath?: JSONPath
onTransform?: (state: {
operations: JSONPatchDocument
json: JSONValue
transformedJson: JSONValue
}) => void
onClose?: () => void
}
export interface TransformModalCallback extends TransformModalOptions {
id: string
selectedPath: JSONPath
json: JSONValue
onTransform: (state: {
operations: JSONPatchDocument
json: JSONValue
transformedJson: JSONValue
}) => void
onClose: () => void
}
export interface SortModalCallback {
id: string
json: JSONValue
selectedPath: JSONPath
onSort: OnSort
onClose: () => void
}