Gathering detailed insights and metrics for react-immutablejs-proptypes
Gathering detailed insights and metrics for react-immutablejs-proptypes
Gathering detailed insights and metrics for react-immutablejs-proptypes
Gathering detailed insights and metrics for react-immutablejs-proptypes
npm install react-immutablejs-proptypes
Typescript
Module System
NPM Version
JavaScript (99.63%)
Shell (0.37%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
117 Commits
1 Watchers
3 Branches
1 Contributors
Updated on Dec 15, 2017
Latest Version
2.1.1
Package Id
react-immutablejs-proptypes@2.1.1
Size
22.50 kB
NPM Version
1.4.28
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
PropType validators that work with Immutable.js.
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.
1var ImmutablePropTypes = require('react-immutable-proptypes'); 2var MyReactComponent = React.createClass({ 3 // ... 4 propTypes: { 5 myRequiredImmutableList: ImmutablePropTypes.listOf( 6 ImmutablePropTypes.contains({ 7 someNumberProp: React.PropTypes.number.isRequired 8 }) 9 ).isRequired 10 } 11 // ... 12});
Since version 0.1.7 there are convenience helpers for "primitive" Immutable.js objects.
1propTypes: {
2 oldListTypeChecker: React.PropTypes.instanceOf(Immutable.List),
3 anotherWay: ImmutablePropTypes.list,
4 requiredList: ImmutablePropTypes.list.isRequired,
5 mapsToo: ImmutablePropTypes.map,
6 evenIterable: ImmutablePropTypes.iterable
7}
Installing via npmjs
1npm install --save react-immutable-proptypes
React-Immutable-PropTypes has:
1ImmutablePropTypes.list // Immutable.List.isList
2ImmutablePropTypes.map // Immutable.Map.isMap
3ImmutablePropTypes.orderedMap // Immutable.OrderedMap.isOrderedMap
4ImmutablePropTypes.set // Immutable.Set.isSet
5ImmutablePropTypes.orderedSet // Immutable.OrderedSet.isOrderedSet
6ImmutablePropTypes.stack // Immutable.Stack.isStack
7ImmutablePropTypes.seq // Immutable.Seq.isSeq
8ImmutablePropTypes.iterable // Immutable.Iterable.isIterable
9ImmutablePropTypes.record // instanceof Record
10ImmutablePropTypes.contains // Immutable.Iterable.isIterable - contains(shape)
11ImmutablePropTypes.mapContains // Immutable.Map.isMap - contains(shape)
ImmutablePropTypes.contains
(formerly shape
) is based on React.PropTypes.shape
and will try to work with any Immutable.Iterable
. In my usage it is the most used validator, as I'm often trying to validate that a map has certain properties with certain values.1// ...
2aMap: ImmutablePropTypes.contains({
3 aList: ImmutablePropTypes.contains({
4 0: React.PropTypes.number,
5 1: React.PropTypes.string,
6 2: React.PropTypes.number.isRequired,
7 }).isRequired,
8})
9// ...
10<SomeComponent aList={Immutable.fromJS({aList: [1, 'two', 3]})} />
ImmutablePropTypes.listOf
is based on React.PropTypes.array
and is specific to Immutable.List
.
ImmutablePropTypes.mapOf
allows you to control both map values and keys (in Immutable.Map, keys could be anything including another Immutable collections). It accepts two arguments - first one for values, second one for keys (optional). If you are interested in validation of keys only, just pass React.PropTypes.any
as the first argument.
1// ... 2aMap: ImmutablePropTypes.mapOf( 3 React.PropTypes.any, // validation for values 4 ImmutablePropTypes.mapContains({ // validation for keys 5 a: React.PropTypes.number.isRequired, 6 b: React.PropTypes.string 7 }) 8) 9// ... 10const aMap = Immutable.Map([ 11 [Immutable.Map({a: 1, b: '2'}), 'foo'], 12 [Immutable.Map({a: 3}), [1, '2', 3]] 13]); 14<SomeComponent aMap={aMap} />
ImmutablePropTypes.orderedMapOf
is basically the same as mapOf
, 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.
1// ...
2aRecord: ImmutablePropTypes.recordOf({
3 keyA: React.PropTypes.string,
4 keyB: ImmutablePropTypes.list.isRequired
5})
6// ...
ImmutablePropTypes.mapContains
is based on React.PropTypes.shape
and will only work with Immutable.Map
.1// ...
2aMap: ImmutablePropTypes.mapContains({
3 aList: ImmutablePropTypes.list.isRequired,
4})
5// ...
6<SomeComponent aList={Immutable.fromJS({aList: [1, 2]})} />
These two validators cover the output of Immutable.fromJS
on standard JSON data sources.
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.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More