-
Notifications
You must be signed in to change notification settings - Fork 627
/
component.js
288 lines (262 loc) 路 7.36 KB
/
component.js
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
import Rax, { createElement } from 'rax';
import renderer from 'rax-test-renderer';
import createComponent from '../createComponent';
import { getComponent } from '../componentsHub';
import createWorkerDriver from 'driver-worker';
describe('Mini Program Component', () => {
it('should render default slots', () => {
function renderFactory(Rax) {
return function(instance, data) {
return (
<view>Hello {this.$slots.default}</view>
);
};
}
const Comp = createComponent(renderFactory, Rax, {});
const tree = renderer.create(
<Comp page="https://example.com/">Example</Comp>
);
expect(tree).toMatchSnapshot();
});
it('should render data and props', () => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
foo: data.foo,
bar: data.bar,
});
};
}
const Comp = createComponent(renderFactory, Rax, {
data: { foo: 'from data' },
});
const tree = renderer.create(createElement(Comp, { bar: 'from prop' }));
expect(tree).toMatchSnapshot();
});
it('should works well with didMount lifecycle', () => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
foo: data.foo,
});
};
}
const Comp = createComponent(renderFactory, Rax, {
data: { foo: 'from data' },
didMount() {
this.setData({ foo: 'modified in didMount' });
},
});
const tree = renderer.create(createElement(Comp));
expect(tree).toMatchSnapshot();
});
it('should works well with didUpdate and didUnmount lifecycle', (done) => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
foo: data.foo,
});
};
}
const Comp = createComponent(renderFactory, Rax, {
data: { foo: 'from data' },
didMount() {
this.setData({ foo: 'modified in didMount' });
},
didUpdate(prevProps, prevData) {
expect(prevProps).toEqual({ bar: 1 });
expect(prevData).toEqual({ foo: 'from data' });
},
didUnmount() {
// if did unmount not triggered, task will not be done.
done();
},
});
const tree = renderer.create(createElement(Comp, { bar: 1 }));
tree.unmount();
});
it('should works well with setData', (done) => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
foo: data.foo,
});
};
}
const Comp = createComponent(renderFactory, Rax, {
data: { arr: [{ a: 1, b: 2 }] },
didMount() {
this.setData({
'arr[0].a': 3,
'arr[2]': { a: 10, b: 20 }
});
expect(this.data).toEqual({
arr: [
{ a: 3, b: 2 },
undefined,
{ a: 10, b: 20 },
]
});
},
didUnmount() {
done();
},
});
const tree = renderer.create(createElement(Comp, { bar: 1 }));
tree.unmount();
});
it('should works well with named slot', () => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {}, [data.$slots.default, data.$slots.named]);
};
}
const Comp = createComponent(renderFactory, Rax, { data: {} });
const tree = renderer.create(createElement(Comp, {}, [
'child',
createElement('text', { slot: 'named' }, 'named slot')
]));
expect(tree).toMatchSnapshot();
});
it('should works well with methods', (done) => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {}, data.count);
};
}
const Comp = createComponent(renderFactory, Rax, {
data: { count: 0 },
methods: {
countAdd() {
this.setData({ count: this.data.count + 1 });
},
},
didMount() {
this.countAdd();
},
didUnmount() {
done();
},
});
const tree = renderer.create(createElement(Comp, {}));
expect(tree.toJSON()).toMatchSnapshot();
tree.unmount();
});
it('should works well with register components', () => {
const componentPath = 'path/to/component';
function renderFactory(Rax) {
return function(data) {
return createElement('view', { foo: 'bar' });
};
}
const Comp = createComponent(renderFactory, Rax, {}, componentPath);
expect(getComponent(componentPath)).toEqual(Comp);
});
it('should get componet is, $page, $id', (done) => {
const $page = Symbol('$page');
function renderFactory(Rax) {
return function(data) {
return createElement('view', {}, data.count);
};
}
const compPath = 'path/to/component';
const Comp = createComponent(renderFactory, Rax, {
data: { count: 0 },
didMount() {
expect(this.is).toEqual(compPath);
expect(typeof this.$id).toEqual('number');
expect(this.$page).toEqual($page);
done();
},
}, compPath);
class Page extends Rax.Component {
static contextTypes = { $page: null };
getChildContext() {
return { $page };
}
render() {
return createElement('view', {}, [createElement(Comp)]);
}
}
renderer.create(createElement(Page));
});
it('should have default val for data', (done) => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
foo: data.foo,
});
};
}
const Comp = createComponent(renderFactory, Rax, {
// data field is empty.
didMount() {
this.someMethod();
done();
},
methods: {
someMethod() {
expect(this.data).toEqual({});
},
}
});
renderer.create(createElement(Comp, { bar: 'from prop' }));
});
it('should render style once', (done) => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
className: 'foo',
});
};
}
const cssText = '.foo { color: red; }';
const Comp = createComponent(renderFactory, Rax, {}, 'path/to/component', cssText);
global.setImmediate = null;
const driver = createWorkerDriver({
postMessage(message) {
expect(message).toMatchSnapshot();
done();
},
addEventListener() {},
});
class Page extends Rax.Component {
static contextTypes = { $page: null };
getChildContext() {
const $page = {
vnode: { _document: driver.document }
};
return { $page };
}
render() {
// Render Comp 4 times.
return createElement('view', null, [
createElement(Comp),
createElement(Comp),
createElement(Comp),
createElement(Comp),
]);
}
}
Rax.render(createElement(Page), null, { driver });
});
it('should render weixin component props', () => {
function renderFactory(Rax) {
return function(data) {
return createElement('view', {
bar: data.bar,
});
};
}
const Comp = createComponent(renderFactory, Rax, {
properties: {
bar: {
type: String,
value: 'from prop'
}
},
}, null, null, 'weixin');
const tree = renderer.create(createElement(Comp));
expect(tree).toMatchSnapshot();
});
});