Skip to content
Snippets Groups Projects
Unverified Commit 60fe9f56 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

use object spread instead of icepick

parent a840223d
No related branches found
No related tags found
No related merge requests found
import { chain, assoc } from 'icepick'
import COSTS from 'metabase/xray/costs'
import {
......@@ -82,28 +80,31 @@ export const xrayError = createAction(XRAY_ERROR)
export default handleActions({
[START_LOAD]: {
next: (state, { payload }) => assoc(state, 'loading', true)
next: (state, { payload }) => ({
...state,
loading: true,
})
},
[LOAD_XRAY]: {
next: (state, { payload }) =>
chain(state)
.assoc('xray', payload)
.assoc('loading', false)
.value()
next: (state, { payload }) => ({
...state,
xray: payload,
loading: false
})
},
[LOAD_COMPARISON]: {
next: (state, { payload }) =>
chain(state)
.assoc('comparison', payload)
.assoc('loading', false)
.value()
next: (state, { payload }) => ({
...state,
comparison: payload,
loading: false
})
},
[XRAY_ERROR]: {
next: (state, { payload }) =>
chain(state)
.assoc('loading', false)
.assoc('error', payload)
.value()
next: (state, { payload }) => ({
...state,
loading: false,
error: payload
})
}
}, {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment