forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
239 lines (200 loc) · 5.82 KB
/
index.ts
File metadata and controls
239 lines (200 loc) · 5.82 KB
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
import {
ENVIRONMENT,
EventType,
IContext,
IReaction,
MODE_SSR,
Overmind,
OvermindMock,
} from 'overmind'
import * as react from 'react'
const IS_PRODUCTION = ENVIRONMENT === 'production'
const IS_TEST = ENVIRONMENT === 'test'
const isNode =
!IS_TEST &&
typeof process !== 'undefined' &&
process.title &&
process.title.includes('node')
export type IReactComponent<P = any> =
| react.FunctionComponent<P>
| react.ComponentClass<P>
| react.ClassicComponentClass<P>
function getFiberType(component) {
if (component.type) {
// React.memo
return getFiberType(component.type)
}
// React.forwardRef
return component.render || component
}
// Inspired from https://github.com/facebook/react/blob/master/packages/react-devtools-shared/src/backend/renderer.js
function getDisplayName(component): string {
const type = getFiberType(component)
return type.displayName || type.name || 'Anonymous'
}
function throwMissingContextError() {
throw new Error(
'The Overmind hook could not find an Overmind instance on the context of React. Please make sure you use the Provider component at the top of your application and expose the Overmind instance there. Please read more in the React guide on the website'
)
}
const context = react.createContext<Overmind<any>>({} as Overmind<any>)
let nextComponentId = 0
export const Provider: react.ProviderExoticComponent<
react.ProviderProps<Overmind<any> | OvermindMock<any>>
> = context.Provider
function useForceRerender() {
const [flushId, forceRerender] = react.useState(-1)
return {
flushId,
forceRerender,
}
}
let currentComponentInstanceId = 0
const {
ReactCurrentOwner,
} = (react as any).__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
const useCurrentComponent = () => {
return ReactCurrentOwner &&
ReactCurrentOwner.current &&
ReactCurrentOwner.current.elementType
? ReactCurrentOwner.current.elementType
: {}
}
const useState = <Context extends IContext<{ state: {} }>>(
cb?: (state: Context['state']) => any
): Context['state'] => {
const overmind = react.useContext(context) as Overmind<any>
if (!(overmind as any).mode) {
throwMissingContextError()
}
if (isNode || (overmind as any).mode.mode === MODE_SSR) {
return overmind.state
}
const mountedRef = react.useRef<any>(false)
const { flushId, forceRerender } = useForceRerender()
const tree = react.useMemo(
() => (overmind as any).proxyStateTreeInstance.getTrackStateTree(),
[flushId]
)
const state = cb ? cb(tree.state) : tree.state
if (IS_PRODUCTION) {
react.useLayoutEffect(
() => {
mountedRef.current = true
tree.stopTracking()
return () => {
tree.dispose()
}
},
[tree]
)
tree.track((_, __, flushId) => {
if (!mountedRef.current) {
// This one is not dealt with by the useLayoutEffect
tree.dispose()
return
}
forceRerender(flushId)
})
} else {
const component = useCurrentComponent()
const name = getDisplayName(component)
component.__componentId =
typeof component.__componentId === 'undefined'
? nextComponentId++
: component.__componentId
const { current: componentInstanceId } = react.useRef<any>(
currentComponentInstanceId++
)
react.useLayoutEffect(() => {
mountedRef.current = true
overmind.eventHub.emitAsync(EventType.COMPONENT_ADD, {
componentId: component.__componentId,
componentInstanceId,
name,
paths: Array.from(tree.pathDependencies) as any,
})
return () => {
overmind.eventHub.emitAsync(EventType.COMPONENT_REMOVE, {
componentId: component.__componentId,
componentInstanceId,
name,
})
}
}, [])
react.useLayoutEffect(
() => {
tree.stopTracking()
overmind.eventHub.emitAsync(EventType.COMPONENT_UPDATE, {
componentId: component.__componentId,
componentInstanceId,
name,
flushId,
paths: Array.from(tree.pathDependencies) as any,
})
return () => {
tree.dispose()
}
},
[tree]
)
tree.track((_, __, flushId) => {
if (!mountedRef.current) {
// This one is not dealt with by the useLayoutEffect
tree.dispose()
return
}
forceRerender(flushId)
})
}
return state
}
const useActions = <
Context extends IContext<{ actions: {} }>
>(): Context['actions'] => {
const overmind = react.useContext(context) as Overmind<any>
if (!(overmind as any).mode) {
throwMissingContextError()
}
return overmind.actions
}
const useEffects = <
Context extends IContext<{ effects: {} }>
>(): Context['effects'] => {
const overmind = react.useContext(context) as Overmind<any>
if (!(overmind as any).mode) {
throwMissingContextError()
}
return overmind.effects
}
const useReaction = <Context extends IContext<{ state: {} }>>(): IReaction<
Context
> => {
const overmind = react.useContext(context) as Overmind<any>
if (!(overmind as any).mode) {
throwMissingContextError()
}
return overmind.reaction as any
}
export interface StateHook<Context extends IContext<{}>> {
(): Context['state']
<T>(cb?: (state: Context['state']) => T): T
}
export const createStateHook: <
Context extends IContext<{ state: {} }>
>() => StateHook<Context> = () => useState
export const createActionsHook: <
Context extends IContext<{ actions: {} }>
>() => () => Context['actions'] = () => {
return useActions as any
}
export const createEffectsHook: <
Context extends IContext<{ effects: {} }>
>() => () => Context['effects'] = () => {
return useEffects as any
}
export const createReactionHook: <
Context extends IContext<{ state: {} }>
>() => () => IReaction<Context> = () => {
return useReaction as any
}