forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
212 lines (172 loc) · 5.21 KB
/
index.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
import * as React from 'react'
import {
ENVIRONMENT,
EventType,
IContext,
IReaction,
MODE_SSR,
Overmind,
OvermindMock,
} from 'overmind'
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 {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: oldReactInternals,
__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE:
newReactInternals,
} = React as any
const useCurrentComponent = () => {
return (
oldReactInternals?.ReactCurrentOwner?.current?.elementType ??
newReactInternals?.A?.getOwner?.()?.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 { forceRerender } = useForceRerender()
const trackStateTree = (
overmind as any
).proxyStateTreeInstance.getTrackStateTree()
const state = cb ? cb(trackStateTree.state) : trackStateTree.state
trackStateTree.track()
if (IS_PRODUCTION) {
React.useEffect(
() =>
trackStateTree.subscribe((_, __, flushId) => {
forceRerender(flushId)
}),
[trackStateTree]
)
} 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.useEffect(() => {
overmind.eventHub.emitAsync(EventType.COMPONENT_UPDATE, {
componentId: component.__componentId,
componentInstanceId,
name,
paths: Array.from(trackStateTree.pathDependencies) as any,
})
const dispose = trackStateTree.subscribe((_, __, flushId) => {
forceRerender(flushId)
})
return () => {
overmind.eventHub.emitAsync(EventType.COMPONENT_UPDATE, {
componentId: component.__componentId,
componentInstanceId,
name,
paths: [],
})
dispose()
}
}, [trackStateTree])
}
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> = () =>
// eslint-disable-next-line dot-notation
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
}