1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 04:40:18 +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';
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
2020-11-03 00:41:28 +01:00
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,
};
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,
};
case UPDATE_SEND_ERRORS:
2020-01-13 17:29:21 +01:00
return {
...state,
errors: {
...state.errors,
...action.value,
},
};
case SHOW_GAS_BUTTON_GROUP:
2020-01-13 17:29:21 +01:00
return {
...state,
gasButtonGroupShown: true,
};
case HIDE_GAS_BUTTON_GROUP:
2020-01-13 17:29:21 +01:00
return {
...state,
gasButtonGroupShown: false,
};
2018-06-29 19:19:40 +02:00
case RESET_SEND_STATE:
return { ...initState };
2018-04-07 00:29:51 +02:00
default:
return state;
2018-04-07 00:29:51 +02:00
}
}
// Action Creators
2020-11-03 00:41:28 +01:00
export function openToDropdown() {
return { type: OPEN_TO_DROPDOWN };
2018-04-07 00:29:51 +02:00
}
2020-11-03 00:41:28 +01:00
export function closeToDropdown() {
return { type: CLOSE_TO_DROPDOWN };
}
2020-11-03 00:41:28 +01:00
export function showGasButtonGroup() {
return { type: SHOW_GAS_BUTTON_GROUP };
}
2020-11-03 00:41:28 +01:00
export function hideGasButtonGroup() {
return { type: HIDE_GAS_BUTTON_GROUP };
}
2020-11-03 00:41:28 +01:00
export function updateSendErrors(errorObject) {
return {
type: UPDATE_SEND_ERRORS,
value: errorObject,
};
}
2018-06-29 19:19:40 +02:00
2020-11-03 00:41:28 +01:00
export function resetSendState() {
return { type: RESET_SEND_STATE };
2018-06-29 19:19:40 +02:00
}