ProfilationStep5.js 3.64 KB
import React, {Component} from "react";
import Select from "react-select";
import PropTypes from "prop-types";
import * as SelectActionCreators from '../../actions/profilationSelect'
import { connect } from 'react-redux';

var customizableOptions = [
    { value: "molto", label: "molto" },
    { value: "poco", label: "poco" },
    { value: "abbastanza", label: "abbastanza" }
];



function changeField(name, event, props) {
    var completed = true;
    if (event !== null && event.value !== "") {
        for (var property in props.step) {
            if (props.step.hasOwnProperty(property)) {
                if (
                    property !== name &&
                    property !== "isComplete" &&
                    property !== "isActive"
                ) {
                    completed = completed && props.step[property] !== "";
                }
            }
        }
    } else {
        completed = false;
        console.log("completed", completed);
    }
    let step = {...props.step};
	step[name] = event.value;
	step.isComplete = completed;
    props.updatePropValue(props.index, step);
}
class ProfilationStep5 extends Component{
    constructor(props) {
        super(props);

        

        this.handleFocus=this.handleFocus.bind(this)
    }

    handleFocus(index){
        this.props.activeStep(this.props.index)

        this.props.updateStoreValue('tabIndex',index)
    }
    componentDidMount(){
       
            if(this.props.isActive){
            
            this.selectInput.focus();
        }
    }
render(){
    const props=this.props
    return (
	<div className="ProfilationStep" onClick={e => props.activeStep(props.index)}>

		<p>
            3. E credo che la personalizzazione del servizio e dall'assistenza sia un aspetto
			<span className="ProfilationStep__span">
        {window.innerWidth>=0 && <Select
            ref={(input) => { this.selectInput = input; }} 
			name="customizable"
			value={props.step.customizable}
			onChange={e => changeField("customizable", e, props)}
			options={customizableOptions}
			searchable={false}
			autosize={true}
            placeholder="placeholder"
           onFocus={() => this.handleFocus(11)}
            openOnFocus={true}
            tabIndex={11}
		/>}

        {/*window.innerWidth<768 && 
            <select
                name="customizable"
                value={props.step.customizable}
                onChange={e => changeField("customizable", e.target, props)}
                onFocus={e => props.activeStep(props.index)}
                className='mobileSelect'
            >
                <option value='' disabled></option>
                <option value='molto'>molto</option>
                <option value='poco'>poco</option>
                <option value='abbastanza'>abbastanza</option>
            </select>
        */}
      </span>
            importante per la mia attività.
		</p>
	</div>
);

/*ProfilationStep5.propTypes = {
    //isComplete: PropTypes.bool.isRequired,
    //isActive: PropTypes.bool.isRequired
    step: PropTypes.object.isRequired,
    index: PropTypes.number.isRequired,
    updatePropValue: PropTypes.func.isRequired
}*/}

}

const mapStateToProps = state => {
    return {

    }};

const mapDispatchToProps = dispatch => ({
    /*updatePropValue: (prop,value,index,complete) =>
     dispatch(SelectActionCreators.changeValue(prop,value,index,complete)),*/
     updateStoreValue: (prop,value) =>
     dispatch(SelectActionCreators.changeProp(prop,value)),

});

export default connect(mapStateToProps, mapDispatchToProps)(ProfilationStep5);