1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 20:32:02 +02:00
metamask-extension/ui/app/ducks/send.duck.js

73 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-04-07 00:29:51 +02:00
import extend from 'xtend'
// Actions
const OPEN_FROM_DROPDOWN = 'metamask/send/OPEN_FROM_DROPDOWN'
const CLOSE_FROM_DROPDOWN = 'metamask/send/CLOSE_FROM_DROPDOWN'
const OPEN_TO_DROPDOWN = 'metamask/send/OPEN_TO_DROPDOWN'
const CLOSE_TO_DROPDOWN = 'metamask/send/CLOSE_TO_DROPDOWN'
const UPDATE_SEND_ERRORS = 'metamask/send/UPDATE_SEND_ERRORS'
2018-04-07 00:29:51 +02:00
// TODO: determine if this approach to initState is consistent with conventional ducks pattern
const initState = {
fromDropdownOpen: false,
toDropdownOpen: false,
2018-04-26 18:38:38 +02:00
errors: {},
2018-04-07 00:29:51 +02:00
}
// Reducer
export default function reducer ({ send: sendState = initState }, action = {}) {
2018-05-14 14:57:36 +02:00
const newState = extend({}, sendState)
2018-04-07 00:29:51 +02:00
switch (action.type) {
case OPEN_FROM_DROPDOWN:
2018-05-14 14:57:36 +02:00
return extend(newState, {
2018-04-07 00:29:51 +02:00
fromDropdownOpen: true,
})
case CLOSE_FROM_DROPDOWN:
2018-05-14 14:57:36 +02:00
return extend(newState, {
2018-04-07 00:29:51 +02:00
fromDropdownOpen: false,
})
case OPEN_TO_DROPDOWN:
2018-05-14 14:57:36 +02:00
return extend(newState, {
2018-04-07 00:29:51 +02:00
toDropdownOpen: true,
})
case CLOSE_TO_DROPDOWN:
2018-05-14 14:57:36 +02:00
return extend(newState, {
2018-04-07 00:29:51 +02:00
toDropdownOpen: false,
})
case UPDATE_SEND_ERRORS:
2018-05-14 14:57:36 +02:00
return extend(newState, {
errors: {
2018-05-14 14:57:36 +02:00
...newState.errors,
...action.value,
},
})
2018-04-07 00:29:51 +02:00
default:
2018-05-14 14:57:36 +02:00
return newState
2018-04-07 00:29:51 +02:00
}
}
// Action Creators
export function openFromDropdown () {
return { type: OPEN_FROM_DROPDOWN }
2018-04-07 00:29:51 +02:00
}
export function closeFromDropdown () {
return { type: CLOSE_FROM_DROPDOWN }
2018-04-07 00:29:51 +02:00
}
export function openToDropdown () {
return { type: OPEN_TO_DROPDOWN }
2018-04-07 00:29:51 +02:00
}
export function closeToDropdown () {
return { type: CLOSE_TO_DROPDOWN }
}
export function updateSendErrors (errorObject) {
return {
type: UPDATE_SEND_ERRORS,
value: errorObject,
}
}