Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 565 | Rev 572 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
561 geraldo 1
import React, { useState } from "react";
564 geraldo 2
import Option from "../option/Option";
561 geraldo 3
 
4
const Section = (props) => {
5
 
6
    // get props
564 geraldo 7
    const { section, backendVars, page, setPage, total, index } = props;
561 geraldo 8
 
9
    //init states
10
    const [errors, setErrors] = useState([]);
564 geraldo 11
    const [input, setInput] = useState(section.answer);
561 geraldo 12
 
564 geraldo 13
 
561 geraldo 14
    /**
567 geraldo 15
     * Check if there are options to answer
561 geraldo 16
     * @returns
17
     */
18
    const validateSection = () => {
19
        setErrors([]);
20
        let formValid = true;
21
        let messages = [];
567 geraldo 22
        section.options.map((option) => {
561 geraldo 23
            //Validate if the answer is empty
567 geraldo 24
            if (!option.answer || option.answer.length == 0) {
561 geraldo 25
                formValid = false;
26
            }
27
        });
28
        setErrors(messages);
29
        return formValid;
30
    }
31
 
32
    /**
33
     * Return to previous section
34
     * @returns
35
     */
36
    const handlePrevious = () => {
37
        setErrors([]);
38
        setPage(page - 1);
39
    };
40
 
564 geraldo 41
    /**
42
     * Update section answer
43
     * @param {*} value
44
     */
567 geraldo 45
    const handleAnswer = (value) => {
564 geraldo 46
        setInput(value);
47
        section.answer = value;
48
    }
561 geraldo 49
 
564 geraldo 50
 
561 geraldo 51
    /**
52
     * Continue to the next section
53
     */
54
    const handleNext = () => validateSection() && setPage(page + 1);
55
 
564 geraldo 56
    /**
57
     * componentDidMount
58
     */
567 geraldo 59
    useEffect(() => {
564 geraldo 60
        setInput(section.answer);
61
    }, [section]);
62
 
63
 
561 geraldo 64
    return (
65
        <div className="panel-group" hidden={page == index ? false : true}>
564 geraldo 66
            <div className="panel panel-default" id={`panel-${section.id_section}`}>
561 geraldo 67
                <div className="panel-heading">
564 geraldo 68
                    <h4 className="panel-title">{section.title}</h4>
561 geraldo 69
                </div>
564 geraldo 70
                <div id={section.id_section} className="panel-collapse in collapse show">
561 geraldo 71
                    <div className="panel-body">
72
                        <div
73
                            dangerouslySetInnerHTML={{ __html: section.text }}
74
                            className="description"
75
                        />
76
                        <div className="row">
564 geraldo 77
                            {section.type == 'simple' ? (
78
                                <div className="form-group">
79
 
80
                                    <textarea
81
                                        className="form-control"
82
                                        rows="5"
83
                                        value={input}
84
                                        maxLength='200'
85
                                        name={section.id_section}
86
                                        onChange={e =>
87
                                            handleAnswer(e.target.value)}
88
                                    />
89
                                </div>
90
                            ) : (
91
                                <div>
567 geraldo 92
                                    {section.options.length > 0 &&
93
                                        <div>
94
                                            {section.options.map((option, i) => {
95
                                                return <Option
96
                                                    option={option}
97
                                                    key={i}
98
                                                    handleAnswer={handleAnswer}
99
                                                />
564 geraldo 100
 
567 geraldo 101
                                            })}
102
                                        </div>}
564 geraldo 103
                                </div>)}
104
 
561 geraldo 105
                        </div>
564 geraldo 106
 
561 geraldo 107
                        <div className="row">
108
                            {errors.length > 0 &&
109
                                <div className="col-md-12 np-padding">
110
                                    {errors.map((error, index) => {
111
                                        return (
112
                                            <div className="alert alert-danger alert-dismissible fade show" role="alert" key={index}>
113
                                                {error}
114
                                                <button type="button" className="close" data-dismiss="alert" aria-label="Close">
115
                                                    <span aria-hidden="true">&times;</span>
116
                                                </button>
117
                                            </div>);
118
                                    })}
119
                                </div>
120
                            }
121
                            <div className="col-md-12 np-padding">
122
                                <ul className="wizard">
123
                                    <li className="previous">
124
                                        {index != 0 &&
125
                                            <button
126
                                                type="button"
127
                                                className="btn btn-secondary"
128
                                                onClick={() => handlePrevious()}
129
                                            >
564 geraldo 130
                                                {backendVars.LBL_EVALUATION_TEST_FORM_PREVIOUS}
561 geraldo 131
                                            </button>
132
                                        }
133
                                    </li>
134
                                    <li className="next">
135
                                        {index != total - 1 &&
136
                                            <button
137
                                                type="button"
138
                                                onClick={() => handleNext()}
139
                                                className="btn btn-secondary">
564 geraldo 140
                                                {backendVars.LBL_EVALUATION_TEST_FORM_NEXT}
561 geraldo 141
                                            </button>
142
                                        }
143
                                    </li>
144
                                </ul>
145
                            </div>
146
                        </div>
147
                    </div>
148
                </div>
149
            </div>
150
        </div>
151
    )
152
}
153
 
154
export default Section;