mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-09 09:43:34 +00:00
* Start splitting networks into their own reducers * Split out nodes and networks into their own reducers * Cleanup file structure * Make selectors for new state * Change custom network typing * re-type repo * Fix up components to use selectors, work on fixing sagas * Provide consistency in naming, fix more sagas * Get non web3 node switching working * Split config rehydration off into a different file for store * Inline auth for custom nodes * Include typing for app state * moar selectors * Get web3 working + cleanup sagas * Cleanup tsc errors * Use forof loop instead of foreach for clearing pruning custom networks * Add reducer tests for new redux state * Export needed variables * Add console error * Remove old comment * Work on saga tests * Get passing existing saga tests * Fix more tests * Remove irrlevant tests * add console error * Get rest of tests passing * Fix merge errors * Remove random text * Fix store saving * Fix selector lib only grabbing from static nodes * Fix custom node removal crashing app * Infer selected network via node * Prune custom networks properly on node removal * Infer network name from chainid from selecting state * Cleanup tsc errors * Remove MEW nodes for main and testnet
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import {
|
|
ChangeNodeAction,
|
|
ChangeNodeIntentAction,
|
|
NodeAction,
|
|
TypeKeys,
|
|
RemoveCustomNodeAction,
|
|
CustomNodeAction
|
|
} from 'actions/config';
|
|
|
|
interface NodeLoaded {
|
|
pending: false;
|
|
nodeId: string;
|
|
}
|
|
|
|
interface NodeChangePending {
|
|
pending: true;
|
|
nodeId: string;
|
|
}
|
|
|
|
export type State = NodeLoaded | NodeChangePending;
|
|
|
|
export const INITIAL_STATE: NodeLoaded = {
|
|
nodeId: 'eth_mycrypto',
|
|
pending: false
|
|
};
|
|
|
|
const changeNode = (_: State, { payload }: ChangeNodeAction): State => ({
|
|
nodeId: payload.nodeId,
|
|
pending: false
|
|
});
|
|
|
|
const changeNodeIntent = (state: State, _: ChangeNodeIntentAction): State => ({
|
|
...state,
|
|
pending: true
|
|
});
|
|
|
|
const handleRemoveCustomNode = (_: State, _1: RemoveCustomNodeAction): State => INITIAL_STATE;
|
|
|
|
export const selectedNode = (
|
|
state: State = INITIAL_STATE,
|
|
action: NodeAction | CustomNodeAction
|
|
) => {
|
|
switch (action.type) {
|
|
case TypeKeys.CONFIG_NODE_CHANGE:
|
|
return changeNode(state, action);
|
|
case TypeKeys.CONFIG_NODE_CHANGE_INTENT:
|
|
return changeNodeIntent(state, action);
|
|
case TypeKeys.CONFIG_REMOVE_CUSTOM_NODE:
|
|
return handleRemoveCustomNode(state, action);
|
|
default:
|
|
return state;
|
|
}
|
|
};
|