-
Notifications
You must be signed in to change notification settings - Fork 4
/
CommonTypes.ts
138 lines (114 loc) · 3.19 KB
/
CommonTypes.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
import JsonML from './JsonML';
export interface IFormatter {
format(obj: IElmDebugValue): any;
}
export interface IJsonMLFormatter {
theme: ITheme;
handleHeader(obj: ElmDebugValueType, config?: IConfig): JsonML;
handleBody(obj: ElmDebugValueType, config?: IConfig): JsonML | null;
}
export interface IDevToolsFormatter {
header(obj: ElmDebugValueType, config?: IConfig): any[] | null;
hasBody(obj: ElmDebugValueType, config?: IConfig): boolean;
body(obj: ElmDebugValueType, config?: IConfig): any[] | null;
}
export interface IFormatterElement {
header(config?: IConfig): JsonML;
body?(config?: IConfig): JsonML | null;
}
export type IThemeOption = "dark" | "light"
export interface ITheme {
booleanStyle: string;
stringStyle: string;
numberStyle: string;
debugTagStyle: string;
greyedStyle: string;
greyedItalicsStyle: string;
customTypeNameStyle: string;
typeNameStyle: string;
dataStructureNameStyle: string;
keyElementStyle: string;
bytesStyle: string;
expandableBorderStyle: string;
elmLogoElementStyle: string;
}
export interface IConfig {
elmFormat: boolean;
level: number;
misc?: any;
key?: JsonML;
}
export type ElmDebugValueType =
| IElmDebugValue
| IElmDebugCustomValue
| IElmDebugRecordValue
| IElmDebugListValue
| IElmDebugDictValue
| IElmDebugTypeValueType
| IElmDebugNumberValue
| IElmDebugStringValue
| IElmDebugBoolValue;
export interface IElmDebugValue {
type: string;
name?: string;
value?: ElmDebugValueType;
}
export interface IElmDebugCustomValue {
type: string;
name: string;
value: ElmDebugValueType[];
}
export interface IElmDebugTypeValueType {
type: string;
name: string;
}
export interface IElmDebugListValue {
type: string;
value: ElmDebugValueType[];
}
export interface IElmDebugRecordValue {
type: string;
value: { [key: string]: ElmDebugValueType };
}
export interface IElmDebugDictValue {
type: string;
value: Array<{ key: ElmDebugValueType; value: ElmDebugValueType }>;
}
export interface IElmDebugNumberValue {
type: string;
value: number | string;
}
export interface IElmDebugStringValue {
type: string;
value: string;
}
export interface IElmDebugBoolValue {
type: string;
value: boolean;
}
export function isElmValue(value: any): value is IElmDebugValue {
return (value as IElmDebugValue).type !== undefined;
}
export function isElmCustomValue(value: any): value is IElmDebugCustomValue {
return value.type === 'Custom';
}
export function isElmRecordValue(value: any): value is IElmDebugRecordValue {
return value.type === 'Record';
}
export function isElmListValue(value: any): value is IElmDebugListValue {
return (
value.type === 'List' ||
value.type === 'Array' ||
value.type === 'Set' ||
value.type === 'Tuple'
);
}
export function isElmNumberType(value: any): value is IElmDebugNumberValue {
return value.type === 'Number';
}
export function isElmTypeValue(value: any): value is IElmDebugTypeValueType {
return value.type === 'Type';
}
export function isElmDictValue(value: any): value is IElmDebugDictValue {
return value.type === 'Dict';
}