A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/app/ducks/send.js

56 lines
1.3 KiB

7 years ago
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'
7 years ago
// TODO: determine if this approach to initState is consistent with conventional ducks pattern
const initState = {
fromDropdownOpen: false,
toDropdownOpen: false,
errors: {},
7 years ago
}
// Reducer
export default function reducer ({ send: sendState = initState }, action = {}) {
7 years ago
switch (action.type) {
case OPEN_FROM_DROPDOWN:
return extend(sendState, {
fromDropdownOpen: true,
})
case CLOSE_FROM_DROPDOWN:
return extend(sendState, {
fromDropdownOpen: false,
})
case OPEN_TO_DROPDOWN:
return extend(sendState, {
toDropdownOpen: true,
})
case CLOSE_TO_DROPDOWN:
return extend(sendState, {
toDropdownOpen: false,
})
default:
return sendState
}
}
// Action Creators
export function openFromDropdown () {
return { type: OPEN_FROM_DROPDOWN }
7 years ago
}
export function closeFromDropdown () {
return { type: CLOSE_FROM_DROPDOWN }
7 years ago
}
export function openToDropdown () {
return { type: OPEN_TO_DROPDOWN }
7 years ago
}
export function closeToDropdown () {
return { type: CLOSE_TO_DROPDOWN }
}