Gathering detailed insights and metrics for react-immutable-proptypes
Gathering detailed insights and metrics for react-immutable-proptypes
Gathering detailed insights and metrics for react-immutable-proptypes
Gathering detailed insights and metrics for react-immutable-proptypes
PropType validators that work with Immutable.js.
npm install react-immutable-proptypes
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
642 Stars
124 Commits
46 Forks
13 Watching
8 Branches
16 Contributors
Updated on 13 Nov 2024
JavaScript (95.73%)
TypeScript (3.94%)
Shell (0.33%)
Cumulative downloads
Total Downloads
Last day
3.2%
109,621
Compared to previous day
Last week
15.2%
568,308
Compared to previous week
Last month
22.6%
2,080,629
Compared to previous month
Last year
17.2%
19,486,767
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
license file detected
Details
Reason
Found 9/16 approved changesets -- score normalized to 5
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
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
31 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
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