-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
react.js
325 lines (287 loc) · 9.88 KB
/
react.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
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
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* A UI node that can be rendered by React. React can render most primitives in
* addition to elements and arrays of nodes.
*/
declare type React$Node =
| void
| null
| boolean
| number
| string
| React$Element<any>
| React$Portal
| Iterable<React$Node>;
/**
* Base class of ES6 React classes, modeled as a polymorphic class whose main
* type parameters are Props and State.
*/
declare class React$Component<Props, State = void> {
// fields
props: Props;
state: State;
// action methods
setState(
partialState: $Shape<State> | ((State, Props) => $Shape<State> | void),
callback?: () => mixed,
): void;
forceUpdate(callback?: () => void): void;
// lifecycle methods
constructor(props?: Props, context?: any): void;
render(): React$Node;
componentWillMount(): mixed;
UNSAFE_componentWillMount(): mixed;
componentDidMount(): mixed;
componentWillReceiveProps(
nextProps: Props,
nextContext: any,
): mixed;
UNSAFE_componentWillReceiveProps(
nextProps: Props,
nextContext: any,
): mixed;
shouldComponentUpdate(
nextProps: Props,
nextState: State,
nextContext: any,
): boolean;
componentWillUpdate(
nextProps: Props,
nextState: State,
nextContext: any,
): mixed;
UNSAFE_componentWillUpdate(
nextProps: Props,
nextState: State,
nextContext: any,
): mixed;
componentDidUpdate(
prevProps: Props,
prevState: State,
prevContext: any,
): mixed;
componentWillUnmount(): mixed;
// long tail of other stuff not modeled very well
refs: any;
context: any;
getChildContext(): any;
static displayName?: ?string;
static childContextTypes: any;
static contextTypes: any;
static propTypes: $Subtype<{[_: $Keys<Props>]: any}>;
// We don't add a type for `defaultProps` so that its type may be entirely
// inferred when we diff the type for `defaultProps` with `Props`. Otherwise
// the user would need to define a type (which would be redundant) to override
// the type we provide here in the base class.
//
// static defaultProps: $Shape<Props>;
}
declare class React$PureComponent<Props, State = void>
extends React$Component<Props, State> {
// TODO: Due to bugs in Flow's handling of React.createClass, some fields
// already declared in the base class need to be redeclared below. Ideally
// they should simply be inherited.
props: Props;
state: State;
}
/**
* Base class of legacy React classes, which extends the base class of ES6 React
* classes and supports additional methods.
*/
declare class LegacyReactComponent<Props, State>
extends React$Component<Props, State> {
// additional methods
replaceState(state: State, callback?: () => void): void;
isMounted(): bool;
// TODO: Due to bugs in Flow's handling of React.createClass, some fields
// already declared in the base class need to be redeclared below. Ideally
// they should simply be inherited.
props: Props;
state: State;
}
/**
* The type of a stateless functional component. In most cases these components
* are a single function. However, they may have some static properties that we
* can type check.
*/
declare type React$StatelessFunctionalComponent<Props> = {
(props: Props, context: any): React$Node,
displayName?: ?string,
propTypes?: $Subtype<{[_: $Keys<Props>]: any}>,
contextTypes?: any
};
/**
* The type of a component in React. A React component may be a:
*
* - Stateless functional components. Functions that take in props as an
* argument and return a React node.
* - ES6 class component. Components with state defined either using the ES6
* class syntax, or with the legacy `React.createClass()` helper.
*/
declare type React$ComponentType<Props> =
| React$StatelessFunctionalComponent<Props>
| Class<React$Component<Props, any>>;
/**
* The type of an element in React. A React element may be a:
*
* - String. These elements are intrinsics that depend on the React renderer
* implementation.
* - React component. See `ComponentType` for more information about its
* different variants.
*/
declare type React$ElementType =
| string
| React$StatelessFunctionalComponent<any>
| Class<React$Component<any, any>>;
/**
* Type of a React element. React elements are commonly created using JSX
* literals, which desugar to React.createElement calls (see below).
*/
declare type React$Element<+ElementType: React$ElementType> = {|
+type: ElementType,
+props: React$ElementProps<ElementType>,
+key: React$Key | null,
+ref: any,
|};
/**
* The type of the key that React uses to determine where items in a new list
* have moved.
*/
declare type React$Key = string | number;
/**
* The type of the ref prop available on all React components.
*/
declare type React$Ref<ElementType: React$ElementType> =
| {current: React$ElementRef<ElementType> | null}
| ((React$ElementRef<ElementType> | null) => mixed)
| string;
/**
* A React portal node. The implementation of the portal node is hidden to React
* users so we use an opaque type.
*/
declare opaque type React$Portal;
declare module react {
declare export var DOM: any;
declare export var PropTypes: ReactPropTypes;
declare export var version: string;
declare export function checkPropTypes<V>(
propTypes: $Subtype<{[_: $Keys<V>]: ReactPropsCheckType}>,
values: V,
location: string,
componentName: string,
getStack: ?(() => ?string)
) : void;
declare export var createClass: React$CreateClass;
declare export function createContext<T>(
defaultValue: T,
): {
Provider: React$ComponentType<{value: T}>,
Consumer: React$ComponentType<{children: (value: T) => React$Node}>,
};
declare export var createElement: React$CreateElement;
declare export var cloneElement: React$CloneElement;
declare export function createFactory<ElementType: React$ElementType>(
type: ElementType,
): React$ElementFactory<ElementType>;
declare export function createRef<ElementType: React$ElementType>(
): {current: null | React$ElementRef<ElementType>};
declare export function isValidElement(element: any): boolean;
declare export var Component: typeof React$Component;
declare export var PureComponent: typeof React$PureComponent;
declare export type StatelessFunctionalComponent<P> =
React$StatelessFunctionalComponent<P>;
declare export type ComponentType<P> = React$ComponentType<P>;
declare export type ElementType = React$ElementType;
declare export type Element<+C> = React$Element<C>;
declare export var Fragment: ({children: React$Node}) => React$Node;
declare export type Key = React$Key;
declare export type Ref<C> = React$Ref<C>;
declare export type Node = React$Node;
declare export type Portal = React$Portal;
declare export type ElementProps<C> = React$ElementProps<C>;
declare export type ElementConfig<C> = React$ElementConfig<C>;
declare export type ElementRef<C> = React$ElementRef<C>;
declare export type ChildrenArray<+T> = $ReadOnlyArray<ChildrenArray<T>> | T;
declare export var Children: {
map<T, U>(
children: ChildrenArray<T>,
fn: (child: $NonMaybeType<T>, index: number) => U,
thisArg?: mixed,
): Array<$NonMaybeType<U>>;
forEach<T>(
children: ChildrenArray<T>,
fn: (child: T, index: number) => mixed,
thisArg?: mixed,
): void;
count(children: ChildrenArray<any>): number;
only<T>(children: ChildrenArray<T>): $NonMaybeType<T>;
toArray<T>(children: ChildrenArray<T>): Array<$NonMaybeType<T>>;
};
declare export default {|
+DOM: typeof DOM,
+PropTypes: typeof PropTypes,
+version: typeof version,
+checkPropTypes: typeof checkPropTypes,
+createClass: typeof createClass,
+createContext: typeof createContext,
+createElement: typeof createElement,
+cloneElement: typeof cloneElement,
+createFactory: typeof createFactory,
+createRef: typeof createRef,
+isValidElement: typeof isValidElement,
+Component: typeof Component,
+PureComponent: typeof PureComponent,
+Fragment: typeof Fragment,
+Children: typeof Children,
|};
}
// TODO Delete this once https://github.com/facebook/react/pull/3031 lands
// and "react" becomes the standard name for this module
declare module React {
declare module.exports: $Exports<'react'>;
}
type ReactPropsCheckType = (
props: any,
propName: string,
componentName: string,
href?: string) => ?Error;
type ReactPropsChainableTypeChecker = {
isRequired: ReactPropsCheckType;
(props: any, propName: string, componentName: string, href?: string): ?Error;
};
type React$PropTypes$arrayOf =
(typeChecker: ReactPropsCheckType) => ReactPropsChainableTypeChecker;
type React$PropTypes$instanceOf =
(expectedClass: any) => ReactPropsChainableTypeChecker;
type React$PropTypes$objectOf =
(typeChecker: ReactPropsCheckType) => ReactPropsChainableTypeChecker;
type React$PropTypes$oneOf =
(expectedValues: Array<any>) => ReactPropsChainableTypeChecker;
type React$PropTypes$oneOfType =
(arrayOfTypeCheckers: Array<ReactPropsCheckType>) =>
ReactPropsChainableTypeChecker;
type React$PropTypes$shape =
(shapeTypes: { [key: string]: ReactPropsCheckType }) =>
ReactPropsChainableTypeChecker;
type ReactPropTypes = {
array: React$PropType$Primitive<Array<any>>;
bool: React$PropType$Primitive<boolean>;
func: React$PropType$Primitive<Function>;
number: React$PropType$Primitive<number>;
object: React$PropType$Primitive<Object>;
string: React$PropType$Primitive<string>;
any: React$PropType$Primitive<any>;
arrayOf: React$PropType$ArrayOf;
element: React$PropType$Primitive<any>; /* TODO */
instanceOf: React$PropType$InstanceOf;
node: React$PropType$Primitive<any>; /* TODO */
objectOf: React$PropType$ObjectOf;
oneOf: React$PropType$OneOf;
oneOfType: React$PropType$OneOfType;
shape: React$PropType$Shape;
}