forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassets.js
More file actions
34 lines (31 loc) · 1.16 KB
/
assets.js
File metadata and controls
34 lines (31 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { handleActions, combineActions } from 'redux-actions';
import { set, assign, del } from 'object-path-immutable';
import { get } from 'lodash';
import { setAssetValue, removeAsset, setAssets, resetAssets, setAsset } from '../actions/assets';
export const assetsReducer = handleActions(
{
[setAssetValue]: (assetState, { payload }) => {
const { id, value } = payload;
const asset = get(assetState, [id]);
if (!asset) {
throw new Error(`Can not set asset data, id not found: ${id}`);
}
return assign(assetState, id, { value });
},
[setAsset]: (assetState, { payload }) => {
const { asset } = payload;
return set(assetState, asset.id, asset);
},
[removeAsset]: (assetState, { payload: assetId }) => {
return del(assetState, assetId);
},
[combineActions(setAssets, resetAssets)]: (_assetState, { payload }) => payload || {},
},
{}
);