admin管理员组文章数量:1433515
I'm trying to create a custom PropType that checks if an array has numerical values and has a length of 2 (and there's some constraint on the ordering of the numbers).
Obviously I can do Array.PropType.arrayOf(Array.PropType.number)
for the first two constraints.
I'd like to reuse this in my custom PropType (instead of rolling out my own numerical and array check).
How do I do that?
I'm trying to create a custom PropType that checks if an array has numerical values and has a length of 2 (and there's some constraint on the ordering of the numbers).
Obviously I can do Array.PropType.arrayOf(Array.PropType.number)
for the first two constraints.
I'd like to reuse this in my custom PropType (instead of rolling out my own numerical and array check).
How do I do that?
Share Improve this question asked Feb 2, 2016 at 19:12 praks5432praks5432 7,81232 gold badges93 silver badges158 bronze badges2 Answers
Reset to default 3React.PropTypes.arrayOf( React.PropTypes.number )
just returns a function, so you can instead provide your own function to perform the validation.
Your function will be passed three parameters: props, propName, ponentName
see the second to last example shown in React.PropTypes from the docs.
So a function that should satisfy your constraints would be:
function isTwoElementArrayOfNumbers( props, propName, ponentName ){
var _array = props[ propName ];
if( _array && _array.constructor === Array && _array.length === 2 ){
if( !_array.every(
function isNumber( element ){
return typeof element === 'number';
})
){
return new Error('elements must be numbers!');
}
}
else{
return new Error('2 element array of numbers not provided!');
}
}
...in your react element
propTypes:{
numArray: isTwoElementArrayOfNumbers
},
I don't know about extending them, I'm not sure that's possible.
But you could store the above as an exported constant and use it to pose properties of other propTypes (but I think you probably already know this):
export const CustomProp = Array.PropType.arrayOf(Array.PropType.number)
export const OtherCustomProp = contains({
foo: React.PropTypes.string,
bars: CustomProp
});
本文标签: javascriptCreating custom PropTypes that extend default PropTypes in reactStack Overflow
版权声明:本文标题:javascript - Creating custom PropTypes that extend default PropTypes in react - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745615538a2666377.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论