1
+ import React from 'react' ;
2
+
1
3
const ANONYMOUS = '<<anonymous>>' ;
2
4
3
5
const CustomPropTypes = {
@@ -15,6 +17,20 @@ const CustomPropTypes = {
15
17
*/
16
18
mountable : createMountableChecker ( ) ,
17
19
20
+ /**
21
+ * Checks whether a prop provides a type of element.
22
+ *
23
+ * The type of element can be provided in two forms:
24
+ * - tag name (string)
25
+ * - a return value of React.createClass(...)
26
+ *
27
+ * @param props
28
+ * @param propName
29
+ * @param componentName
30
+ * @returns {Error|undefined }
31
+ */
32
+ elementType : createElementTypeChecker ( ) ,
33
+
18
34
/**
19
35
* Checks whether a prop matches a key of an associated object
20
36
*
@@ -135,4 +151,24 @@ function all(propTypes) {
135
151
} ;
136
152
}
137
153
154
+ function createElementTypeChecker ( ) {
155
+ function validate ( props , propName , componentName ) {
156
+ let errMsg = `Invalid prop '${ propName } ' specified in '${ componentName } '.` +
157
+ ' Expected an Element `type`' ;
158
+
159
+ if ( typeof props [ propName ] !== 'function' ) {
160
+ if ( React . isValidElement ( props [ propName ] ) ) {
161
+ return new Error ( errMsg + ', not an actual Element' ) ;
162
+ }
163
+
164
+ if ( typeof props [ propName ] !== 'string' ) {
165
+ return new Error ( errMsg +
166
+ ' such as a tag name or return value of React.createClass(...)' ) ;
167
+ }
168
+ }
169
+ }
170
+
171
+ return createChainableTypeChecker ( validate ) ;
172
+ }
173
+
138
174
export default CustomPropTypes ;
0 commit comments