43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { shepherdProvider, INode } from 'libs/nodes';
|
|
import { CustomNodeConfig, StaticNodeConfig } from 'types/node';
|
|
import { AppState } from 'features/reducers';
|
|
import { getCustomNodeConfig } from './custom/selectors';
|
|
import { getNodeId } from './selected/selectors';
|
|
import { getStaticNodeConfig } from './static/selectors';
|
|
|
|
function getConfig(state: AppState) {
|
|
return state.config;
|
|
}
|
|
|
|
export function getNodes(state: AppState) {
|
|
return getConfig(state).nodes;
|
|
}
|
|
|
|
export const getWeb3Node = (state: AppState): StaticNodeConfig | null => {
|
|
const isWeb3Node = (nodeId: string) => nodeId === 'web3';
|
|
const currNode = getStaticNodeConfig(state);
|
|
const currNodeId = getNodeId(state);
|
|
if (currNode && currNodeId && isWeb3Node(currNodeId)) {
|
|
return currNode;
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export function getIsWeb3Node(state: AppState): boolean {
|
|
return getNodeId(state) === 'web3';
|
|
}
|
|
|
|
export function getNodeLib(_: AppState): INode {
|
|
return shepherdProvider;
|
|
}
|
|
|
|
export function getNodeConfig(state: AppState): StaticNodeConfig | CustomNodeConfig {
|
|
const config = getStaticNodeConfig(state) || getCustomNodeConfig(state);
|
|
|
|
if (!config) {
|
|
const { selectedNode } = getNodes(state);
|
|
throw Error(`No node config found for ${selectedNode.nodeId} in either static or custom nodes`);
|
|
}
|
|
return config;
|
|
}
|