Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 625 | Rev 627 | 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, useEffect } from "react";
2
import { axios } from '../../../utils';
3
import Section from "./section/Section";
4
import Spinner from "../../../shared/loading-spinner/Spinner";
625 geraldo 5
import ConfirmModal from "../../../shared/confirm-modal/ConfirmModal";
561 geraldo 6
 
7
const Test = (props) => {
8
 
9
    //init states
626 geraldo 10
    const [confirmModalShow, setConfirmModalShow] = useState(false);
561 geraldo 11
    const [success, setSuccess] = useState(false);
12
    const [error, setError] = useState(false);
13
    const [draft, setDraft] = useState(false);
14
    const [page, setPage] = useState(0);
15
 
16
    // get props
17
    const { backendVars, test, loading, setTest, action } = props;
18
 
19
    /**
590 geraldo 20
 * Send form data
21
 */
561 geraldo 22
    const handleSubmit = async () => {
23
        //set states
24
        setDraft(false);
25
        setSuccess(false);
26
        setError(false);
625 geraldo 27
        // check if the form has at least one response
28
        if (leastOneAnswer()) {
626 geraldo 29
            formCompleted() ?
30
                setConfirmModalShow(true) :
31
                sendData();
625 geraldo 32
        } else {
33
            setError(true);
34
        }
35
    }
36
 
626 geraldo 37
 
625 geraldo 38
    const sendData = async () => {
561 geraldo 39
        // set form data
40
        const formData = new FormData();
41
        formData.append("content", JSON.stringify(test.content));
42
        formData.append("status",
43
            formCompleted() ?
590 geraldo 44
                backendVars.STATUS_PENDING :
561 geraldo 45
                backendVars.STATUS_DRAFT);
625 geraldo 46
        await axios.post(action, formData).then((response) => {
47
            if (response.data.success) {
48
                formCompleted() ?
49
                    setSuccess(true) :
50
                    setDraft(true)
51
            }
52
        })
561 geraldo 53
    }
625 geraldo 54
 
55
 
56
 
57
 
561 geraldo 58
    /**
590 geraldo 59
     * Check if there are options to answer
561 geraldo 60
     * @returns
61
     */
62
    const formCompleted = () => {
63
        let completed = true;
64
        test.content.map((section) => {
590 geraldo 65
            if (section.type == 'multiple') {
66
                section.options.map((option) => {
67
                    //Validate if the answer is empty
68
                    if (!option.answer || option.answer.length == 0) {
69
                        completed = false;
70
                    }
71
                });
72
            } else {
73
                if (!section.answer || section.answer.length == 0) {
561 geraldo 74
                    completed = false;
75
                }
590 geraldo 76
            }
561 geraldo 77
        })
78
        return completed;
79
    }
80
    /**
81
     * Check if there is at least one answer
82
     * @returns
83
     */
84
    const leastOneAnswer = () => {
85
        let answer = false;
86
        test.content.map((section) => {
590 geraldo 87
            if (section.type == 'multiple') {
88
                section.options.map((option) => {
89
                    //Validate if the answer is not empty
90
                    if (option.answer != "" || option.answer.length != 0) {
91
                        answer = true;
92
                    }
93
                });
94
            } else {
95
                if (section.answer || section.answer.length != 0) {
561 geraldo 96
                    answer = true;
97
                }
590 geraldo 98
            }
561 geraldo 99
        })
100
        return answer;
101
    }
102
    /**
103
     * Cancel test and send to the list of forms
104
     * @returns
105
     */
106
    const handleGoBack = () => {
107
        setTest(null);
108
        setSuccess(false)
109
    }
110
    /**
111
     * componentDidMount
112
     */
113
    useEffect(() => {
114
        setPage(0);
115
    }, [action]);
116
 
625 geraldo 117
    /**
118
     * Click cancel modal
119
     * @returns
120
     */
121
    const handleConfirmModalShow = () => setConfirmModalShow(!confirmModalShow);
122
 
123
 
124
    /**
125
     * Click accept modal
126
     * @returns
127
     */
626 geraldo 128
    const handleConfirmModalAccept = async () => sendData();
625 geraldo 129
 
130
 
626 geraldo 131
 
561 geraldo 132
    return (
133
        <div>
134
            {loading ? (
135
                <div className="row">
136
                    <Spinner />
137
                </div>
138
            ) : (
139
                <div>
140
                    {!success ? (
141
                        <div className="row test-section">
142
 
625 geraldo 143
                            <ConfirmModal
144
                                show={confirmModalShow}
145
                                onClose={handleConfirmModalShow}
146
                                onAccept={handleConfirmModalAccept}
147
                            />
148
 
561 geraldo 149
                            <div className="col-md-12 col-sm-12 col-xs-12">
150
                                <div className="company-title">
151
                                    <div className="section_admin_title_buttons">
152
                                        <h1 className="title">{test.name}</h1>
153
                                    </div>
154
                                </div>
155
                                <div
156
                                    dangerouslySetInnerHTML={{ __html: test.text }}
157
                                    className="description company-title"
158
                                ></div>
159
                            </div>
160
                            {test.content.length <= 0 ? (
161
                                <div className="col-md-12 col-sm-12 col-xs-12 text-center">
162
                                    {backendVars.LBL_DATATABLE_SZERORECORDS}
163
                                </div>
164
                            ) : (
165
                                <div className="col-md-12 col-sm-12 col-xs-12">
166
                                    <div className="company-title">
167
                                        {test.content.map((section, key) => {
168
                                            return (
169
                                                <Section
170
                                                    section={section}
171
                                                    index={key}
172
                                                    page={page}
173
                                                    setPage={setPage}
174
                                                    total={test.content.length}
175
                                                    backendVars={backendVars}
176
                                                />)
177
                                        })}
178
                                    </div>
179
                                </div>
180
                            )}
181
 
182
                            {draft &&
183
                                <div className="col-md-12 col-sm-12 col-xs-12">
184
                                    <div className="company-title">
185
                                        <div className="alert alert-success alert-dismissible fade show" role="alert" >
186
                                            {backendVars.LBL_TEXT_SAVE_CONTINUE_FORM}
187
                                            <button
188
                                                type="button"
189
                                                className="close"
190
                                                data-dismiss="alert" aria-label="Close"
191
                                                onClick={() => setDraft(false)}
192
 
193
                                            >
194
                                                <span aria-hidden="true">&times;</span>
195
                                            </button>
196
                                        </div>
197
                                    </div>
198
                                </div>
199
                            }
200
 
201
                            {error &&
202
 
203
                                <div className="col-md-12 col-sm-12 col-xs-12">
204
                                    <div className="company-title">
205
                                        <div className="alert alert-danger alert-dismissible fade show" role="alert" >
206
                                            {backendVars.LBL_ERROR_ANSWER_FORM}
207
                                            <button
208
                                                type="button"
209
                                                className="close"
210
                                                data-dismiss="alert" aria-label="Close"
211
                                                onClick={() => setError(false)}
212
 
213
                                            >
214
                                                <span aria-hidden="true">&times;</span>
215
                                            </button>
216
                                        </div>
217
                                    </div>
218
                                </div>
219
                            }
220
 
221
 
222
                            <div className="col-md-12 col-sm-12 col-xs-12 text-right">
223
                                <div className="company-title">
224
                                    <button
225
                                        type="button"
226
                                        className="btn btn-secondary"
227
                                        onClick={() => handleGoBack()}>
228
                                        {backendVars.LBL_GO_BACK}
229
                                    </button>
230
                                    <button
231
                                        type="buttton"
232
                                        className="btn btn-primary"
233
                                        onClick={() => handleSubmit()}>
234
                                        {backendVars.LBL_SAVE}
235
                                    </button>
236
                                </div>
237
                            </div>
238
                        </div>
239
                    ) : (
240
                        <div className="row">
241
                            <div className="company-title text-center">
242
                                <div className="section_admin_title_buttons">
243
                                    <h1 className="title">{backendVars.LBL_SUCCESS_SELF_EVALUATION}</h1>
244
                                </div>
245
                            </div>
246
                            <div className="col-md-12 col-sm-12 col-xs-12 text-center">
247
                                <br />
248
                                <button
249
                                    className="btn btn-sm btn-primary"
250
                                    onClick={() => handleGoBack()}>
251
                                    {backendVars.LBL_GO_BACK}
252
                                </button>
253
                            </div>
254
                        </div>
255
                    )}
256
                </div>
257
            )}
258
        </div>
259
    )
260
}
261
 
262
export default Test;