import React from 'react'; import Modal, { IButton } from 'components/ui/Modal'; import translate, { translateRaw } from 'translations'; import { CustomNetworkConfig } from 'types/network'; import { CustomNodeConfig } from 'types/node'; import { TAddCustomNetwork, addCustomNetwork, AddCustomNodeAction } from 'actions/config'; import { connect, Omit } from 'react-redux'; import { AppState } from 'reducers'; import { getCustomNetworkConfigs, getCustomNodeConfigs, getStaticNetworkConfigs } from 'selectors/config'; import { CustomNode } from 'libs/nodes'; import { Input } from 'components/ui'; import Dropdown from 'components/ui/Dropdown'; import './CustomNodeModal.scss'; const CUSTOM = { label: 'Custom', value: 'custom' }; interface OwnProps { isOpen: boolean; addCustomNode(payload: AddCustomNodeAction['payload']): void; handleClose(): void; } interface DispatchProps { addCustomNetwork: TAddCustomNetwork; } interface StateProps { customNodes: AppState['config']['nodes']['customNodes']; customNetworks: AppState['config']['networks']['customNetworks']; staticNetworks: AppState['config']['networks']['staticNetworks']; } interface State { name: string; url: string; network: string; customNetworkId: string; customNetworkUnit: string; customNetworkChainId: string; hasAuth: boolean; username: string; password: string; } type Props = OwnProps & StateProps & DispatchProps; class CustomNodeModal extends React.Component { public INITIAL_STATE = { name: '', url: '', network: Object.keys(this.props.staticNetworks)[0], customNetworkId: '', customNetworkUnit: '', customNetworkChainId: '', hasAuth: false, username: '', password: '' }; public state: State = this.INITIAL_STATE; public componentDidUpdate(prevProps: Props) { // Reset state when modal opens if (!prevProps.isOpen && prevProps.isOpen !== this.props.isOpen) { this.setState(this.INITIAL_STATE); } } public render() { const { customNetworks, handleClose, staticNetworks, isOpen } = this.props; const { network } = this.state; const isHttps = window.location.protocol.includes('https'); const invalids = this.getInvalids(); const buttons: IButton[] = [ { type: 'primary', text: translate('NODE_CTA'), onClick: this.saveAndAdd, disabled: !!Object.keys(invalids).length }, { type: 'default', text: translate('ACTION_2'), onClick: handleClose } ]; const conflictedNode = this.getConflictedNode(); const staticNetwrks = Object.keys(staticNetworks).map(net => { return { label: net, value: net }; }); const customNetwrks = Object.entries(customNetworks).map(([id, net]) => { return { label: net.name + ' (Custom)', value: id }; }); const options = [...staticNetwrks, ...customNetwrks, CUSTOM]; return ( {isHttps &&
{translate('NODE_WARNING')}
} {conflictedNode && (
{translate('CUSTOM_NODE_CONFLICT', { conflictedNode: conflictedNode.name })}
)}
{network === CUSTOM.value && (
)} {this.state.hasAuth && (
)}
); } private getInvalids(): { [key: string]: boolean } { const { url, hasAuth, username, password, network, customNetworkId, customNetworkUnit, customNetworkChainId } = this.state; const required: (keyof State)[] = ['name', 'url', 'network']; const invalids: { [key: string]: boolean } = {}; // Required fields required.forEach(field => { if (!this.state[field]) { invalids[field] = true; } }); // Parse the URL, and make sure what they typed isn't parsed as relative. // Not a perfect regex, just checks for protocol + any char if (!/^https?:\/\/.+/i.test(url)) { invalids.url = true; } // If they have auth, make sure it's provided if (hasAuth) { if (!username) { invalids.username = true; } if (!password) { invalids.password = true; } } // If they have a custom network, make sure info is provided if (network === CUSTOM.value) { if (!customNetworkId) { invalids.customNetworkId = true; } if (!customNetworkUnit) { invalids.customNetworkUnit = true; } // Numeric chain ID (if provided) const iChainId = parseInt(customNetworkChainId, 10); if (!iChainId || iChainId < 0) { invalids.customNetworkChainId = true; } } return invalids; } private makeCustomNetworkConfigFromState(): CustomNetworkConfig { const similarNetworkConfig = Object.values(this.props.staticNetworks).find( n => n.chainId === +this.state.customNetworkChainId ); const dPathFormats = similarNetworkConfig ? similarNetworkConfig.dPathFormats : null; return { isCustom: true, name: this.state.customNetworkId, unit: this.state.customNetworkUnit, chainId: this.state.customNetworkChainId ? parseInt(this.state.customNetworkChainId, 10) : 0, dPathFormats }; } private makeCustomNodeConfigFromState(): CustomNodeConfig { const { network, url, name, username, password } = this.state; const networkId = network === CUSTOM.value ? this.makeCustomNetworkId(this.makeCustomNetworkConfigFromState()) : network; const node: Omit = { isCustom: true, service: 'your custom node', id: url, name: name.trim(), url, network: networkId, ...(this.state.hasAuth ? { auth: { username, password } } : {}) }; const lib = new CustomNode(node); return { ...node, lib }; } private getConflictedNode(): CustomNodeConfig | undefined { const { customNodes } = this.props; const config = this.makeCustomNodeConfigFromState(); return customNodes[config.id]; } private saveAndAdd = () => { const node = this.makeCustomNodeConfigFromState(); if (this.state.network === CUSTOM.value) { const network = this.makeCustomNetworkConfigFromState(); this.props.addCustomNetwork({ config: network, id: node.network }); } this.props.addCustomNode({ config: node, id: node.id }); }; private makeCustomNetworkId(config: CustomNetworkConfig): string { return config.chainId ? `${config.chainId}` : `${config.name}:${config.unit}`; } } const mapStateToProps = (state: AppState): StateProps => ({ customNetworks: getCustomNetworkConfigs(state), customNodes: getCustomNodeConfigs(state), staticNetworks: getStaticNetworkConfigs(state) }); const mapDispatchToProps: DispatchProps = { addCustomNetwork }; export default connect(mapStateToProps, mapDispatchToProps)(CustomNodeModal);