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/send.duck.js

80 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-04-07 00:29:51 +02:00
// Actions
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-06-29 19:19:40 +02:00
const RESET_SEND_STATE = 'metamask/send/RESET_SEND_STATE'
const SHOW_GAS_BUTTON_GROUP = 'metamask/send/SHOW_GAS_BUTTON_GROUP'
const HIDE_GAS_BUTTON_GROUP = 'metamask/send/HIDE_GAS_BUTTON_GROUP'
2018-04-07 00:29:51 +02:00
const initState = {
toDropdownOpen: false,
gasButtonGroupShown: true,
2018-04-26 18:38:38 +02:00
errors: {},
2018-04-07 00:29:51 +02:00
}
// Reducer
export default function reducer (state = initState, action) {
2018-04-07 00:29:51 +02:00
switch (action.type) {
case OPEN_TO_DROPDOWN:
2020-01-13 17:29:21 +01:00
return {
...state,
2018-04-07 00:29:51 +02:00
toDropdownOpen: true,
2020-01-13 17:29:21 +01:00
}
2018-04-07 00:29:51 +02:00
case CLOSE_TO_DROPDOWN:
2020-01-13 17:29:21 +01:00
return {
...state,
2018-04-07 00:29:51 +02:00
toDropdownOpen: false,
2020-01-13 17:29:21 +01:00
}
case UPDATE_SEND_ERRORS:
2020-01-13 17:29:21 +01:00
return {
...state,
errors: {
...state.errors,
...action.value,
},
2020-01-13 17:29:21 +01:00
}
case SHOW_GAS_BUTTON_GROUP:
2020-01-13 17:29:21 +01:00
return {
...state,
gasButtonGroupShown: true,
2020-01-13 17:29:21 +01:00
}
case HIDE_GAS_BUTTON_GROUP:
2020-01-13 17:29:21 +01:00
return {
...state,
gasButtonGroupShown: false,
2020-01-13 17:29:21 +01:00
}
2018-06-29 19:19:40 +02:00
case RESET_SEND_STATE:
2020-01-13 17:29:21 +01:00
return { ...initState }
2018-04-07 00:29:51 +02:00
default:
return state
2018-04-07 00:29:51 +02:00
}
}
// Action Creators
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 showGasButtonGroup () {
return { type: SHOW_GAS_BUTTON_GROUP }
}
export function hideGasButtonGroup () {
return { type: HIDE_GAS_BUTTON_GROUP }
}
export function updateSendErrors (errorObject) {
return {
type: UPDATE_SEND_ERRORS,
value: errorObject,
}
}
2018-06-29 19:19:40 +02:00
export function resetSendState () {
return { type: RESET_SEND_STATE }
}