forked from DeloitteAU/react-habitat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
232 lines (181 loc) · 4.14 KB
/
index.d.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
/**
* Copyright 2016-present, Deloitte Digital.
* All rights reserved.
*
* This source code is licensed under the BSD-3-Clause license found in the
* LICENSE file in the root directory of this source tree.
*/
declare module "react-habitat" {
interface IDomFactory {
/**
* The inject method after a wire-up has been requested
* @param {*} module - The component
* @param {object} props - The components properties
* @param {Element} target - The element to inject the component into
*/
inject: (module: any, props: {}, target: Element) => void;
/**
* The dispose method
* @param {Element} target - The element to dispose
*/
dispose: (target: Element) => void;
}
interface IContainer {
/**
* Get a registered component for a key
* @param {string} name - The key name of the component that has been registered
*/
resolve: (name: string) => any;
/**
* Resolve a component with its meta data
*/
resolveWithMeta: (name: string) => any;
/**
* The container's unique id
*/
id: string;
/**
* The containers dom factory
*/
factory: IDomFactory;
}
interface IBootstrapper {
/**
* Set the container
* @param {IContainer} container - The container
*/
setContainer: (container: IContainer) => void;
/**
* Apply the container to an updated dom structure
*/
update: (node?: Element) => void;
/**
* Start DOM watcher for auto wire ups
*/
startWatcher: () => void;
/**
* Stop the DOM watcher if running
*/
stopWatcher: () => void;
/**
* Dispose of the container
*/
dispose: () => void;
}
interface IRegistrationOptions {
/**
* The tag to render with eg 'span'
*/
tag?: string;
/**
* The habitats class name
*/
className?: string;
/**
* If true, the original node will remain in the dom
*/
replaceDisabled?: boolean;
}
interface IRegistration {
/**
* Set the registration key, must be unique
* @param {string} key - The key
*/
as: (key: string) => IRegistration;
/**
* Set the registration default props
*/
withDefaultProps: (defaultProps: any) => IRegistration;
/**
* Set the habitat options
*/
withOptions: (options: Partial<IRegistrationOptions>) => IRegistration;
}
interface IContainerBuilder {
/**
* Register new component
*/
register: (component: any) => IRegistration;
/**
* Register new component asycnrosly
*/
registerAsync: (operator: () => Promise<any>) => IRegistration;
/**
* The container factory
*/
factory: IDomFactory;
/**
* Build the container
*/
build: () => IContainer;
}
class Bootstrapper implements IBootstrapper {
/**
* Sets the container
*/
setContainer: (container: IContainer, callback?: Function) => void;
/**
* The component selector
*/
componentSelector: string;
/**
* Apply the container to an updated dom structure
*/
update: (node?: Element) => void;
/**
* Start DOM watcher for auto wire ups
*/
startWatcher: () => void;
/**
* Stop the DOM watcher if running
*/
stopWatcher: () => void;
/**
* Disposes the container
*/
dispose: () => void;
}
class Container implements IContainer {
constructor(factory: IDomFactory, registrations?: any);
/**
* The containers unique id
*/
id: string;
/**
* Resolve a component
*/
resolve: (name: string) => any;
/**
* Resolve a component with its meta data
*/
resolveWithMeta: (name: string) => any;
/**
* The containers dom factory
*/
factory: IDomFactory;
/**
* Returns the number of registrations in the container
*/
length: Number;
}
class ContainerBuilder implements IContainerBuilder {
constructor(defaultOptions?: Partial<IRegistrationOptions>);
/**
* Register new component
*/
register: (component: any) => IRegistration;
/**
* Register new component asycnrosly
* @param operator
*/
registerAsync: (operator: () => Promise<any>) => IRegistration;
/**
* The container factory
*/
factory: IDomFactory;
/**
* Build the container
*/
build: () => IContainer;
}
}