-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.ts
48 lines (38 loc) · 1.03 KB
/
common.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
export const ARRAY_NODE = -1
export const MAP_NODE = -2
export type Type<T> = new (...args: any[]) => T
export type JsonPatchOp = "replace" | "add" | "remove"
export interface IJsonPatch {
op: JsonPatchOp
path: string
value?: any
}
export interface IReversibleJsonPatch extends IJsonPatch {
oldValue?: any
}
// TSchemaType = [ name, props ]
export type TSchemaType = [ string, ...string[] ]
// TSchemaPatch = [ op, id, prop, value/oldValue ]
export type TSchemaPatch = [ number, number, number, any?, any? ]
export const check = (condition: any, error: string) => {
if (condition) {
throw new Error(error)
}
}
export const [ OP_ADD, OP_REPLACE, OP_REMOVE ] = [ 0, 1, 2 ]
export type NodeType = -1 | -2 | ISchemaType
export interface ISchemaNode {
id: number
parent?: ISchemaNode
type: -1 | -2 | ISchemaType
index: number
key: string | number
keys?: string[]
items: ISchemaNode[]
}
export interface ISchemaType {
name: string
index: number
props: string[]
ref?: Type<any>
}