@@ -22,7 +22,17 @@ let CustomPropTypes = {
22
22
* @param componentName
23
23
* @returns {Error|undefined }
24
24
*/
25
- keyOf : createKeyOfChecker
25
+ keyOf : createKeyOfChecker ,
26
+ /**
27
+ * Checks if only one of the listed properties is in use. An error is given
28
+ * if multiple have a value
29
+ *
30
+ * @param props
31
+ * @param propName
32
+ * @param componentName
33
+ * @returns {Error|undefined }
34
+ */
35
+ singlePropFrom : createSinglePropFromChecker
26
36
} ;
27
37
28
38
/**
@@ -80,4 +90,22 @@ function createKeyOfChecker(obj) {
80
90
return createChainableTypeChecker ( validate ) ;
81
91
}
82
92
93
+ function createSinglePropFromChecker ( arrOfProps ) {
94
+ function validate ( props , propName , componentName ) {
95
+ const usedPropCount = arrOfProps
96
+ . map ( listedProp => props [ listedProp ] )
97
+ . reduce ( ( acc , curr ) => acc + ( curr !== undefined ? 1 : 0 ) , 0 ) ;
98
+
99
+ if ( usedPropCount > 1 ) {
100
+ const [ first , ...others ] = arrOfProps ;
101
+ const message = `${ others . join ( ', ' ) } and ${ first } ` ;
102
+ return new Error (
103
+ `Invalid prop '${ propName } ', only one of the following ` +
104
+ `may be provided: ${ message } `
105
+ ) ;
106
+ }
107
+ }
108
+ return validate ;
109
+ }
110
+
83
111
export default CustomPropTypes ;
0 commit comments