insertAll(path, values) ⇒ object

Inserts elements (provided with array) to the specified position of array

Returns: object - action object
Params

  • path number | string | Array.<(string|number)> - path to be updated (array of items or dot-separated string can be provided)
  • values Array.<any> - values to be inserted

Description

This action is similar to insert() but consumes array of items as 2nd argument:

import { ACTIONS, reducer } from 'general-reducer';

const state = {
    a: {
        b: [ 1, 2 ]
    }
};

const updated = reducer(state, ACTIONS.insertAll('a.b.1', [ 3, 4 ]));

// or

const updated = reducer(state, ACTIONS.insertAll([ 'a', 'b', 'b1' ], [ 3, 4 ]));

As a result we will receive new object with structure below:

{
    a: {
        b: [ 1, 3, 4, 2 ]
    }
}

results matching ""

    No results matching ""