Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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