-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathtypes.ts
105 lines (93 loc) · 1.9 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
// TypeScript - type declaration file
export type Icons = {
div: string;
button: string;
form: string;
img: string;
link: string;
'list-item': string;
paragraph: string;
'list-ol': string;
'list-ul': string;
input: string;
navbar: string;
};
export type HtmlElementMap = {
div: string[];
button: string[];
form: string[];
img: string[];
link: string[];
'list-item': string[];
paragraph: string[];
'list-ol': string[];
'list-ul': string[];
input: string[];
navbar: string[];
};
export type Component = {
componentName: string;
children: string[];
htmlList: HtmlList;
isActive?: boolean;
x?: number;
y?: number;
h?: number;
w?: number;
id?: number;
};
export type ComponentMap = {
[k: string]: Component;
};
export type Routes = {
[k: string]: string[];
};
export type Project = {
filename: string;
lastSavedLocation: string;
};
export type Type = string;
export type State = {
icons: Icons;
htmlElementMap: HtmlElementMap;
componentMap: ComponentMap;
routes: Routes;
componentNameInputValue: string;
activeRoute: string;
activeComponent: string;
activeElement: string; //new
componentIndex: number; //new
elementIndex: number; //new
projectName: string;
editedProjectName: string;
selectedElementList: object[];
componentChildrenMultiselectValue: string[];
modalOpen: boolean;
htmlElements: any[];
saved: boolean;
loggedIn: boolean;
rerenderKey: number;
arrayOfStates: Array<object>;
};
// export type StateQueue = State[]
export type Mutations<State> = {
[k: Type]: (
state: State,
payload?: any,
elementName?: string,
id?: number
) => void;
};
export type Actions = {
[k: Type]: (context: any, payload?: any) => void;
};
export type HtmlChild = {
text: string;
children: HtmlChild[];
_id?: number;
x?: number;
y?: number;
w?: number;
h?: number;
};
export type HtmlList = HtmlChild[];