I must be missing something here because the Docs make it out as if the below code should work just fine but I get an invalid keypath error... Check this codepen.
var map1 = Immutable.Map({ 'selector': { 'type': 'bar' }});
var map2 = map1.setIn(['selector', 'type'], 'foo');
console.log(map2.toJS());
I must be missing something here because the Docs make it out as if the below code should work just fine but I get an invalid keypath error... Check this codepen.
var map1 = Immutable.Map({ 'selector': { 'type': 'bar' }});
var map2 = map1.setIn(['selector', 'type'], 'foo');
console.log(map2.toJS());
Share
Improve this question
edited Jun 8, 2016 at 22:25
Seth
10.5k10 gold badges48 silver badges69 bronze badges
asked Jun 8, 2016 at 21:02
hally9khally9k
2,5832 gold badges29 silver badges51 bronze badges
1 Answer
Reset to default 38This happens because the key 'selector'
has a non-Map value.
setIn
will work if we make sure that the value for 'selector'
is also an Immutable Map:
var map1 = Immutable.Map({ 'selector': Immutable.Map({ 'type': 'bar' })});
var map2 = map1.setIn(['selector', 'type'], 'foo');
console.log(map1.toJS());
console.log(map2.toJS());
<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.1/immutable.js"></script>
To deeply convert JavaScript Objects and Arrays to Maps and Lists you can use fromJS()
. So you can more easily write:
var map3 = Immutable.fromJS({ 'selector': { 'type': 'bar' }});
var map4 = map3.setIn(['selector', 'type'], 'foo');
console.log(map3.toJS());
console.log(map4.toJS());
<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.1/immutable.js"></script>