Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 583 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 583 Rev 586
Línea 13... Línea 13...
13
 
13
 
14
    /**
14
    /**
15
     * Check if there are options to answer
15
     * Check if there are options to answer
16
     * @returns 
16
     * @returns 
17
     */
17
     */
18
     const validateSection = () => {
18
    const validateSection = () => {
19
        setErrors([]);
19
        setErrors([]);
20
        let formValid = true;
20
        let formValid = true;
21
        let messages = [];
21
        let messages = [];
22
        if (section.type == 'multiple') {
22
        if (section.type == 'multiple') {
23
            section.options.map((option) => {
23
            section.options.map((option) => {
24
                //Validate if the answer is empty
24
                //Validate if the answer is empty
-
 
25
                if (!option.answer || option.answer.length == 0) {
25
                if (!option.answer || option.answer.length == 0) {
26
                    messages.push(backendVars.LBL_ERROR_FIELDS_EMPTY);
26
                    formValid = false;
27
                    formValid = false;
27
                }
28
                }
28
            });
29
            });
29
        } else {
30
        } else {
-
 
31
            if (!section.answer || section.answer.length == 0) {
30
            if (!section.answer || section.answer.length == 0) {
32
                messages.push(backendVars.LBL_ERROR_FIELDS_EMPTY);
31
                formValid = false;
33
                formValid = false;
32
            }
34
            }
33
        }
35
        }
34
        setErrors(messages);
36
        setErrors(messages);
Línea 73... Línea 75...
73
                <div className="panel-heading">
75
                <div className="panel-heading">
74
                    <h4 className="panel-title">{section.title}</h4>
76
                    <h4 className="panel-title">{section.title}</h4>
75
                </div>
77
                </div>
76
                <div id={section.id_section} className="panel-collapse in collapse show">
78
                <div id={section.id_section} className="panel-collapse in collapse show">
77
                    <div className="panel-body">
79
                    <div className="panel-body">
78
                        <div
-
 
79
                            dangerouslySetInnerHTML={{ __html: section.text }}
-
 
80
                            className="description"
80
                        <div className="description"><p>{section.text}</p></div>
81
                        />
-
 
82
                        <div className="row">
81
                        <div className="row">
83
                            {section.type == 'simple' ? (
82
                            {section.type == 'simple' ? (
-
 
83
                                <div className="col-md-12 col-sm-12 col-xs-12 np-padding">
84
                                <div className="form-group">
84
                                    <div className="form-group">
Línea 85... Línea 85...
85
 
85
 
86
                                    <textarea
86
                                        <textarea
87
                                        className="form-control"
87
                                            className="form-control"
88
                                        rows="5"
88
                                            rows="5"
89
                                        value={input}
89
                                            value={input}
90
                                        maxLength='200'
90
                                            maxLength='200'
91
                                        name={section.id_section}
91
                                            name={section.id_section}
92
                                        onChange={e =>
92
                                            onChange={e =>
-
 
93
                                                handleAnswer(e.target.value)}
93
                                            handleAnswer(e.target.value)}
94
                                        />
94
                                    />
95
                                    </div>
95
                                </div>
96
                                </div>
96
                            ) : (
97
                            ) : (
97
                                <div>
98
                                <div>
98
                                    {section.options.length > 0 &&
99
                                    {section.options.length > 0 &&