Gazebo_simulation-Frontend/node_modules/prop-types-extra/README.md

117 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

2020-12-21 11:29:31 -04:00
# prop-types-extra [![Travis][build-badge]][build] [![npm][npm-badge]][npm]
Additional [PropTypes](https://facebook.github.io/react/docs/reusable-components.html#prop-validation) for [React](https://facebook.github.io/react/).
## Usage
```js
import elementType from 'prop-types-extra/lib/elementType';
// or
import { elementType } from 'prop-types-extra';
const propTypes = {
someProp: elementType,
};
```
If you want to minimize bundle size, import only the validators you use via:
```js
import elementType from 'prop-types-extra/lib/elementType'
```
## Guide
### Installation
```sh
$ npm i -S react
$ npm i -S prop-types-extra
```
### [`all(...validators)`](/src/all.js)
This validator checks that all of the provided validators pass.
```js
const propTypes = {
vertical: PropTypes.bool.isRequired,
block: all(
PropTypes.bool.isRequired,
({ block, vertical }) => (
block && !vertical ?
new Error('`block` requires `vertical` to be set to have any effect') :
null
),
),
};
```
The provided validators will be validated in order, stopping on the first failure. The combined validator will succeed only if all provided validators succeed.
As in the example, this can be used to make a type assertion along with additional semantic assertions.
### [`componentOrElement`](/src/componentOrElement.js)
Checks that the value is a `ReactComponent` or a `DOMElement`.
```js
const propTypes = {
container: componentOrElement,
requiredContainer: componentOrElement.isRequired,
};
```
This ensures that the value is of the right type to pass to `ReactDOM.findDOMNode()`, for cases where you need a DOM node.
### [`deprecated(validator, reason)`](/src/deprecated.js)
This validator will log a deprecation warning if the value is present.
```js
const propTypes = {
collapsable: deprecated(PropTypes.bool, 'Use `collapsible` instead.'),
};
```
If the `collapsable` prop above is specified, this validator will log the warning:
>The prop \`collapsable\` of \`MyComponent\` is deprecated. Use \`collapsible\` instead.
This validator warns instead of failing on invalid values, and will still call the underlying validator if the deprecated value is present.
This validator will only warn once on each deprecation. To clear the cache of warned messages, such as for clearing state between test cases intended to fail on deprecation warnings, call `deprecated._resetWarned()`.
### [`elementType`](/src/elementType.js)
Checks that the value is a React element type. This can be either a string (for DOM elements) or a `ReactClass` (for composite components).
```js
const propTypes = {
Component: elementType.isRequired,
};
```
This ensures that the value of is the right type for creating a `ReactElement`, such as with `<Component {...props} />`.
### [`isRequiredForA11y(validator)`](/src/isRequiredForA11y.js)
This validator checks that the value required for accessibility are present.
```js
const propTypes = {
id: isRequiredForA11y(PropTypes.string),
};
```
If the `id` prop above is not specified, the validator will fail with:
>The prop \`id\` is required to make \`MyComponent\` accessible for users of assistive technologies such as screen readers.
[build-badge]: https://img.shields.io/travis/react-bootstrap/prop-types-extra/master.svg
[build]: https://travis-ci.org/react-bootstrap/prop-types-extra
[npm-badge]: https://img.shields.io/npm/v/prop-types-extra.svg
[npm]: https://www.npmjs.org/package/prop-types-extra