Skip to content

Commit 2749cfd

Browse files
committed
[added] CustomPropTypes.singlePropFrom
Throw an error if multiple properties in the given list have a value
1 parent 4e3a15f commit 2749cfd

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

src/utils/CustomPropTypes.js

+29-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,17 @@ let CustomPropTypes = {
2222
* @param componentName
2323
* @returns {Error|undefined}
2424
*/
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
2636
};
2737

2838
/**
@@ -80,4 +90,22 @@ function createKeyOfChecker(obj) {
8090
return createChainableTypeChecker(validate);
8191
}
8292

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+
83111
export default CustomPropTypes;

test/CustomPropTypesSpec.js

+20
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,24 @@ describe('CustomPropTypes', function () {
4747
assert.isUndefined(validate('bar'));
4848
});
4949
});
50+
51+
describe('singlePropFrom', function () {
52+
function validate(testProps) {
53+
const propList = ['children', 'value'];
54+
55+
return CustomPropTypes.singlePropFrom(propList)(testProps, 'value', 'Component');
56+
}
57+
58+
it('Should return undefined if only one listed prop in used', function () {
59+
const testProps = {value: 5};
60+
61+
assert.isUndefined(validate(testProps));
62+
});
63+
64+
it('Should return error if multiple of the listed properties have values', function () {
65+
const testProps = {value: 5, children: 5};
66+
67+
validate(testProps).should.be.instanceOf(Error);
68+
});
69+
});
5070
});

0 commit comments

Comments
 (0)