-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdipatchOn-spec.js
251 lines (208 loc) · 7.29 KB
/
dipatchOn-spec.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
/* global describe, it */
import { expect } from 'chai';
import { reduxObservable } from 'redux-observable';
import { dispatchOn } from '../';
import { Component } from 'react';
import { createStore, applyMiddleware } from 'redux';
import * as Rx from 'rxjs';
import 'babel-polyfill';
const { Observable } = Rx;
describe('dispatchOn', () => {
it('should exist', () => {
expect(dispatchOn).to.be.a('function');
});
it('should wire a thunkservable to dispatch on componentWillMount', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
@dispatchOn({ willMount: [() => () => Observable.of({ type: 'TEST' })] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.componentWillMount();
expect(reducedActions).to.deep.equal([{ type: '@@redux/INIT' }, { type: 'TEST' }]);
});
it('should wire a thunkservable to dispatch on componentDidMount', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
@dispatchOn({ mount: [() => () => Observable.of({ type: 'TEST' })] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.componentDidMount();
expect(reducedActions).to.deep.equal([{ type: '@@redux/INIT' }, { type: 'TEST' }]);
});
it('should wire a thunkservable to dispatch on componentDidUpdate', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
let _prevProps;
let _thisProps;
@dispatchOn({ update: [(thisProps, prevProps) => {
_thisProps = thisProps;
_prevProps = prevProps;
return () => Observable.of({ type: 'TEST' });
}] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.props = { some: 'props' };
comp.componentDidUpdate({ prev: 'props' });
expect(_thisProps).to.deep.equal({ some: 'props' });
expect(_prevProps).to.deep.equal({ prev: 'props' });
expect(reducedActions).to.deep.equal([{ type: '@@redux/INIT' }, { type: 'TEST' }]);
});
it('should wire a thunkservable to dispatch on componentWillReceiveProps', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
let _thisProps;
let _nextProps;
@dispatchOn({ willRecieveProps: [(thisProps, nextProps) => {
_thisProps = thisProps;
_nextProps = nextProps;
return () => Observable.of({ type: 'TEST' });
}] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.props = { some: 'props' };
comp.componentWillReceiveProps({ next: 'props' });
expect(_thisProps).to.deep.equal({ some: 'props' });
expect(_nextProps).to.deep.equal({ next: 'props' });
expect(reducedActions).to.deep.equal([{ type: '@@redux/INIT' }, { type: 'TEST' }]);
});
it('should unsubscribe on componentWillUnmount', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
let source1Unsubbed = false;
let source1 = new Observable((observer) => {
return () => {
source1Unsubbed = true;
};
});
let source2Unsubbed = false;
let source2 = new Observable((observer) => {
return () => {
source2Unsubbed = true;
};
});
@dispatchOn({ mount: [
() => () => source1,
() => () => source2
] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.componentDidMount();
expect(source1Unsubbed).to.equal(false);
expect(source2Unsubbed).to.equal(false);
comp.componentWillUnmount();
expect(source1Unsubbed).to.equal(true);
expect(source2Unsubbed).to.equal(true);
});
it('should subscribe to multiple thunkservables', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
let source1 = Observable.of({ type: 'SOURCE1' });
let source2 = Observable.of({ type: 'SOURCE2' });
@dispatchOn({ mount: [
() => () => source1,
() => () => source2
] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.componentDidMount();
expect(reducedActions).to.deep.equal([
{ type: '@@redux/INIT' },
{ type: 'SOURCE1' },
{ type: 'SOURCE2' }
]);
});
it('should allow normal actions to dispatch on mount', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
let source2 = Observable.of({ type: 'SOURCE2' });
@dispatchOn({ mount: [() => ({ type: 'PLAIN_ACTION' }), () => () => source2] })
class TestComponent extends Component {
}
let comp = new TestComponent();
// fake connection?
comp.context = { store };
comp.componentDidMount();
expect(reducedActions).to.deep.equal([
{ type: '@@redux/INIT' },
{ type: 'PLAIN_ACTION' },
{ type: 'SOURCE2' }
]);
// since plain actions don't return subscriptions, because they're not functions
// let's just be really sure we don't break the unsub in the componentWillUnmount
expect(() => comp.componentWillUnmount()).not.to.throw();
});
it('should accept factories that get invoked with props', () => {
let reducedActions = [];
let reducer = (state, action) => {
reducedActions.push(action);
return state;
};
let store = createStore(reducer, applyMiddleware(reduxObservable()));
@dispatchOn({
mount: [
(props) => ({ type: 'PLAIN_ACTION', value: props.value }),
(props) => () => Observable.of({ type: 'SOURCE2', value: props.value })
]
})
class TestComponent extends Component {
}
let comp = new TestComponent({ value: 'Bilbo Bagginses' });
// fake connection?
comp.context = { store };
comp.componentDidMount();
expect(reducedActions).to.deep.equal([
{ type: '@@redux/INIT' },
{ type: 'PLAIN_ACTION', value: 'Bilbo Bagginses' },
{ type: 'SOURCE2', value: 'Bilbo Bagginses' }
]);
// since plain actions don't return subscriptions, because they're not functions
// let's just be really sure we don't break the unsub in the componentWillUnmount
expect(() => comp.componentWillUnmount()).not.to.throw();
});
});