Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
456 geraldo 1
import React, { useState, useEffect } from "react";
306 geraldo 2
 
3
const Option = (props) => {
315 geraldo 4
 
306 geraldo 5
    // get props
456 geraldo 6
    const { question } = props;
306 geraldo 7
 
456 geraldo 8
    // init States
9
    const [input, setInput] = useState(question.answer);
10
 
11
    /**
12
     * Update question answer
13
     * @param {*} answer
14
     */
15
    const handleAnswerSimple = (value) => {
16
        setInput(value);
17
        question.answer = value;
18
    }
19
 
20
    /**
21
     * Update question answer
22
     * @param {*} answer
23
     */
461 geraldo 24
    const handleAnswerMultiple = (event, value) => {
25
        //question.answer.includes(value) ?
26
            //question.answer = removeOptionMultiple(question.answer, value) :
27
            //question.answer.push(value);
456 geraldo 28
        setInput(question.answer);
29
    }
30
 
31
    /**
32
     * Delete existing option
33
     * @param {*} arr
34
     * @param {*} item
35
     * @returns
36
     */
37
    const removeOptionMultiple = (arr, item) => arr.splice(arr.indexOf(item), 1);
38
 
459 geraldo 39
    /**
40
     * componentDidMount
41
     */
42
    useEffect(() => {
43
        setInput(question.answer);
44
    }, [question]);
45
 
46
 
306 geraldo 47
    return (
48
        <div>
319 geraldo 49
            {question.options.map((opt, key) => {
50
                return (
320 geraldo 51
                    <div className="checkbox"
52
                        key={key}>
321 geraldo 53
 
54
                        {question.type == 'multiple' &&
55
 
56
                            <input
57
                                type="checkbox"
58
                                name={`${opt.slug_option}[]`}
459 geraldo 59
                                value={opt.slug_option}
460 geraldo 60
                                checked={question.answer.includes(opt.slug_option)}
461 geraldo 61
                                onChange={() => handleAnswerMultiple(e.target.checked, opt.slug_option)}
344 geraldo 62
                            />
321 geraldo 63
                        }
64
                        {question.type != 'multiple' &&
65
                            <input
66
                                type="radio"
328 geraldo 67
                                name={`${opt.slug_question}`}
342 geraldo 68
                                value={opt.slug_option}
456 geraldo 69
                                checked={input == opt.slug_option}
70
                                onChange={() => handleAnswerSimple(opt.slug_option)}
342 geraldo 71
                            />
321 geraldo 72
                        }
319 geraldo 73
                        <div
74
                            dangerouslySetInnerHTML={{ __html: opt.text }}
75
                            className="option"
76
                        />
77
                    </div>
78
                )
79
            })}
306 geraldo 80
        </div>
81
 
82
    )
83
}
84
 
85
export default Option;