import React, { Component, Fragment } from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import debounce from 'lodash/debounce'; import * as actionCreators from '../../actions/install'; import { getWebAddress } from '../../helpers/helpers'; import { INSTALL_FIRST_STEP, INSTALL_TOTAL_STEPS, ALL_INTERFACES_IP, DEBOUNCE_TIMEOUT, } from '../../helpers/constants'; import Loading from '../../components/ui/Loading'; import Greeting from './Greeting'; import Settings from './Settings'; import Auth from './Auth'; import Devices from './Devices'; import Submit from './Submit'; import Progress from './Progress'; import Toasts from '../../components/Toasts'; import Footer from '../../components/ui/Footer'; import logo from '../../components/ui/svg/logo.svg'; import './Setup.css'; import '../../components/ui/Tabler.css'; class Setup extends Component { componentDidMount() { this.props.getDefaultAddresses(); } handleFormSubmit = (values) => { this.props.setAllSettings(values); }; handleFormChange = debounce((values) => { const { web, dns } = values; if (values && web.port && dns.port) { this.props.checkConfig({ web, dns, set_static_ip: false }); } }, DEBOUNCE_TIMEOUT); handleAutofix = (type, ip, port) => { const data = { ip, port, autofix: true, }; if (type === 'web') { this.props.checkConfig({ web: { ...data }, }); } else { this.props.checkConfig({ dns: { ...data }, }); } }; handleStaticIp = () => { this.props.checkConfig({ set_static_ip: true, }); }; openDashboard = (ip, port) => { let address = getWebAddress(ip, port); if (ip === ALL_INTERFACES_IP) { address = getWebAddress(window.location.hostname, port); } window.location.replace(address); } nextStep = () => { if (this.props.install.step < INSTALL_TOTAL_STEPS) { this.props.nextStep(); } } prevStep = () => { if (this.props.install.step > INSTALL_FIRST_STEP) { this.props.prevStep(); } } renderPage(step, config, interfaces) { switch (step) { case 1: return ; case 2: return ( ); case 3: return ( ); case 4: return ; case 5: return ; default: return false; } } render() { const { processingDefault, step, web, dns, staticIp, interfaces, } = this.props.install; return ( {processingDefault && } {!processingDefault && {this.renderPage(step, { web, dns, staticIp }, interfaces)} } ); } } Setup.propTypes = { getDefaultAddresses: PropTypes.func.isRequired, setAllSettings: PropTypes.func.isRequired, checkConfig: PropTypes.func.isRequired, nextStep: PropTypes.func.isRequired, prevStep: PropTypes.func.isRequired, install: PropTypes.object.isRequired, step: PropTypes.number, web: PropTypes.object, dns: PropTypes.object, }; const mapStateToProps = (state) => { const { install, toasts } = state; const props = { install, toasts }; return props; }; export default connect( mapStateToProps, actionCreators, )(Setup);