This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 786
/
connect.tsx
415 lines (328 loc) · 11.4 KB
/
connect.tsx
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/// <reference path="../typings/main.d.ts" />
import {
Component,
createElement,
PropTypes,
} from 'react';
// modules don't export ES6 modules
import isObject = require('lodash.isobject');
import isEqual = require('lodash.isequal');
import invariant = require('invariant');
import assign = require('object-assign');
import {
IMapStateToProps,
IMapDispatchToProps,
IConnectOptions,
connect as ReactReduxConnect,
} from 'react-redux';
import {
Store,
} from 'redux';
import ApolloClient, { readQueryFromStore } from 'apollo-client';
import {
GraphQLResult,
} from 'graphql';
export declare interface MapQueriesToPropsOptions {
ownProps: any;
state: any;
};
export declare interface MapMutationsToPropsOptions {
ownProps: any;
state: any;
};
export declare interface ConnectOptions {
mapStateToProps?: IMapStateToProps;
mapDispatchToProps?: IMapDispatchToProps;
options?: IConnectOptions;
mergeProps?(stateProps: any, dispatchProps: any, ownProps: any): any;
mapQueriesToProps?(opts: MapQueriesToPropsOptions): any; // WatchQueryHandle
mapMutationsToProps?(opts: MapMutationsToPropsOptions): any; // Mutation Handle
};
const defaultMapQueriesToProps = opts => ({ });
const defaultMapMutationsToProps = opts => ({ });
const defaultQueryData = {
loading: true,
errors: null,
result: null,
};
const defaultMutationData = assign({}, defaultQueryData);
function getDisplayName(WrappedComponent) {
return WrappedComponent.displayName || WrappedComponent.name || 'Component';
}
// Helps track hot reloading.
let nextVersion = 0;
export default function connect(opts?: ConnectOptions) {
if (!opts) {
opts = {};
}
let { mapQueriesToProps, mapMutationsToProps } = opts;
// clean up the options for passing to redux
delete opts.mapQueriesToProps;
delete opts.mapMutationsToProps;
/*
mapQueriesToProps:
This method returns a object in the form of { [string]: WatchQueryHandle }. Each
key will be mapped to the props passed to the wrapped component. The resulting prop will
be an object with the following keys:
{
loading: boolean,
errors: Errors,
result: GraphQLResult,
}
*/
mapQueriesToProps = mapQueriesToProps ? mapQueriesToProps : defaultMapQueriesToProps;
/*
mapMutationsToProps
*/
mapMutationsToProps = mapMutationsToProps ? mapMutationsToProps : defaultMapMutationsToProps;
// Helps track hot reloading.
const version = nextVersion++;
return function wrapWithApolloComponent(WrappedComponent) {
const apolloConnectDisplayName = `Apollo(Connect(${getDisplayName(WrappedComponent)}))`;
class ApolloConnect extends Component<any, any> {
static displayName = apolloConnectDisplayName;
static WrappedComponent = WrappedComponent;
static contextTypes = {
store: PropTypes.object.isRequired,
client: PropTypes.object.isRequired,
};
// react and react dev tools (HMR) needs
public state: any; // redux state
public props: any; // passed props
public version: number;
// data storage
private store: Store<any>;
private client: ApolloClient; // apollo client
private data: any; // apollo data
// request / action storage
private queryHandles: any;
private mutations: any;
// calculated switches to control rerenders
private haveOwnPropsChanged: boolean;
private hasQueryDataChanged: boolean;
private hasMutationDataChanged: boolean;
// the element to render
private renderedElement: any;
constructor(props, context) {
super(props, context);
this.version = version;
this.store = props.store || context.store;
this.client = props.client || context.client;
invariant(!!this.client,
`Could not find "client" in either the context or ` +
`props of "${apolloConnectDisplayName}". ` +
`Either wrap the root component in a <Provider>, ` +
`or explicitly pass "client" as a prop to "${apolloConnectDisplayName}".`
);
const storeState = this.store.getState();
this.state = assign({}, storeState);
this.data = {};
this.mutations = {};
}
componentWillMount() {
const { props, state } = this;
this.subscribeToAllQueries(props, state);
this.createAllMutationHandles(props, state);
}
componentWillReceiveProps(nextProps) {
// we got new props, we need to unsubscribe and re-watch all handles
// with the new data
// XXX determine if any of this data is actually used somehow
// to avoid rebinding queries if nothing has changed
if (!isEqual(this.props, nextProps)) {
this.haveOwnPropsChanged = true;
this.unsubcribeAllQueries();
this.subscribeToAllQueries(nextProps, this.state);
}
}
shouldComponentUpdate(nextProps, nextState) {
return this.haveOwnPropsChanged ||
this.hasQueryDataChanged ||
this.hasMutationDataChanged;
}
componentWillUnmount() {
this.unsubcribeAllQueries();
}
subscribeToAllQueries(props: any, state: any) {
const { watchQuery, reduxRootKey } = this.client;
const { store } = this;
const queryHandles = mapQueriesToProps({
state: store.getState(),
ownProps: props,
});
if (isObject(queryHandles) && Object.keys(queryHandles).length) {
this.queryHandles = queryHandles;
for (const key in queryHandles) {
if (!queryHandles.hasOwnProperty(key)) {
continue;
}
const { query, variables } = queryHandles[key];
const handle = watchQuery({ query, variables });
// rudimentary way to manually check cache
let queryData = defaultQueryData as any;
try {
const result = readQueryFromStore({
store: store.getState()[reduxRootKey].data,
query,
variables,
});
queryData = {
errors: null,
loading: false,
result,
};
} catch (e) {/* tslint */}
this.data[key] = queryData;
this.handleQueryData(handle, key);
}
}
}
unsubcribeAllQueries() {
if (this.queryHandles) {
for (const key in this.queryHandles) {
if (!this.queryHandles.hasOwnProperty(key)) {
continue;
}
this.queryHandles[key].unsubscribe();
}
}
}
handleQueryData(handle: any, key: string) {
// bind each handle to updating and rerendering when data
// has been recieved
let refetch;
// since we don't have the query id, we can manually handle
// a lifecyle event for loading if this query is refetched
const createBoundRefetch = (dataKey, refetchMethod) => {
return (...args) => {
this.data[dataKey] = assign(this.data[dataKey], {
loading: true,
refetch,
});
this.hasQueryDataChanged = true;
// update state to latest of redux store
this.setState(this.store.getState());
refetchMethod(...args);
};
};
const forceRender = ({ errors, data }: any) => {
this.data[key] = {
loading: false,
result: data || null,
errors,
refetch: refetch, // copy over refetch method
};
this.hasQueryDataChanged = true;
// update state to latest of redux store
this.setState(this.store.getState());
};
this.queryHandles[key] = handle.subscribe({
next: forceRender,
error(errors) { forceRender({ errors }); },
});
refetch = createBoundRefetch(key, this.queryHandles[key].refetch);
this.data[key] = assign(this.data[key], {
refetch,
});
}
createAllMutationHandles(props: any, state: any): void {
const mutations = mapMutationsToProps({
state,
ownProps: props,
});
if (isObject(mutations) && Object.keys(mutations).length) {
for (const key in mutations) {
if (!mutations.hasOwnProperty(key)) {
continue;
}
// setup thunk of mutation
const handle = this.createMutationHandle(key, mutations[key]);
// XXX should we validate we have what we need to prevent errors?
// bind key to state for updating
this.data[key] = defaultMutationData;
this.mutations[key] = handle;
}
}
}
createMutationHandle(key: string, method: () => { mutation: string, variables?: any }): () => Promise<GraphQLResult> {
const { mutate } = this.client;
const { store } = this;
// middleware to update the props to send data to wrapped component
// when the mutation is done
const forceRender = ({ errors, data }: GraphQLResult): GraphQLResult => {
this.data[key] = {
loading: false,
result: data,
errors,
};
this.hasMutationDataChanged = true;
// update state to latest of redux store
// this forces a render of children
this.setState(store.getState());
return {
errors,
data,
};
};
return (...args) => {
const { mutation, variables } = method.apply(this.client, args);
return new Promise((resolve, reject) => {
this.data[key] = assign(this.data[key], {
loading: true,
});
this.hasMutationDataChanged = true;
// update state to latest of redux store
// this forces a render of children
this.setState(store.getState());
resolve();
})
.then(() => {
return mutate({ mutation, variables });
})
.then(forceRender)
.catch(errors => forceRender({ errors }));
};
}
render() {
const {
haveOwnPropsChanged,
hasQueryDataChanged,
hasMutationDataChanged,
renderedElement,
mutations,
props,
data,
} = this;
this.haveOwnPropsChanged = false;
this.hasQueryDataChanged = false;
this.hasMutationDataChanged = false;
let clientProps = {
mutate: this.client.mutate,
query: this.client.query,
} as any;
if (Object.keys(mutations).length) {
clientProps.mutations = mutations;
}
const mergedPropsAndData = assign({}, props, data, clientProps);
if (
!haveOwnPropsChanged &&
!hasQueryDataChanged &&
!hasMutationDataChanged &&
renderedElement
) {
return renderedElement;
}
this.renderedElement = createElement(WrappedComponent, mergedPropsAndData);
return this.renderedElement;
}
}
// apply react-redux args from original args
const { mapStateToProps, mapDispatchToProps, mergeProps, options } = opts;
return ReactReduxConnect(
mapStateToProps,
mapDispatchToProps,
mergeProps,
options
)(ApolloConnect);
};
};