What is react-immutable-proptypes?
The react-immutable-proptypes package provides PropTypes validators that are specifically designed to work with Immutable.js data structures. This allows developers to enforce the types of Immutable.js collections in their React components, ensuring that the data passed through props adheres to the expected structure.
What are react-immutable-proptypes's main functionalities?
List
This feature allows you to validate that a prop is an Immutable.js List. The code sample demonstrates a React component that expects a prop named `myList` to be an Immutable List.
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { List } from 'immutable';
const MyComponent = ({ myList }) => (
<div>{myList.join(', ')}</div>
);
MyComponent.propTypes = {
myList: ImmutablePropTypes.list
};
export default MyComponent;
Map
This feature allows you to validate that a prop is an Immutable.js Map. The code sample demonstrates a React component that expects a prop named `myMap` to be an Immutable Map.
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { Map } from 'immutable';
const MyComponent = ({ myMap }) => (
<div>{myMap.get('key')}</div>
);
MyComponent.propTypes = {
myMap: ImmutablePropTypes.map
};
export default MyComponent;
OrderedMap
This feature allows you to validate that a prop is an Immutable.js OrderedMap. The code sample demonstrates a React component that expects a prop named `myOrderedMap` to be an Immutable OrderedMap.
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { OrderedMap } from 'immutable';
const MyComponent = ({ myOrderedMap }) => (
<div>{myOrderedMap.get('key')}</div>
);
MyComponent.propTypes = {
myOrderedMap: ImmutablePropTypes.orderedMap
};
export default MyComponent;
Set
This feature allows you to validate that a prop is an Immutable.js Set. The code sample demonstrates a React component that expects a prop named `mySet` to be an Immutable Set.
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { Set } from 'immutable';
const MyComponent = ({ mySet }) => (
<div>{Array.from(mySet).join(', ')}</div>
);
MyComponent.propTypes = {
mySet: ImmutablePropTypes.set
};
export default MyComponent;
Other packages similar to react-immutable-proptypes
prop-types
The prop-types package is the standard library for type-checking props in React components. While it does not provide specific validators for Immutable.js data structures, it is widely used for general prop type validation in React applications.
immutable-prop-types
The immutable-prop-types package provides PropTypes validators for Immutable.js data structures, similar to react-immutable-proptypes. It offers a similar set of validators for Immutable.js collections, making it a direct alternative.
react-immutable-proptypes
PropType validators that work with Immutable.js.
About
I got tired of seeing React.PropTypes.instanceOf(Immutable.List)
or React.PropTypes.instanceOf(Immutable.Map)
as PropTypes for components that should be specifying an Immutable.List
of something or that an Immutable.Map
contains some keys. A little "googling" came up empty, unless you want to use Flow, which I do not. So, I wrote react-immutable-proptypes
.
Usage is simple, they work with and like any React.PropType.*
validator.
var ImmutablePropTypes = require('react-immutable-proptypes');
var MyReactComponent = React.createClass({
propTypes: {
myRequiredImmutableList: ImmutablePropTypes.listOf(
ImmutablePropTypes.contains({
someNumberProp: React.PropTypes.number.isRequired
})
).isRequired
}
});
Since version 0.1.7 there are convenience helpers for "primitive" Immutable.js objects.
propTypes: {
oldListTypeChecker: React.PropTypes.instanceOf(Immutable.List),
anotherWay: ImmutablePropTypes.list,
requiredList: ImmutablePropTypes.list.isRequired,
mapsToo: ImmutablePropTypes.map,
evenIterable: ImmutablePropTypes.iterable
}
Installation
Installing via npmjs
npm install --save react-immutable-proptypes
API
React-Immutable-PropTypes has:
ImmutablePropTypes.list
ImmutablePropTypes.map
ImmutablePropTypes.orderedMap
ImmutablePropTypes.set
ImmutablePropTypes.orderedSet
ImmutablePropTypes.stack
ImmutablePropTypes.seq
ImmutablePropTypes.iterable
ImmutablePropTypes.record
ImmutablePropTypes.contains
ImmutablePropTypes.mapContains
-
ImmutablePropTypes.listOf
is based on React.PropTypes.array
and is specific to Immutable.List
.
-
ImmutablePropTypes.mapOf
is basically the same as listOf
, but it is specific to Immutable.Map
It will check that the prop is an Immutable.Map and that the values are of the specified type.
-
ImmutablePropTypes.orderedMapOf
is basically the same as listOf
, but it is specific to Immutable.OrderedMap
.
-
ImmutablePropTypes.orderedSetOf
is basically the same as listOf
, but it is specific to Immutable.OrderedSet
.
-
ImmutablePropTypes.stackOf
is basically the same as listOf
, but it is specific to Immutable.Stack
.
-
ImmutablePropTypes.iterableOf
is the generic form of listOf/mapOf. It is useful when there is no need to validate anything other than Immutable.js compatible (ie. Immutable.Iterable
). Continue to use listOf
and/or mapOf
when you know the type.
-
ImmutablePropTypes.recordOf
is like contains
, except it operates on Record properties.
aRecord: ImmutablePropTypes.recordOf({
keyA: React.PropTypes.string,
keyB: ImmutablePropTypes.list.isRequired
})
ImmutablePropTypes.contains
(formerly shape
) is based on React.PropTypes.shape
and will try to work with any Immutable.Iterable
. In practice, I would recommend limiting this to Immutable.Map
or Immutable.OrderedMap
. However, it is possible to abuse contains
to validate an array via Immutable.List
. That said, please, just... don't.
// ...
aMap: ImmutablePropTypes.contains({
aList: ImmutablePropTypes.contains({
0: React.PropTypes.number,
1: React.PropTypes.string,
2: React.PropTypes.number.isRequired,
}).isRequired,
})
// ...
<SomeComponent aList={Immutable.fromJS({aList: [1, 'two', 3]})} />
ImmutablePropTypes.mapContains
is based on React.PropTypes.shape
and will only work with Immutable.Map
.
// ...
aMap: ImmutablePropTypes.mapContains({
aList: ImmutablePropTypes.list.isRequired,
})
// ...
<SomeComponent aList={Immutable.fromJS({aList: [1, 2]})} />
These two validators cover the output of Immutable.fromJS
on standard JSON data sources.
RFC
Please send a message or, better yet, create an issue/pull request if you know a better solution, find bugs, or want a feature. For example, should listOf
work with Immutable.Seq
or Immutable.Range
. I can think of reasons it should, but it is not a use case I have at the present, so I'm less than inclined to implement it. Alternatively, we could add a validator for sequences and/or ranges.