-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomponent-with-props.jsx
126 lines (98 loc) · 3.54 KB
/
component-with-props.jsx
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
import React from 'react'
import PropTypes from 'prop-types'
import { AnotherComponent, Enum } from './types'
const ComponentWithProps = props => <div {...props} />
class MyClass {
}
const personShape = PropTypes.shape({
firstName: PropTypes.string,
lastName: PropTypes.string
})
// Supported propTypes taken from
// https://reactjs.org/docs/typechecking-with-proptypes.html
ComponentWithProps.propTypes = {
/**
* Optional JS Array
*/
optionalArray: PropTypes.array,
/**
* Optional JS Boolean
*/
optionalBool: PropTypes.bool,
/**
* Optional JS Function
*/
optionalFunc: PropTypes.func,
/**
* Optional JS Number
*/
optionalNumber: PropTypes.number,
optionalObject: PropTypes.object,
optionalString: PropTypes.string,
optionalSymbol: PropTypes.symbol,
// Anything that can be rendered: numbers, strings, elements or an array
// (or fragment) containing these types.
optionalNode: PropTypes.node,
// A React element.
optionalElement: PropTypes.element,
// You can also declare that a prop is an instance of a class. This uses
// JS's instanceof operator.
optionalInstance: PropTypes.instanceOf(MyClass),
// You can ensure that your prop is limited to specific values by treating
// it as an enum.
optionalEnum: PropTypes.oneOf(Enum),
// An object that could be one of many types
optionalUnion: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
]),
optionalShape: personShape,
externalComponent: PropTypes.shape(AnotherComponent.propTypes),
// An array of a certain type
optionalArrayOfPrimitives: PropTypes.arrayOf(PropTypes.number),
optionalArrayOfShapes: PropTypes.arrayOf(personShape),
optionalArrayOfAnotherComponent: PropTypes.arrayOf(PropTypes.shape(AnotherComponent.propTypes)),
// An object with property values of a certain type
optionalObjectOfPrimitive: PropTypes.objectOf(PropTypes.number),
// An object taking on a particular shape
optionalObjectOfShape: PropTypes.objectOf(personShape),
// You can chain any of the above with `isRequired` to make sure a warning
// is shown if the prop isn't provided.
requiredFunc: PropTypes.func.isRequired,
// A value of any data type
requiredAny: PropTypes.any.isRequired,
// You can also specify a custom validator. It should return an Error
// object if the validation fails. Don't `console.warn` or throw, as this
// won't work inside `oneOfType`.
customProp: function (props, propName, componentName) {
if (!/matchme/.test(props[propName])) {
return new Error(
'Invalid prop `' + propName + '` supplied to' +
' `' + componentName + '`. Validation failed.'
)
}
},
// You can also supply a custom validator to `arrayOf` and `objectOf`.
// It should return an Error object if the validation fails. The validator
// will be called for each key in the array or object. The first two
// arguments of the validator are the array or object itself, and the
// current item's key.
customArrayProp: PropTypes.arrayOf(function (propValue, key, componentName, location, propFullName) {
if (!/matchme/.test(propValue[key])) {
return new Error(
'Invalid prop `' + propFullName + '` supplied to' +
' `' + componentName + '`. Validation failed.'
)
}
})
}
ComponentWithProps.defaultProps = {
optionalBool: false,
optionalString: 'This is the default string'
}
export default ComponentWithProps
export const OneMoreComponent = props => <div {...props} />
OneMoreComponent.propTypes = {
name: PropTypes.string
}
export function test () {}