Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
135 geraldo 1
<?php
2
$acl = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser = $this->currentUserHelper();
115 efrain 4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
135 geraldo 7
$routeAdd = $this->url('self-evaluation/forms/add');
115 efrain 8
$routeDatatable = $this->url('self-evaluation/forms');
9
$routeDashboard = $this->url('dashboard');
10
 
135 geraldo 11
$allowAdd = $acl->isAllowed($roleName, 'self-evaluation/forms/add') ? 1 : 0;
12
$allowEdit = $acl->isAllowed($roleName, 'self-evaluation/forms/edit') ? 1 : 0;
13
$allowDelete = $acl->isAllowed($roleName, 'self-evaluation/forms/delete') ? 1 : 0;
115 efrain 14
 
15
 
16822 efrain 16
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
115 efrain 17
 
18
 
16822 efrain 19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
115 efrain 21
 
22
 
16822 efrain 23
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
25
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
115 efrain 26
 
16822 efrain 27
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
28
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
115 efrain 29
 
16822 efrain 30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
115 efrain 34
 
35
 
16822 efrain 36
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
16918 efrain 37
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
115 efrain 38
 
16822 efrain 39
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.full.min.js'));
115 efrain 40
 
16822 efrain 41
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
42
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
115 efrain 44
 
45
 
16822 efrain 46
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
47
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
115 efrain 48
 
49
 
16822 efrain 50
 
51
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
52
 
137 geraldo 53
// bootbox Alert //
54
 
16822 efrain 55
 
158 geraldo 56
// JsRender //
16822 efrain 57
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.min.js'));
158 geraldo 58
 
198 geraldo 59
// Page Styles
60
$this->headLink()->appendStylesheet($this->basePath('css/pages/self-evaluation.css'));
61
 
15443 efrain 62
$status_active = \LeadersLinked\Model\SelfEvaluationForm::STATUS_ACTIVE;
63
$status_inactive = \LeadersLinked\Model\SelfEvaluationForm::STATUS_INACTIVE;
115 efrain 64
 
15443 efrain 65
$lang_es = \LeadersLinked\Model\SelfEvaluationForm::LANGUAGE_SPANISH;
66
$lang_en = \LeadersLinked\Model\SelfEvaluationForm::LANGUAGE_ENGLISH;
153 geraldo 67
 
167 geraldo 68
 
115 efrain 69
$this->inlineScript()->captureStart();
70
echo <<<JS
167 geraldo 71
    const classFormGenerator = function() {
16796 efrain 72
        this.id = 0,
167 geraldo 73
        this.table = '',
74
        this.name = '',
75
        this.text = '',
76
        this.status = 'a',
77
        this.sections = [],
78
        this.clear = function() {
79
            this.sections = [];
80
            this.render();
81
        },
16796 efrain 82
 
204 geraldo 83
        /**
84
         * Render array sections
85
         */
171 geraldo 86
        this.renderSection = function(slug_section) {
167 geraldo 87
            var s = '';
88
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 89
                if (slug_section != this.sections[i].slug_section) {
167 geraldo 90
                    continue;
91
                }
92
                for (j = 0; j < this.sections[i].questions.length; j++) {
93
                    this.sections[i].questions[j].position = j;
94
                    if (this.sections[i].questions[j].type == 'simple' || this.sections[i].questions[j].type == 'multiple' || this.sections[i].questions[j].type == 'rating-open') {
95
                        this.sections[i].questions[j].options.sort(function(a, b) {
96
                            if (a.position > b.position) {
97
                                return 1;
98
                            }
99
                            if (a.position < b.position) {
100
                                return -1;
101
                            }
102
                            return 0;
103
                        });
104
                        for (k = 0; k < this.sections[i].questions[j].options.length; k++) {
105
                            this.sections[i].questions[j].options[k].position = j;
106
                        }
107
                    }
108
                }
109
            }
16817 efrain 110
 
111
 
167 geraldo 112
            $('[data-toggle="tooltip"]').tooltip();
113
        },
114
        this.render = function() {
115
            this.sections.sort(function(a, b) {
116
                if (a.position > b.position) {
117
                    return 1;
118
                }
119
                if (a.position < b.position) {
120
                    return -1;
121
                }
122
                return 0;
123
            });
124
            var s = '';
125
            for (i = 0; i < this.sections.length; i++) {
126
                this.sections[i].position = i;
127
                this.sections[i].questions.sort(function(a, b) {
128
                    if (a.position > b.position) {
129
                        return 1;
130
                    }
131
                    if (a.position < b.position) {
132
                        return -1;
133
                    }
134
                    return 0;
135
                });
136
                for (j = 0; j < this.sections[i].questions.length; j++) {
137
                    this.sections[i].questions[j].position = j;
138
                    if (this.sections[i].questions[j].type == 'simple' || this.sections[i].questions[j].type == 'multiple' || this.sections[i].questions[j].type == 'rating-open') {
139
                        this.sections[i].questions[j].options.sort(function(a, b) {
140
                            if (a.position > b.position) {
141
                                return 1;
142
                            }
143
                            if (a.position < b.position) {
144
                                return -1;
145
                            }
146
                            return 0;
147
                        });
148
                        for (k = 0; k < this.sections[i].questions[j].options.length; k++) {
149
                            this.sections[i].questions[j].options[k].position = j;
150
                        }
151
                    }
152
                }
153
            }
154
            $('[data-toggle="tooltip"]').tooltip();
155
        },
204 geraldo 156
        /**
1050 geraldo 157
         * Add element to section array
204 geraldo 158
         */
167 geraldo 159
        this.addSection = function(name, text, value) {
160
            var d = new Date();
161
            var slug = 'section' + d.getTime();
162
            var position = 0;
163
            $.each(this.sections, function(index, section) {
164
                if (position < section.position) {
165
                    position = section.position;
166
                }
167
            });
168
            position++;
169
            var section = {
170
                'slug_section': slug,
171
                'name': name,
172
                'text': text,
173
                'value': value,
174
                'position': position,
175
                'questions': [],
240 geraldo 176
                'status': 0
167 geraldo 177
            }
178
            this.sections.push(section);
179
        },
204 geraldo 180
         /**
1050 geraldo 181
         * Edit element to section array
204 geraldo 182
         */
167 geraldo 183
        this.editSection = function(slug, name, text, value) {
184
            var renderTable = false;
185
            for (i = 0; i < this.sections.length; i++) {
186
                if (slug == this.sections[i].slug_section) {
187
                    this.sections[i].name = name;
188
                    this.sections[i].text = text;
189
                    this.sections[i].value = value;
190
                    renderTable = true;
191
                    break;
192
                }
193
            }
194
            if (renderTable) {
195
                this.renderSection(slug);
196
            }
197
        },
204 geraldo 198
         /**
199
         * Remove element to section array
200
         */
167 geraldo 201
        this.deleteSection = function(slug) {
202
            var renderTable = false;
203
            for (i = 0; i < this.sections.length; i++) {
204
                if (slug == this.sections[i].slug_section) {
205
                    this.sections.splice(i, 1);
206
                    renderTable = true;
207
                    break;
208
                }
209
            }
210
            if (renderTable) {
211
                $('#panel' + slug).remove();
212
            }
213
        },
204 geraldo 214
         /**
215
         * Add element to question array
216
         */
171 geraldo 217
        this.addQuestion = function(slug_section, text, value, type, maxlength, multiline, range) {
167 geraldo 218
            var d = new Date();
219
            var slug_question = 'question' + d.getTime();
220
            var position = 0;
221
            var renderTable = false;
222
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 223
                if (slug_section == this.sections[i].slug_section) {
167 geraldo 224
                    $.each(this.sections[i].questions, function(index, question) {
225
                        if (position < question.position) {
226
                            position = question.position;
227
                        }
228
                    });
229
                    position++;
230
                    var question = {
171 geraldo 231
                        'slug_section': slug_section,
167 geraldo 232
                        'slug_question': slug_question,
233
                        'text': text,
234
                        'value': value,
235
                        'type': type,
236
                        'position': position,
237
                        'maxlength': maxlength,
238
                        'multiline': multiline,
239
                        'range': range,
240
                        'options': [],
240 geraldo 241
                        'answer': type=='multiple' ? [] : ''
167 geraldo 242
                    }
243
                    this.sections[i].questions.push(question);
244
                    renderTable = true;
245
                    break;
246
                }
247
            }
248
            if (renderTable) {
171 geraldo 249
                this.renderSection(slug_section);
167 geraldo 250
            }
251
        },
204 geraldo 252
         /**
253
         * Add element to question array
254
         */
172 geraldo 255
        this.editQuestion = function(slug_section, slug_question, text, value, type, maxlength, multiline, range) {
167 geraldo 256
            var renderTable = false;
257
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 258
                if (slug_section == this.sections[i].slug_section) {
167 geraldo 259
                    for (j = 0; j < this.sections[i].questions.length; j++) {
172 geraldo 260
                        if (slug_question == this.sections[i].questions[j].slug_question) {
167 geraldo 261
                            this.sections[i].questions[j].text = text,
262
                                this.sections[i].questions[j].value = value,
263
                                this.sections[i].questions[j].type = type;
264
                            if (type == 'open') {
265
                                this.sections[i].questions[j].maxlength = maxlength;
266
                                this.sections[i].questions[j].multiline = multiline;
267
                                this.sections[i].questions[j].options = [];
268
                            } else {
269
                                this.sections[i].questions[j].maxlength = 0;
270
                                this.sections[i].questions[j].multiline = 0;
271
                            }
272
                            if (type == 'rating-range') {
273
                                this.sections[i].questions[j].range = range;
274
                            } else {
275
                                this.sections[i].questions[j].range = 0;
276
                            }
240 geraldo 277
 
278
                            if(type=='multiple'){
279
                                this.sections[i].questions[j].answer = [];
280
                            }else{
281
                                this.sections[i].questions[j].answer = '';
282
                            }
283
 
167 geraldo 284
                            renderTable = true;
285
                            break;
286
                        }
287
                    }
288
                }
289
                if (renderTable) {
290
                    break;
291
                }
292
            }
293
            if (renderTable) {
171 geraldo 294
                this.renderSection(slug_section);
167 geraldo 295
            }
296
        },
204 geraldo 297
        /**
298
         * Remove element to question array
299
         */
172 geraldo 300
        this.deleteQuestion = function(slug_section, slug_question) {
167 geraldo 301
            var renderTable = false;
302
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 303
                if (slug_section == this.sections[i].slug_section) {
167 geraldo 304
                    for (j = 0; j < this.sections[i].questions.length; j++) {
172 geraldo 305
                        if (slug_question == this.sections[i].questions[j].slug_question) {
167 geraldo 306
                            this.sections[i].questions.splice(j, 1);
307
                            renderTable = true;
308
                            break;
309
                        }
310
                    }
311
                }
312
                if (renderTable) {
313
                    break;
314
                }
315
            }
316
            if (renderTable) {
171 geraldo 317
                this.renderSection(slug_section);
167 geraldo 318
            }
319
        },
204 geraldo 320
        /**
321
         * Add element to option array
322
         */
183 geraldo 323
        this.addOption = function(slug_section, slug_question, text, correct, value) {
167 geraldo 324
            var d = new Date();
325
            var slug_option = 'option' + d.getTime();
326
            var position = 0;
327
            var renderTable = false;
328
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 329
                if (slug_section == this.sections[i].slug_section) {
167 geraldo 330
                    for (j = 0; j < this.sections[i].questions.length; j++) {
172 geraldo 331
                        if (slug_question == this.sections[i].questions[j].slug_question) {
167 geraldo 332
                            $.each(this.sections[i].questions[j].options, function(index, option) {
333
                                if (position < option.position) {
334
                                    position = option.position;
335
                                }
336
                            });
337
                            position++;
338
                            var option = {
339
                                'slug_section': slug_section,
340
                                'slug_question': slug_question,
341
                                'slug_option': slug_option,
342
                                'text': text,
343
                                'correct': correct,
241 geraldo 344
                                'value': value,
345
                                'checked': false
167 geraldo 346
                            }
347
                            this.sections[i].questions[j].options.push(option);
348
                            renderTable = true;
349
                            break;
350
                        }
351
                        if (renderTable) {
352
                            break;
353
                        }
354
                    }
355
                }
356
            }
357
            if (renderTable) {
171 geraldo 358
                this.renderSection(slug_section);
167 geraldo 359
            }
360
        },
204 geraldo 361
        /**
362
         * Edit element to option array
363
         */
183 geraldo 364
        this.editOption = function(slug_section, slug_question, option_slug, text, correct, value) {
167 geraldo 365
            var renderTable = false;
366
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 367
                if (slug_section == this.sections[i].slug_section) {
167 geraldo 368
                    for (j = 0; j < this.sections[i].questions.length; j++) {
172 geraldo 369
                        if (slug_question == this.sections[i].questions[j].slug_question) {
167 geraldo 370
                            for (k = 0; k < this.sections[i].questions[j].options.length; k++) {
371
                                if (option_slug == this.sections[i].questions[j].options[k].slug_option) {
372
                                    this.sections[i].questions[j].options[k].text = text;
373
                                    this.sections[i].questions[j].options[k].correct = correct;
374
                                    this.sections[i].questions[j].options[k].value = value;
375
                                    renderTable = true;
376
                                    break;
377
                                }
378
                            }
379
                        }
380
                        if (renderTable) {
381
                            break;
382
                        }
383
                    }
384
                }
385
                if (renderTable) {
386
                    break;
387
                }
388
            }
389
            if (renderTable) {
171 geraldo 390
                this.renderSection(slug_section);
167 geraldo 391
            }
392
        },
204 geraldo 393
        /**
394
         * Remove element to option array
395
         */
172 geraldo 396
        this.deleteOption = function(slug_section, slug_question, option_slug) {
167 geraldo 397
            var renderTable = false;
398
            for (i = 0; i < this.sections.length; i++) {
171 geraldo 399
                if (slug_section == this.sections[i].slug_section) {
167 geraldo 400
                    for (j = 0; j < this.sections[i].questions.length; j++) {
172 geraldo 401
                        if (slug_question == this.sections[i].questions[j].slug_question) {
167 geraldo 402
                            for (k = 0; k < this.sections[i].questions[j].options.length; k++) {
403
                                if (option_slug == this.sections[i].questions[j].options[k].slug_option) {
404
                                    this.sections[i].questions[j].options.splice(k, 1);
405
                                    renderTable = true;
406
                                    break;
407
                                }
408
                            }
409
                        }
410
                        if (renderTable) {
411
                            break;
412
                        }
413
                    }
414
                }
415
                if (renderTable) {
416
                    break;
417
                }
418
            }
419
            if (renderTable) {
171 geraldo 420
                this.renderSection(slug_section);
167 geraldo 421
            }
422
        }
423
}
164 geraldo 424
 
16796 efrain 425
 
167 geraldo 426
function htmlEntities(str) {
427
    return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
428
}
16796 efrain 429
 
167 geraldo 430
jQuery(document).ready(function($) {
16796 efrain 431
    var allowEdit = $allowEdit;
432
    var allowDelete = $allowDelete;
433
 
434
 
435
 
167 geraldo 436
    var objFormGenerator = new classFormGenerator();
2506 eleazar 437
    objFormGenerator.render();
16796 efrain 438
 
204 geraldo 439
    /**
440
     * Get rows and set data table
441
     */
167 geraldo 442
    var tableForm = $('#gridTable').dataTable({
443
        'processing': true,
444
        'serverSide': true,
445
        'searching': true,
446
        'order': [
447
            [0, 'asc']
448
        ],
449
        'ordering': true,
450
        'ordenable': true,
451
        'responsive': true,
452
        'select': false,
453
        'paging': true,
454
        'pagingType': 'simple_numbers',
455
        'ajax': {
456
            'url': '$routeDatatable',
457
            'type': 'get',
458
            'beforeSend': function(request) {
459
                NProgress.start();
460
            },
461
            'dataFilter': function(response) {
462
                var response = jQuery.parseJSON(response);
463
                var json = {};
464
                json.recordsTotal = 0;
465
                json.recordsFiltered = 0;
466
                json.data = [];
467
                if (response.success) {
468
                    json.recordsTotal = response.data.total;
469
                    json.recordsFiltered = response.data.total;
470
                    json.data = response.data.items;
471
                } else {
472
                    $.fn.showError(response.data)
473
                }
474
                return JSON.stringify(json);
475
            }
476
        },
477
        'language': {
478
            'sProcessing': 'LABEL_DATATABLE_SPROCESSING',
479
            'sLengthMenu': 'LABEL_DATATABLE_SLENGTHMENU',
480
            'sZeroRecords': 'LABEL_DATATABLE_SZERORECORDS',
481
            'sEmptyTable': 'LABEL_DATATABLE_SEMPTYTABLE',
482
            'sInfo': 'LABEL_DATATABLE_SINFO',
483
            'sInfoEmpty': 'LABEL_DATATABLE_SINFOEMPTY',
484
            'sInfoFiltered': 'LABEL_DATATABLE_SINFOFILTERED',
485
            'sInfoPostFix': '',
486
            'sSearch': 'LABEL_DATATABLE_SSEARCH',
487
            'sUrl': '',
488
            'sInfoThousands': ',',
489
            'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
490
            'oPaginate': {
491
                'sFirst': 'LABEL_DATATABLE_SFIRST',
492
                'sLast': 'LABEL_DATATABLE_SLAST',
493
                'sNext': 'LABEL_DATATABLE_SNEXT',
494
                'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
495
            },
496
            'oAria': {
497
                'sSortAscending': ': LABEL_DATATABLE_SSORTASCENDING',
498
                'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
499
            },
500
        },
501
        'drawCallback': function(settings) {
502
            NProgress.done();
16822 efrain 503
 
167 geraldo 504
        },
505
        'aoColumns': [{
506
                'mDataProp': 'name'
507
            },
508
            {
509
                'mDataProp': 'language'
510
            },
511
            {
512
                'mDataProp': 'status'
513
            },
514
            {
515
                'mDataProp': 'actions'
516
            },
517
        ],
518
        'columnDefs': [{
519
                'targets': 0,
520
                'className': 'text-vertical-middle',
521
            },
522
            {
523
                'targets': 1,
524
                'className': 'text-vertical-middle',
525
            },
526
            {
527
                'targets': -2,
528
                'orderable': false,
529
                'className': 'text-center',
530
                'render': function(data, type, row) {
16822 efrain 531
                    checked = data == 'a'  ? 'checked' : '';
532
                    return '<div class="form-check">' +
533
                        '<input type="checkbox" class="form-check-input" disabled="" checked="' + checked + '">' +
534
                        '<label class="form-check-label" for="checkCheckedDisabled"></label></div>' ;
167 geraldo 535
                }
536
            },
537
            {
538
                'targets': -1,
539
                'orderable': false,
540
                'render': function(data, type, row) {
541
                    s = '';
542
                    if (allowEdit) {
16906 efrain 543
                        s = s + '<button class="btn btn-primary btn-edit-form" data-href="' + data['link_edit'] + '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> LABEL_EDIT </button>&nbsp;';
167 geraldo 544
                    }
545
                    if (allowDelete) {
546
                        s = s + '<button class="btn btn-danger btn-delete" data-href="' + data['link_delete'] + '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button>&nbsp;';
547
                    }
548
                    return s;
549
                }
550
            }
551
        ],
118 steven 552
    });
16796 efrain 553
 
204 geraldo 554
    /**
555
     * Clicked on edit form
556
     */
167 geraldo 557
    $('body').on('click', 'button.btn-edit-form', function(e) {
558
        e.preventDefault();
559
        form_id = $(this).data('id')
560
        var action = $(this).data('href');
561
        $.ajax({
562
            'dataType': 'json',
563
            'accept': 'application/json',
564
            'method': 'get',
565
            'url': action,
566
        }).done(function(response) {
567
            if (response['success']) {
568
                validatorForm.resetForm();
201 geraldo 569
                $('#form-main').attr('action', action);
192 efrain 570
                $('#form-main #form-id').val(response['data']['id']),
206 geraldo 571
                $('#form-main #form-continue').val('0');
194 efrain 572
                $('#form-main #form-name').val(response['data']['name']),
206 geraldo 573
 
574
                /*----------Set Ckeditor ------------*/
575
                CKEDITOR.instances['form-description'].setData(response['data']['description']);
201 geraldo 576
                CKEDITOR.instances['form-text'].setData(response['data']['text']);
206 geraldo 577
 
192 efrain 578
                $('#form-main #form-language').val(response['data']['language']),
207 geraldo 579
                $('#form-main #form-status').val(response['data']['status']);
580
 
581
                /*-------------Render Sections -------*/
1050 geraldo 582
 
167 geraldo 583
                objFormGenerator.clear();
192 efrain 584
                objFormGenerator.sections = response['data']['content'] || [];
167 geraldo 585
                objFormGenerator.render();
196 geraldo 586
                renderSectionData(objFormGenerator.sections);
1050 geraldo 587
 
167 geraldo 588
                $('#row-forms').hide();
589
                $('#row-edit').show();
590
                $('#form-main #form-name').focus();
207 geraldo 591
 
167 geraldo 592
            } else {
593
                $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
594
            }
595
        }).fail(function(jqXHR, textStatus, errorThrown) {
596
            $.fn.showError(textStatus);
597
        });
16796 efrain 598
 
167 geraldo 599
    });
16796 efrain 600
 
167 geraldo 601
    $(document).on('click', '[data-type="select_all"]', function() {
602
        if ($('input[name="select_all"]:checked').val() == 'all') {
603
            $('[data-type="select"]').prop('checked', true);
604
            $('[data-action="delete"]').removeClass('hide');
605
        } else {
606
            $('[data-type="select"]').prop('checked', false);
607
            $('[data-action="delete"]').addClass('hide');
608
        }
609
    });
118 steven 610
 
167 geraldo 611
    function getLength() {
612
        return $('[data-type="select"]').length;
613
    }
118 steven 614
 
167 geraldo 615
    function currentSelected() {
616
        var selected = [];
617
        $.each($("input[name='select[]']:checked"), function() {
618
            selected.push($(this).val());
619
        });
620
        return selected;
621
    }
16796 efrain 622
 
167 geraldo 623
    $(document).on('change', "input[name='select[]']", function() {
624
        var c = currentSelected();
625
        var cc = getLength();
626
        if (c.length == cc) {
627
            if ($('[data-action="delete"]').hasClass('hide')) {
628
                $('[data-action="delete"]').removeClass('hide');
629
            }
630
            return true;
631
        } else {
632
            $('input[name="select_all"]').prop('checked', false);
633
        }
634
        if (c.length > 0) {
635
            if ($('[data-action="delete"]').hasClass('hide')) {
636
                $('[data-action="delete"]').removeClass('hide');
637
            }
638
        } else {
639
            if (!$('[data-action="delete"]').hasClass('hide')) {
640
                $('[data-action="delete"]').addClass('hide');
641
            }
642
        }
118 steven 643
    });
167 geraldo 644
    var form3 = $('#form_sample_3');
645
    var error3 = $('.alert-danger', form3);
646
    var success3 = $('.alert-success', form3);
647
    //IMPORTANT: update CKEDITOR textarea with actual content before submit
648
    $("#form-main").on('submit', function() {
649
        for (var instanceName in CKEDITOR.instances) {
650
            CKEDITOR.instances[instanceName].updateElement();
651
        }
652
    })
204 geraldo 653
    /**
1050 geraldo 654
     * Validate rules form
204 geraldo 655
     */
167 geraldo 656
    var validatorForm = $("#form-main").validate({
118 steven 657
        ignore: [],
658
        errorClass: 'help-block',
659
        errorElement: 'span',
167 geraldo 660
        rules: {
661
            'form-name': {
662
                required: true,
663
                minlength: 2,
664
                maxlength: 50
665
            },
666
            'form-description': {
667
                required: true,
668
            },
669
            'form-text': {
670
                required: true,
671
            },
672
            'form-language': {
673
                required: true,
674
            },
675
            'forrm-status': {
676
                required: true,
677
            },
678
        },
679
        highlight: function(element) {
118 steven 680
            $(element).closest('.form-group').addClass('has-error');
681
        },
167 geraldo 682
        unhighlight: function(element) {
118 steven 683
            $(element).closest('.form-group').removeClass('has-error');
684
        },
167 geraldo 685
        errorPlacement: function(error, element) {
118 steven 686
            if (element.attr("data-error-container")) {
687
                error.appendTo(element.attr("data-error-container"));
688
            } else {
689
                error.insertAfter(element);
690
            }
691
        },
692
        invalidHandler: function(form, validator) {
693
            if (!validator.numberOfInvalids())
694
                return;
695
            $('html, body').animate({
696
                scrollTop: $(validator.errorList[0].element).offset().top - 100
697
            }, 1000);
698
        },
167 geraldo 699
        submitHandler: function(form) {
700
            var error = false;
701
            if (objFormGenerator.sections.length == 0) {
702
                $.fn.showError('ERROR_SECCTIONS');
204 geraldo 703
                return false;
167 geraldo 704
            } else {
705
                for (i = 0; i < objFormGenerator.sections.length; i++) {
706
                    if (objFormGenerator.sections[i].questions.length == 0) {
707
                        $.fn.showError('ERROR_QUESTIONS'.replace('%s', objFormGenerator.sections[i].name));
204 geraldo 708
                        return false;
167 geraldo 709
                    }
710
                    var valueSection = parseInt(objFormGenerator.sections[i].value);
711
                    var totalValueQuestion = 0;
712
                    for (j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
713
                        valueQuestion = parseInt(objFormGenerator.sections[i].questions[j].value);
714
                        totalValueQuestion = totalValueQuestion + valueQuestion;
715
                        if (objFormGenerator.sections[i].questions[j].type == 'simple' ||
716
                            objFormGenerator.sections[i].questions[j].type == 'multiple' ||
717
                            objFormGenerator.sections[i].questions[j].type == 'rating-open') {
718
                            var questionNumber = j + 1;
719
                            var numberCorrect = 0;
720
                            if (objFormGenerator.sections[i].questions[j].options.length == 0) {
721
                                $.fn.showError('ERROR_OPTIONS'.replace('%s', objFormGenerator.sections[i].name).replace('%n', questionNumber));
722
                                return false;
723
                            }
724
                            var totalOption = 0;
725
                            var maxOption = 0;
726
                            for (k = 0; k < objFormGenerator.sections[i].questions[j].options.length; k++) {
727
                                if (objFormGenerator.sections[i].questions[j].type == 'simple' || objFormGenerator.sections[i].questions[j].type == 'multiple') {
728
                                    if (objFormGenerator.sections[i].questions[j].options[k].correct == 1) {
729
                                        numberCorrect++;
730
                                    }
731
                                }
732
                                if (objFormGenerator.sections[i].questions[j].type == 'multiple' && objFormGenerator.sections[i].questions[j].options[k].correct == 1) {
733
                                    totalOption = totalOption + parseInt(objFormGenerator.sections[i].questions[j].options[k].value);
734
                                }
735
                                if (objFormGenerator.sections[i].questions[j].type == 'rating-open') {
736
                                    if (parseInt(objFormGenerator.sections[i].questions[j].options[k].value) > maxOption) {
737
                                        maxOption = parseInt(objFormGenerator.sections[i].questions[j].options[k].value);
738
                                    }
739
                                }
740
                            }
741
                            if (objFormGenerator.sections[i].questions[j].type == 'simple' || objFormGenerator.sections[i].questions[j].type == 'multiple') {
742
                                if (numberCorrect == 0) {
743
                                    $.fn.showError('ERROR_OPTIONS_CORRECT'.replace('%s', objFormGenerator.sections[i].name).replace('%n', questionNumber));
744
                                    return false;
745
                                }
233 geraldo 746
                                if (
747
                                    objFormGenerator.sections[i].questions[j].type == 'simple' && numberCorrect > 1) {
167 geraldo 748
                                    $.fn.showError('ERROR_OPTIONS_DUPLICATE_CORRECT'.replace('%s', objFormGenerator.sections[i].name).replace('%n', questionNumber));
749
                                    return false;
750
                                }
751
                                if (objFormGenerator.sections[i].questions[j].type == 'multiple' && numberCorrect == 1) {
752
                                    $.fn.showError('ERROR_OPTIONS_ONE_CORRECT'.replace('%s', objFormGenerator.sections[i].name).replace('%n', questionNumber));
753
                                    return false;
754
                                }
755
                            }
234 geraldo 756
                            if (objFormGenerator.sections[i].questions[j].type == 'multiple' && totalOption != valueQuestion) {
167 geraldo 757
                                $.fn.showError('ERROR_OPTIONS_SUM_VALUES'.replace('%s', objFormGenerator.sections[i].name).replace('%n', questionNumber));
758
                                return false;
759
                            }
760
                            if (objFormGenerator.sections[i].questions[j].type == 'rating-open' && maxOption > valueQuestion) {
761
                                $.fn.showError('ERROR_OPTIONS_MAX_OPTION'.replace('%s', objFormGenerator.sections[i].name).replace('%n', questionNumber));
762
                                return false;
763
                            }
764
                        }
765
                    }
766
                    if (valueSection != totalValueQuestion) {
767
                        $.fn.showError('ERROR_VALUE_SECTIONS'.replace('%s', objFormGenerator.sections[i].name));
768
                        return false;
769
                    }
770
                }
204 geraldo 771
                var formId = parseInt($('#form-main #form-id').val());
772
                var formContinue = parseInt($('#form-main #form-continue').val());
773
                var data = {
774
                    'id': formId,
775
                    'name': $('#form-main #form-name').val(),
776
                    'description': $('#form-main #form-description').val(),
777
                    'text': $('#form-main #form-text').val(),
778
                    'language': $('#form-main #form-language').val(),
779
                    'status': $('#form-main #form-status').val(),
780
                    'content': JSON.stringify(objFormGenerator.sections)
781
                }
782
                $.ajax({
783
                    'dataType': 'json',
784
                    'method': 'post',
785
                    'url': $('#form-main').attr('action'),
786
                    'data': data,
787
                }).done(function(response) {
788
                    if (response['success']) {
789
                        $.fn.showSuccess(response['data']);
790
                        if (formContinue == 1) {
213 geraldo 791
                            $('#form-main').attr('action',response['action_edit']);
209 geraldo 792
                            $('#form-main #form-id').val(response['id']);
204 geraldo 793
                            $('#form-main #form-continue').val(0);
167 geraldo 794
                        } else {
204 geraldo 795
                            $('#row-edit').hide();
796
                            $('#row-forms').show();
206 geraldo 797
                        /*---------- Reset Form -------- */
798
                        $('#form-main')[0].reset();
799
                        /*--------Reset Ckeditor ----------*/
800
                        CKEDITOR.instances['form-text'].setData('');
801
                        CKEDITOR.instances['form-description'].setData('');
802
                        /*--------Reset Sections ----------*/
803
                        clearSectionData();
804
                        /* ------- Refresh Table -----------*/
805
 
167 geraldo 806
                        }
204 geraldo 807
                        tableForm.fnDraw();
808
                    } else {
809
                        $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
810
                    }
811
                }).fail(function(jqXHR, textStatus, errorThrown) {
812
                    $.fn.showError(textStatus);
813
                });
814
                return false;
167 geraldo 815
            }
816
        }
817
    });
818
    //IMPORTANT: update CKEDITOR textarea with actual content before submit
819
    $("#form-section").on('submit', function() {
820
        for (var instanceName in CKEDITOR.instances) {
821
            CKEDITOR.instances[instanceName].updateElement();
822
        }
823
    })
204 geraldo 824
    /**
825
     * Validate rules form section
826
     */
167 geraldo 827
    var validatorFormSection = $("#form-section").validate({
118 steven 828
        ignore: [],
829
        errorClass: 'help-block',
830
        errorElement: 'span',
167 geraldo 831
        rules: {
832
            'section-name': {
833
                required: true,
834
                minlength: 2,
835
                maxlength: 50
836
            },
837
            'section-text': {
838
                required: false,
839
            },
840
            'section-value': {
841
                required: true,
842
                number: true,
843
                min: 1
844
            },
845
        },
846
        highlight: function(element) {
118 steven 847
            $(element).closest('.form-group').addClass('has-error');
848
        },
167 geraldo 849
        unhighlight: function(element) {
118 steven 850
            $(element).closest('.form-group').removeClass('has-error');
851
        },
167 geraldo 852
        errorPlacement: function(error, element) {
118 steven 853
            if (element.attr("data-error-container")) {
854
                error.appendTo(element.attr("data-error-container"));
855
            } else {
856
                error.insertAfter(element);
857
            }
858
        },
859
        invalidHandler: function(form, validator) {
860
            if (!validator.numberOfInvalids())
861
                return;
862
            $('html, body').animate({
863
                scrollTop: $(validator.errorList[0].element).offset().top - 100
864
            }, 1000);
865
        },
167 geraldo 866
        submitHandler: function(form) {
867
            // do other things for a valid form
868
            //form.submit();
869
            var slug = $('#form-section #section-slug').val();
870
            if (slug) {
871
                objFormGenerator.editSection(
872
                    $('#form-section #section-slug').val(),
873
                    $('#form-section #section-name').val(),
874
                    $('#form-section #section-text').val(),
875
                    $('#form-section #section-value').val()
876
                );
877
            } else {
878
                objFormGenerator.addSection(
879
                    $('#form-section #section-name').val(),
880
                    $('#form-section #section-text').val(),
881
                    $('#form-section #section-value').val()
882
                );
883
            }
196 geraldo 884
            renderSectionData(objFormGenerator.sections);
167 geraldo 885
            $('#modal-section').modal('hide');
886
            return false;
887
        }
888
    });
889
    //IMPORTANT: update CKEDITOR textarea with actual content before submit
890
    $("#form-question").on('submit', function() {
891
        for (var instanceName in CKEDITOR.instances) {
892
            CKEDITOR.instances[instanceName].updateElement();
893
        }
894
    })
204 geraldo 895
    /**
896
     * Validate rules form Questions
897
     */
167 geraldo 898
    var validatorFormQuestion = $("#form-question").validate({
118 steven 899
        ignore: [],
900
        errorClass: 'help-block',
901
        errorElement: 'span',
167 geraldo 902
        rules: {
903
            'question-text': {
904
                required: true,
905
            },
906
            'question-value': {
907
                required: true,
908
                number: true,
909
                min: 1
910
            },
911
            'question-type': {
912
                required: true,
913
            },
914
            'question-max-length': {
915
                required: true,
916
                digits: true,
917
                min: 0
918
            },
919
            'question-range': {
920
                required: true,
921
                number: true,
922
                min: 1
923
            },
924
        },
925
        highlight: function(element) {
118 steven 926
            $(element).closest('.form-group').addClass('has-error');
927
        },
167 geraldo 928
        unhighlight: function(element) {
118 steven 929
            $(element).closest('.form-group').removeClass('has-error');
930
        },
167 geraldo 931
        errorPlacement: function(error, element) {
118 steven 932
            if (element.attr("data-error-container")) {
933
                error.appendTo(element.attr("data-error-container"));
934
            } else {
935
                error.insertAfter(element);
936
            }
937
        },
938
        invalidHandler: function(form, validator) {
939
            if (!validator.numberOfInvalids())
940
                return;
941
            $('html, body').animate({
942
                scrollTop: $(validator.errorList[0].element).offset().top - 100
943
            }, 1000);
944
        },
167 geraldo 945
        submitHandler: function(form) {
946
            if ($('#form-question #question-slug').val()) {
947
                objFormGenerator.editQuestion(
948
                    $('#form-question #question-section').val(),
949
                    $('#form-question #question-slug').val(),
950
                    $('#form-question #question-text').val(),
951
                    $('#form-question #question-value').val(),
952
                    $('#form-question #question-type').val(),
953
                    $('#form-question #question-max-length').val(),
954
                    $('#form-question #question-multiline').val(),
955
                    $('#form-question #question-range').val()
956
                );
957
            } else {
958
                objFormGenerator.addQuestion(
959
                    $('#form-question #question-section').val(),
960
                    $('#form-question #question-text').val(),
961
                    $('#form-question #question-value').val(),
962
                    $('#form-question #question-type').val(),
963
                    $('#form-question #question-max-length').val(),
964
                    $('#form-question #question-multiline').val(),
965
                    $('#form-question #question-range').val()
966
                );
967
            }
196 geraldo 968
            renderSectionData(objFormGenerator.sections);
167 geraldo 969
            $('#modal-question').modal('hide');
970
            return false;
971
        }
972
    });
973
    //IMPORTANT: update CKEDITOR textarea with actual content before submit
974
    $("#form-option").on('submit', function() {
975
        for (var instanceName in CKEDITOR.instances) {
976
            CKEDITOR.instances[instanceName].updateElement();
977
        }
978
    })
204 geraldo 979
    /**
980
     * Validate rules form options
981
     */
167 geraldo 982
    var validatorFormOption = $("#form-option").validate({
118 steven 983
        ignore: [],
984
        errorClass: 'help-block',
985
        errorElement: 'span',
167 geraldo 986
        rules: {
987
            'option-text': {
988
                required: true,
989
            },
990
            'option-value': {
991
                required: true,
992
                number: true,
993
                min: 1
994
            }
995
        },
996
        highlight: function(element) {
118 steven 997
            $(element).closest('.form-group').addClass('has-error');
998
        },
167 geraldo 999
        unhighlight: function(element) {
118 steven 1000
            $(element).closest('.form-group').removeClass('has-error');
1001
        },
167 geraldo 1002
        errorPlacement: function(error, element) {
118 steven 1003
            if (element.attr("data-error-container")) {
1004
                error.appendTo(element.attr("data-error-container"));
1005
            } else {
1006
                error.insertAfter(element);
1007
            }
1008
        },
1009
        invalidHandler: function(form, validator) {
1010
            if (!validator.numberOfInvalids())
1011
                return;
1012
            $('html, body').animate({
1013
                scrollTop: $(validator.errorList[0].element).offset().top - 100
1014
            }, 1000);
1015
        },
167 geraldo 1016
        submitHandler: function(form) {
1017
            if ($('#form-option #option-slug').val()) {
1018
                objFormGenerator.editOption(
1019
                    $('#form-option #option-section').val(),
1020
                    $('#form-option #option-question').val(),
1021
                    $('#form-option #option-slug').val(),
1022
                    $('#form-option #option-text').val(),
1023
                    $('#form-option #option-correct').val(),
184 geraldo 1024
                    $('#form-option #option-value').val()
167 geraldo 1025
                );
1026
            } else {
1027
                objFormGenerator.addOption(
1028
                    $('#form-option #option-section').val(),
1029
                    $('#form-option #option-question').val(),
1030
                    $('#form-option #option-text').val(),
1031
                    $('#form-option #option-correct').val(),
184 geraldo 1032
                    $('#form-option #option-value').val()
167 geraldo 1033
                );
1034
            }
196 geraldo 1035
            renderSectionData(objFormGenerator.sections);
167 geraldo 1036
            $('#modal-option').modal('hide');
1037
            return false;
1038
        }
1039
    });
204 geraldo 1040
    /**
1041
     * Clicked on add new section
1042
     */
167 geraldo 1043
    $('body').on('click', 'button[id="btn-add-section"]', function(e) {
1044
        e.preventDefault();
1045
        validatorFormSection.resetForm();
1046
        $('#form-section #section-slug').val('');
1047
        $('#form-section #section-name').val('');
202 geraldo 1048
        CKEDITOR.instances['section-text'].setData('');
167 geraldo 1049
        $('#form-section #section-value').val('0');
1050
        $('#modal-section h4[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
1051
        $('#modal-section').modal('show');
1052
    });
204 geraldo 1053
    /**
1054
     * Clicked on edit section
1055
     */
167 geraldo 1056
    $('body').on('click', 'button.btn-edit-section', function(e) {
1057
        e.preventDefault();
169 geraldo 1058
        var slug = $(this).data('section');
167 geraldo 1059
        var section;
1060
        var showForm = false;
1061
        for (i = 0; i < objFormGenerator.sections.length; i++) {
1062
            section = objFormGenerator.sections[i];
171 geraldo 1063
            if (slug == section.slug_section) {
167 geraldo 1064
                validatorFormSection.resetForm();
171 geraldo 1065
                $('#form-section #section-slug').val(section.slug_section);
167 geraldo 1066
                $('#form-section #section-name').val(section.name);
202 geraldo 1067
                CKEDITOR.instances['section-text'].setData(section.text);
167 geraldo 1068
                $('#form-section #section-value').val(section.value);
1069
                showForm = true;
1070
                break;
1071
            }
1072
        }
1073
        if (showForm) {
1074
            $('#modal-section h4[class="modal-title"]').html('LABEL_EDIT LABEL_SECTION');
1075
            $('#modal-section').modal('show');
1076
        }
1077
    });
204 geraldo 1078
    /**
1079
     * Clicked on remove section
1080
     */
167 geraldo 1081
    $('body').on('click', 'button.btn-delete-section', function(e) {
1082
        e.preventDefault();
169 geraldo 1083
        var slug = $(this).data('section');
16822 efrain 1084
 
1085
          swal.fire({
167 geraldo 1086
            title: "LABEL_DELETE LABEL_SECTION",
1087
            message: "LABEL_QUESTION_DELETE",
16822 efrain 1088
            icon: 'question',
1089
            cancelButtonText: 'LABEL_NO',
1090
            showCancelButton: true,
1091
            confirmButtonText: 'LABEL_YES'
1092
          }).then((result) => {
1093
            if (result.isConfirmed) {
1094
                objFormGenerator.deleteSection(slug);
1095
                renderSectionData(objFormGenerator.sections);
167 geraldo 1096
            }
16822 efrain 1097
          });
1098
 
167 geraldo 1099
    });
204 geraldo 1100
    /**
1101
     * Clicked add new question
1102
     */
167 geraldo 1103
    $('body').on('click', 'button.btn-add-question', function(e) {
1104
        e.preventDefault();
1105
        validatorFormQuestion.resetForm();
169 geraldo 1106
        var slug = $(this).data('section');
167 geraldo 1107
        $('#form-question #question-section').val(slug);
1108
        $('#form-question #question-slug').val('');
203 geraldo 1109
        CKEDITOR.instances['question-text'].setData('');
167 geraldo 1110
        $('#form-question #question-value').val('0');
1111
        $('#form-question #question-type').val($('#form-question #question-type option:first').val());
1112
        $('#form-question #question-max-length').val('0');
1113
        $('#form-question #question-max-length').parent().show();
1114
        $('#form-question #question-multiline').val('0');
1115
        $('#form-question #question-multiline').parent().show();
1116
        $('#form-question #question-range').val('10');
1117
        $('#form-question #question-range').parent().hide();
1118
        $('#modal-question h4[class="modal-title"]').html('LABEL_ADD LABEL_QUESTION');
1119
        $('#modal-question').modal('show');
1120
    });
204 geraldo 1121
    /**
1122
     * Clicked edit question
1123
     */
167 geraldo 1124
    $('body').on('click', 'button.btn-edit-question', function(e) {
1125
        e.preventDefault();
1126
        var slug_section = $(this).data('section');
170 geraldo 1127
        var slug = $(this).data('question');
167 geraldo 1128
        var showForm = false;
1129
        for (i = 0; i < objFormGenerator.sections.length; i++) {
1130
            if (slug_section == objFormGenerator.sections[i].slug_section) {
1131
                for (j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1132
                    if (slug == objFormGenerator.sections[i].questions[j].slug_question) {
1133
                        validatorFormQuestion.resetForm();
1134
                        $('#form-question #question-section').val(objFormGenerator.sections[i].slug_section);
1135
                        $('#form-question #question-slug').val(objFormGenerator.sections[i].questions[j].slug_question);
203 geraldo 1136
                        CKEDITOR.instances['question-text'].setData(objFormGenerator.sections[i].questions[j].text);
167 geraldo 1137
                        $('#form-question #question-value').val(objFormGenerator.sections[i].questions[j].value);
1138
                        $('#form-question #question-type').val(objFormGenerator.sections[i].questions[j].type);
1139
                        if (objFormGenerator.sections[i].questions[j].type == 'open') {
1140
                            $('#form-question #question-max-length').val(objFormGenerator.sections[i].questions[j].maxlength);
1141
                            $('#form-question #question-max-length').parent().show();
1142
                            $('#form-question #question-multiline').val(objFormGenerator.sections[i].questions[j].multiline);
1143
                            $('#form-question #question-multiline').parent().show();
118 steven 1144
                        } else {
167 geraldo 1145
                            $('#form-question #question-max-length').val('0');
1146
                            $('#form-question #question-max-length').parent().hide();
1147
                            $('#form-question #question-multiline').val('0');
1148
                            $('#form-question #question-multiline').parent().hide();
118 steven 1149
                        }
167 geraldo 1150
                        if (objFormGenerator.sections[i].questions[j].type == 'rating-range') {
1151
                            $('#form-question #question-range').val(objFormGenerator.sections[i].questions[j].range);
1152
                            $('#form-question #question-range').parent().show();
1153
                        } else {
1154
                            $('#form-question #question-range').val('10');
1155
                            $('#form-question #question-range').parent().hide();
1156
                        }
1157
                        showForm = true;
1158
                        break;
1159
                    }
1160
                }
1161
                break;
1162
            }
1163
        }
1164
        if (showForm) {
1165
            $('#modal-question h4[class="modal-title"]').html('LABEL_EDIT LABEL_QUESTION');
1166
            $('#modal-question').modal('show');
1167
        }
1168
    });
204 geraldo 1169
    /**
1170
     * Clicked remove question
1171
     */
167 geraldo 1172
    $('body').on('click', 'button.btn-delete-question', function(e) {
1173
        e.preventDefault();
1174
        var slug_section = $(this).data('section');
170 geraldo 1175
        var slug = $(this).data('question');
16822 efrain 1176
 
1177
          swal.fire({
167 geraldo 1178
            title: "LABEL_DELETE LABEL_QUESTION",
1179
            message: "LABEL_QUESTION_DELETE",
16822 efrain 1180
            icon: 'question',
1181
            cancelButtonText: 'LABEL_NO',
1182
            showCancelButton: true,
1183
            confirmButtonText: 'LABEL_YES'
1184
          }).then((result) => {
1185
            if (result.isConfirmed) {
167 geraldo 1186
                    objFormGenerator.deleteQuestion(slug_section, slug);
196 geraldo 1187
                    renderSectionData(objFormGenerator.sections);
16822 efrain 1188
 
167 geraldo 1189
            }
16822 efrain 1190
          });
1191
 
167 geraldo 1192
    });
204 geraldo 1193
    /**
1194
     * Clicked add new Option
1195
     */
167 geraldo 1196
    $('body').on('click', 'button.btn-add-option', function(e) {
1197
        e.preventDefault();
1198
        var slug_section = $(this).data('section');
1199
        var slug_question = $(this).data('question');
1200
        var showForm = false;
1201
        for (i = 0; i < objFormGenerator.sections.length; i++) {
1202
            if (slug_section == objFormGenerator.sections[i].slug_section) {
1203
                for (j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1204
                    if (slug_question == objFormGenerator.sections[i].questions[j].slug_question) {
1205
                        validatorFormOption.resetForm();
1206
                        $('#form-option #option-section').val(slug_section);
1207
                        $('#form-option #option-question').val(slug_question);
1208
                        $('#form-option #option-slug').val('');
202 geraldo 1209
                        CKEDITOR.instances['option-text'].setData('', function() {
167 geraldo 1210
                            editor.focus();
1211
                        });
1212
                        $('#form-option #option-correct').val('0');
1213
                        if (objFormGenerator.sections[i].questions[j].type == 'rating-open') {
1214
                            $('#form-option #option-correct').parent().hide();
1215
                        } else {
1216
                            $('#form-option #option-correct').parent().show();
1217
                        }
1218
                        if (objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'rating-open') {
1219
                            $('#form-option #option-value').val('0');
1220
                            $('#form-option #option-value').parent().show();
1221
                        } else {
1222
                            $('#form-option #option-value').val('1');
1223
                            $('#form-option #option-value').parent().hide();
1224
                        }
196 geraldo 1225
                        renderSectionData(objFormGenerator.sections);
230 geraldo 1226
                        $('#modal-option h4[class="modal-title"]').html('LABEL_ADD LABEL_OPTION');
232 geraldo 1227
                        $('#modal-option').modal('show');
1228
                        return true;
167 geraldo 1229
                    }
1230
                }
1231
            }
1232
        }
1233
    });
204 geraldo 1234
    /**
1235
     * Clicked edit option
1236
     */
167 geraldo 1237
    $('body').on('click', 'button.btn-edit-option', function(e) {
1238
        e.preventDefault();
1239
        var slug_section = $(this).data('section');
1240
        var slug_question = $(this).data('question');
1241
        var slug = $(this).data('slug');
1242
        var showForm = false;
1243
        for (i = 0; i < objFormGenerator.sections.length; i++) {
1244
            if (slug_section == objFormGenerator.sections[i].slug_section) {
1245
                for (j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1246
                    if (slug_question == objFormGenerator.sections[i].questions[j].slug_question) {
1247
                        for (k = 0; k < objFormGenerator.sections[i].questions[j].options.length; k++) {
1248
                            if (slug == objFormGenerator.sections[i].questions[j].options[k].slug_option) {
1249
                                validatorFormOption.resetForm();
1250
                                $('#form-option #option-section').val(objFormGenerator.sections[i].slug_section);
1251
                                $('#form-option #option-question').val(objFormGenerator.sections[i].questions[j].slug_question);
1252
                                $('#form-option #option-slug').val(objFormGenerator.sections[i].questions[j].options[k].slug_option);
204 geraldo 1253
                                CKEDITOR.instances['option-text'].setData(objFormGenerator.sections[i].questions[j].options[k].text,
1254
                                    function() {
1255
                                        editor.focus();
1256
                                    });
167 geraldo 1257
                                $('#form-option #option-correct').val(objFormGenerator.sections[i].questions[j].options[k].correct);
1258
                                if (objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'simple') {
1259
                                    $('#form-option #option-correct').parent().show();
1260
                                } else {
1261
                                    $('#form-option #option-correct').parent().hide();
1262
                                }
1263
                                $('#form-option #option-value').val(objFormGenerator.sections[i].questions[j].options[k].value);
1264
                                if (objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'rating-open') {
1265
                                    $('#form-option #option-value').parent().show();
1266
                                } else {
1267
                                    $('#form-option #option-value').parent().hide();
1268
                                }
1269
                                showForm = true;
1270
                                break;
1271
                            }
1272
                        }
1273
                    }
1274
                    if (showForm) {
1275
                        break;
1276
                    }
1277
                }
1278
            }
1279
            if (showForm) {
1280
                break;
1281
            }
1282
        }
1283
        if (showForm) {
1284
            $('#modal-option h4[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
1285
            $('#modal-option').modal('show');
1286
        }
1287
    });
204 geraldo 1288
    /**
1289
     * Clicked remove option
1290
     */
167 geraldo 1291
    $('body').on('click', 'button.btn-delete-option', function(e) {
1292
        e.preventDefault();
1293
        var slug_section = $(this).data('section');
1294
        var slug_question = $(this).data('question');
1295
        var slug = $(this).data('slug');
16822 efrain 1296
 
1297
          swal.fire({
167 geraldo 1298
            title: "LABEL_DELETE LABEL_OPTION",
1299
            message: "LABEL_QUESTION_DELETE",
16822 efrain 1300
            icon: 'question',
1301
            cancelButtonText: 'LABEL_NO',
1302
            showCancelButton: true,
1303
            confirmButtonText: 'LABEL_YES'
1304
          }).then((result) => {
1305
            if (result.isConfirmed) {
1306
                objFormGenerator.deleteOption(slug_section, slug_question, slug);
1307
                renderSectionData(objFormGenerator.sections);
167 geraldo 1308
            }
16822 efrain 1309
          });
1310
 
1311
 
167 geraldo 1312
    })
204 geraldo 1313
    /**
1050 geraldo 1314
     * Format input number (Form Section)
204 geraldo 1315
     */
167 geraldo 1316
    $('#form-section #section-value').inputNumberFormat({
1317
        'decimal': 2
1318
    });
204 geraldo 1319
    /**
1050 geraldo 1320
     * Format input number (Form Question)
204 geraldo 1321
     */
167 geraldo 1322
    $('#form-question #question-value').inputNumberFormat({
1323
        'decimal': 2
1324
    });
204 geraldo 1325
    /**
1050 geraldo 1326
     * Format input number (Form Question)
204 geraldo 1327
     */
167 geraldo 1328
    $('#form-question #question-max-length').inputNumberFormat({
1329
        'decimal': 0
1330
    });
204 geraldo 1331
    /**
1050 geraldo 1332
     * Format input number (Form Option)
204 geraldo 1333
     */
167 geraldo 1334
    $('#form-option #option-value').inputNumberFormat({
1335
        'decimal': 2
1336
    });
204 geraldo 1337
    /**
1338
     * Detect when updating question status and hide/Show options
1339
     */
167 geraldo 1340
    $('#form-question #question-type').change(function(e) {
1341
        e.preventDefault();
1342
        if ($('#form-question #question-type').val() == 'open') {
1343
            $('#form-question #question-max-length').parent().show();
1344
            $('#form-question #question-multiline').parent().show();
1345
        } else {
1346
            $('#form-question #question-max-length').val('0');
1347
            $('#form-question #question-max-length').parent().hide();
1348
            $('#form-question #question-multiline').val('0');
1349
            $('#form-question #question-multiline').parent().hide();
1350
        }
1351
        $('#form-question #question-range').val('10');
1352
        if ($('#form-question #question-type').val() == 'rating-range') {
1353
            $('#form-question #question-range').parent().show();
1354
        } else {
1355
            $('#form-question #question-range').parent().hide();
1356
        }
1357
    });
204 geraldo 1358
    /**
1359
     * Clicked new Form
1360
     */
167 geraldo 1361
    $('button.btn-add-form').click(function(e) {
1362
        e.preventDefault();
1363
        objFormGenerator.clear();
1364
        objFormGenerator.render();
1365
        validatorForm.resetForm();
196 geraldo 1366
        clearSectionData();
201 geraldo 1367
        $('#form-main').attr('action', '$routeAdd');
167 geraldo 1368
        $('#form-main #form-id').val('0');
1369
        $('#form-main #form-continue').val('0');
1370
        $('#form-main #form-name').val('');
1371
        $('#form-main #form-language').val('$lang_es'),
206 geraldo 1372
        $('#form-main #form-status').val('$status_inactive');
1373
        CKEDITOR.instances['form-text'].setData('');
1374
        CKEDITOR.instances['form-description'].setData('');
167 geraldo 1375
        $('#row-forms').hide();
1376
        $('#row-edit').show();
1377
        $('#form-main #form-name').focus();
1378
    });
204 geraldo 1379
    /**
1380
     * Clicked cancel new/edit Form
1381
     */
167 geraldo 1382
    $('button.btn-edit-cancel').click(function(e) {
1383
        e.preventDefault();
1384
        $('#row-edit').hide();
1385
        $('#row-forms').show();
1386
    });
204 geraldo 1387
    /**
1388
     * Clicked save and continue new Form
1389
     */
167 geraldo 1390
    $('button.btn-form-save-continue').click(function(e) {
1391
        e.preventDefault();
1392
        $('#form-main #form-continue').val('1')
1393
        $('#form-main').submit();
1394
    });
204 geraldo 1395
    /**
1396
     * Clicked save and close new/edit Form
1397
     */
167 geraldo 1398
    $('button.btn-form-save-close').click(function(e) {
1399
        e.preventDefault();
1400
        $('#form-main #form-continue').val('0')
1401
        $('#form-main').submit();
1402
    });
204 geraldo 1403
    /**
1404
     * Modal Settings
1405
     */
167 geraldo 1406
    $('#modal-section, #modal-question, #modal-option').modal({
1407
        backdrop: 'static',
1408
        keyboard: false,
1409
        show: false
1410
    });
203 geraldo 1411
    /**
204 geraldo 1412
     * Get Question type
1413
     */
203 geraldo 1414
    const getQuestionTypeBySlug = (slug_section, slug_question) => {
204 geraldo 1415
        for (i = 0; i < objFormGenerator.sections.length; i++) {
1416
            if (slug_section == objFormGenerator.sections[i].slug_section) {
1417
                for (j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1418
                    if (slug_question == objFormGenerator.sections[i].questions[j].slug_question) {
1419
                        return objFormGenerator.sections[i].questions[j].type;
1420
                    }
1421
                }
1422
            }
1423
        }
203 geraldo 1424
    }
1425
    /**
223 geraldo 1426
     * Remove Html Tags
1427
     */
1428
    const removeTags = (str) => str.toString().replace( /(<([^>]+)>)/ig, '')
1429
    /**
204 geraldo 1430
     * Render Sections data
1431
     */
232 geraldo 1432
    const renderSectionData = (data) => $("#rows").html($("#sectionTemplate").render(data, {
222 geraldo 1433
        getType: getQuestionTypeBySlug,
1434
        removeTags: removeTags
203 geraldo 1435
    }));
225 geraldo 1436
 
232 geraldo 1437
 
203 geraldo 1438
    /**
1050 geraldo 1439
     * Clear Div Section data
204 geraldo 1440
     */
1441
    const clearSectionData = () => $("#rows").html('');
203 geraldo 1442
    /**
204 geraldo 1443
     * Clicked refresh button
1444
     */
203 geraldo 1445
    $('button.btn-refresh').click(function(e) {
204 geraldo 1446
        tableForm.fnDraw();
203 geraldo 1447
    });
16822 efrain 1448
 
1449
 $('body').on('click', 'button.btn-delete', function(e) {
1450
        e.preventDefault();
1451
        var action = $(this).data('href');
1452
 
1453
 
1454
          swal.fire({
1455
            title: 'LABEL_ARE_YOU_SURE',
1456
            icon: 'question',
1457
            cancelButtonText: 'LABEL_NO',
1458
            showCancelButton: true,
1459
            confirmButtonText: 'LABEL_YES'
1460
          }).then((result) => {
1461
            if (result.isConfirmed) {
1462
 
1463
                    NProgress.start();
1464
                    $.ajax({
1465
                        'dataType'  : 'json',
1466
                        'accept'    : 'application/json',
1467
                        'method'    : 'post',
1468
                        'url'       :  action,
1469
                    }).done(function(response) {
1470
                        if(response['success']) {
1471
                            $.fn.showSuccess(response['data']);
1472
                            gridTable.api().ajax.reload(null, false);
1473
                        } else {
1474
                            $.fn.showError(response['data']);
1475
                        }
1476
                    }).fail(function( jqXHR, textStatus, errorThrown) {
1477
                        $.fn.showError(textStatus);
1478
                    }).always(function() {
1479
                        NProgress.done();
1480
                    });
1481
            }
1482
       });
1483
    });
222 geraldo 1484
 
167 geraldo 1485
});
118 steven 1486
JS;
115 efrain 1487
$this->inlineScript()->captureEnd();
1488
?>
118 steven 1489
 
115 efrain 1490
<!-- Content Header (Page header) -->
1491
<section class="content-header">
135 geraldo 1492
    <div class="container-fluid">
1493
        <div class="row mb-2">
1494
            <div class="col-sm-12">
1495
                <h1>LABEL_SELF_EVALUATION_FORMS</h1>
1496
            </div>
1497
        </div>
145 geraldo 1498
    </div>
1499
    <!-- /.container-fluid -->
115 efrain 1500
</section>
1501
<section class="content">
135 geraldo 1502
    <div class="container-fluid" id="row-forms">
1503
        <div class="row">
16891 efrain 1504
            <div class="col-12 mt-3">
145 geraldo 1505
                <div class="card">
135 geraldo 1506
                    <div class="card-body">
16845 efrain 1507
                        <table id="gridTable" class="table   table-bordered">
153 geraldo 1508
                            <thead>
1509
                                <tr>
1510
                                    <th>LABEL_NAME</th>
1511
                                    <th>LABEL_LANGUAGE</th>
1512
                                    <th>LABEL_ACTIVE</th>
1513
                                    <th>LABEL_ACTIONS</th>
1514
                                </tr>
1515
                            </thead>
155 geraldo 1516
                            <tbody></tbody>
153 geraldo 1517
                        </table>
135 geraldo 1518
                    </div>
1519
                    <div class="card-footer clearfix">
1520
                        <div style="float:right;">
1521
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
1522
                            <?php if ($allowAdd) : ?>
1523
                                <button type="button" class="btn btn-primary btn-add-form"><i class="fa fa-plus"></i> LABEL_ADD </button>
1524
                            <?php endif; ?>
1525
                        </div>
1526
                    </div>
1527
                </div>
145 geraldo 1528
            </div>
1529
        </div>
135 geraldo 1530
    </div>
154 geraldo 1531
 
155 geraldo 1532
    <!-- Create/Edit Form -->
174 geraldo 1533
 
1534
    <div class="row" id="row-edit" style="display: none">
1535
        <div class="col-xs-12 col-md-12">
1536
            <form action="#" name="form-main" id="form-main">
1537
                <input type="hidden" name="form-id" id="form-id" value="0" />
1538
                <input type="hidden" name="form-continue" id="form-continue" value="0" />
1539
                <div class="form-group">
1540
                    <label for="form-name">LABEL_FIRST_NAME</label>
1541
                    <input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
1542
                </div>
1543
                <div class="form-group">
1544
                    <label for="form-description">LABEL_DESCRIPTION</label>
1545
                    <!--  ckeditor -->
1546
                    <textarea  name="form-description" id="form-description" rows="5" class="ckeditor form-control"></textarea>
1547
                </div>
1548
                <div class="form-group">
1549
                    <label for="form-text">LABEL_TEXT</label>
1550
                    <!--  ckeditor -->
1551
                    <textarea  name="form-text" id="form-text" rows="5" class="ckeditor form-control"></textarea>
1552
                </div>
1553
                <div class="form-group">
1554
                    <label for="form-language">LABEL_LANGUAGES</label>
1555
                    <select name="form-language" id="form-language" class="form-control">
176 geraldo 1556
                        <option value="<?php echo $lang_en; ?>">LABEL_ENGLISH</option>
1557
                        <option value="<?php echo $lang_es; ?>">LABEL_SPANISH</option>
174 geraldo 1558
                    </select>
1559
                </div>
1560
                <div class="form-group">
1561
                    <label for="form-status">LABEL_STATUS</label>
1562
                    <select name="form-status" id="form-status" class="form-control">
176 geraldo 1563
                        <option value="<?php echo $status_inactive; ?>">LABEL_INACTIVE</option>
1564
                        <option value="<?php echo $status_active; ?>">LABEL_ACTIVE</option>
174 geraldo 1565
                    </select>
1566
                </div>
1567
                <br/>
1568
                <div class="row">
1569
                    <div class="col-xs-12 col-md-12 text-right">
1570
                        <button class="btn btn-primary" id="btn-add-section" data-toggle="tooltip" title="LABEL_ADD LABEL_SECTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_SECTION</button>
1571
                    </div>
1572
                </div>
1050 geraldo 1573
                <br />
174 geraldo 1574
                <div class="row">
1575
                    <div class="col-xs-12 col-md-12">
1576
                        <div class="panel-group" id="rows"></div>
1577
                    </div>
1578
                </div>
1579
                <div class="form-group">
1580
                    <button type="submit" form="form-main" class="btn btn-info btn-form-save-continue">LABEL_SAVE & LABEL_CONTINUE</button>
1581
                    <button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE & LABEL_CLOSE</button>
16822 efrain 1582
                    <button type="button" class="btn btn-light btn-edit-cancel">LABEL_CANCEL</button>
174 geraldo 1583
                </div>
1584
            </form>
1585
        </div>
1586
    </div>
1587
 
155 geraldo 1588
    <!-- Create/Edit Form-->
154 geraldo 1589
 
135 geraldo 1590
    <!-- Section Modal -->
174 geraldo 1591
    <div  id="modal-section" class="modal" tabindex="-1" role="dialog">
1592
        <div class="modal-dialog modal-lg" role="document">
1593
            <form action="#" name="form-section" id="form-section">
1594
                <input type="hidden" name="section-slug" id="section-slug" value="" />
1595
                <div class="modal-content">
1596
                    <div class="modal-header">
16845 efrain 1597
                        <h6 class="modal-title">LABEL_ADD LABEL_SECTION</h6>
16864 efrain 1598
                         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
174 geraldo 1599
                    </div>
1600
                    <div class="modal-body">
1601
                        <div class="form-group">
1602
                            <label for="section-name">LABEL_FIRST_NAME</label>
1603
                            <input type="text" name="section-name" id="section-name" class="form-control" maxlength="50" value="" />
1604
                        </div>
1605
                        <div class="form-group">
1606
                            <label for="section-text">LABEL_TEXT</label>
1607
                            <!--  ckeditor -->
1608
                            <textarea  name="section-text" id="section-text" rows="5" class="ckeditor form-control"></textarea>
1609
                        </div>
1610
                        <div class="form-group">
1611
                            <label for="section-value">LABEL_VALUE</label>
1612
                            <input type="text" name="section-value" id="section-value"  class="form-control" value="0" />
1613
                        </div>
1614
                    </div>
16891 efrain 1615
                    <div class="modal-footer text-right">
174 geraldo 1616
                        <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 1617
                        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
174 geraldo 1618
                    </div>
1619
                </div>
1620
            </form>
1621
        </div>
1622
    </div>
135 geraldo 1623
    <!-- End Modal Section -->
153 geraldo 1624
 
135 geraldo 1625
    <!-- Question Modal -->
156 geraldo 1626
 
174 geraldo 1627
    <div  id="modal-question" class="modal" tabindex="-1" role="dialog">
1628
        <div class="modal-dialog modal-lg" role="document">
1629
            <form action="#" name="form-question" id="form-question">
1630
                <input type="hidden" name="question-section" id="question-section" />
1631
                <input type="hidden" name="question-slug" id="question-slug" />
1632
                <div class="modal-content">
1633
                    <div class="modal-header">
16845 efrain 1634
                        <h6 class="modal-title">LABEL_ADD LABEL_QUESTION</h6>
16864 efrain 1635
                         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
174 geraldo 1636
                    </div>
1637
                    <div class="modal-body">
1638
                        <div class="form-group">
1639
                            <label for="question-text">LABEL_TEXT</label>
1640
                            <!--  ckeditor -->
1641
                            <textarea  name="question-text" id="question-text" rows="5" class="ckeditor form-control"></textarea>
1642
                        </div>
1643
                        <div class="form-group">
1644
                            <label for="question-value">LABEL_VALUE</label>
1645
                            <input type="text" name="question-value" id="question-value"  class="form-control" />
1646
                        </div>
1647
                        <div class="form-group">
1648
                            <label for="question-type">LABEL_TYPE</label>
1649
                            <select name="question-type" id="question-type" class="form-control">
1650
                                <option value="open">LABEL_OPEN</option>
1651
                                <option value="simple">Simple</option>
1652
                                <option value="multiple">Multiple</option>
1653
                                <option value="rating-open">LABEL_RATING_OPEN</option>
1654
                                <option value="rating-range">LABEL_RATING_RANGE</option>
1655
                            </select>
1656
                        </div>
1657
                        <div class="form-group">
1658
                            <label for="question-max-length">LABEL_MAXLENGTH</label>
1659
                            <input type="text" name="question-max-length" id="question-max-length"  class="form-control" />
1660
                        </div>
1661
                        <div class="form-group">
1662
                            <label for="question-multiline">LABEL_MULTI_LINE</label>
1663
                            <select name="question-multiline" id="question-multiline" class="form-control">
1664
                                <option value="1">LABEL_YES</option>
1665
                                <option value="0">LABEL_NOT</option>
1666
                            </select>
1667
                        </div>
1668
                        <div class="form-group">
1669
                            <label for="question-range">LABEL_RANGE</label>
1670
                            <select name="question-range" id="question-range" class="form-control">
1671
                                <option value="10">1-10</option>
1672
                                <option value="6">1-6</option>
1673
                                <option value="5">1-5</option>
1674
                            </select>
1675
                        </div>
1676
                    </div>
16891 efrain 1677
                    <div class="modal-footer text-right">
174 geraldo 1678
                        <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 1679
                        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
174 geraldo 1680
                    </div>
1681
                </div>
1682
            </form>
1683
        </div>
1684
    </div>
156 geraldo 1685
 
167 geraldo 1686
    <!-- End Modal Question -->
153 geraldo 1687
 
1688
    <!-- Modal Options -->
156 geraldo 1689
 
174 geraldo 1690
    <div  id="modal-option" class="modal" tabindex="-1" role="dialog">
1691
        <div class="modal-dialog modal-lg" role="document">
1692
            <form action="#" name="form-option" id="form-option">
1693
                <input type="hidden" name="option-section" id="option-section" value="" />
1694
                <input type="hidden" name="option-question" id="option-question" value="" />
1695
                <input type="hidden" name="option-slug" id="option-slug" value="" />
1696
                <div class="modal-content">
1697
                    <div class="modal-header">
16845 efrain 1698
                        <h6 class="modal-title">LABEL_OPTION</h6>
16864 efrain 1699
                         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
174 geraldo 1700
                    </div>
1701
                    <div class="modal-body">
1702
                        <div class="form-group">
1703
                            <label for="option-text">LABEL_TEXT</label>
1704
                            <!--  ckeditor -->
1705
                            <textarea  name="option-text" id="option-text" rows="5" class="ckeditor form-control"></textarea>
1706
                        </div>
1707
                        <div class="form-group">
1708
                            <label for="option-correct">LABEL_ANSWER_CORRECT</label>
1709
                            <select name="option-correct" id="option-correct" class="form-control">
1710
                                <option value="1">LABEL_YES</option>
1711
                                <option value="0">LABEL_NOT</option>
1712
                            </select>
1713
                        </div>
1714
                        <div class="form-group">
1715
                            <label for="option-value">LABEL_VALUE</label>
1716
                            <input type="text" name="option-value" id="option-value" class="form-control" />
1717
                        </div>
1718
                    </div>
16891 efrain 1719
                    <div class="modal-footer text-right">
174 geraldo 1720
                        <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 1721
                        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
174 geraldo 1722
                    </div>
1723
                </div>
1724
            </form>
1725
        </div>
1726
    </div>
1727
 
135 geraldo 1728
    <!-- End Modal Options -->
153 geraldo 1729
 
180 geraldo 1730
    <!---Template Sections --->
1731
    <script id="sectionTemplate" type="text/x-jsrender">
1732
    <div class="panel panel-default" id="panel-{{:slug_section}}">
1733
        <div class="panel-heading">
16845 efrain 1734
            <h6 class="panel-title">
180 geraldo 1735
                <a class="accordion-toggle" data-toggle="collapse" aria-expanded="true" data-parent="#panel-{{:slug_section}}" href="#collapse-{{:slug_section}}">
1736
                    <span class="section-name{{:slug_section}}">
1737
                        {{:name}}
1738
                    </span>
1739
                </a>
16845 efrain 1740
            </h6>
180 geraldo 1741
        </div>
1742
        <div id="collapse-{{:slug_section}}" class="panel-collapse in collapse show">
1743
            <div class="panel-body">
463 geraldo 1744
                <div class="table-responsive">
1745
                    <table class="table table-bordered">
180 geraldo 1746
                        <thead>
1747
                            <tr>
224 geraldo 1748
                                <th style="width: 10%;">LABEL_ELEMENT</th>
1749
                                <th style="width: 50%;">LABEL_TEXT</th>
1750
                                <th style="width: 10%;">LABEL_VALUE</th>
1751
                                <th style="width: 10%;">LABEL_TYPE</th>
1752
                                <th style="width: 20%;">LABEL_ACTIONS</th>
180 geraldo 1753
                            </tr>
1754
                        </thead>
1755
                        <tbody>
1756
                            <tr class="tr-section">
1757
                                <td class="text-left">LABEL_SECTION</td>
1758
                                <td class="text-left">{{:name}}</td>
1759
                                <td>{{:value}}</td>
1760
                                <td></td>
1761
                                <td>
1762
                                    <button class="btn btn-default btn-edit-section" data-section="{{:slug_section}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_SECTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_SECTION </button>
1050 geraldo 1763
                                    <button class="btn btn-default btn-delete-section" data-section="{{:slug_section}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_SECTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_SECTION </button>
1764
                                    <button class="btn btn-default btn-add-question" data-section="{{:slug_section}}" data-toggle="tooltip"  data-original-title="LABEL_ADD  LABEL_QUESTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD  LABEL_QUESTION </button>
180 geraldo 1765
                                </td>
1766
                            </tr>
1767
                            {{for questions}}
1768
                            <tr class="tr-question">
1769
                                <td class="text-left">--LABEL_QUESTION</td>
1770
                                <td class="text-left">
223 geraldo 1771
                                    {{:~removeTags(text)}}
180 geraldo 1772
                                </td>
1773
                                <td><font color="red">{{:value}}</font></td>
1774
                                <td class="text-capitalize">
1775
                                    {{if type == 'open'}} LABEL_OPEN {{/if}}
1776
                                    {{if type == 'simple'}} Simple {{/if}}
1777
                                    {{if type == 'multiple'}} Multiple {{/if}}
1778
                                    {{if type == 'rating-open'}} LABEL_RATING_OPEN {{/if}}
1779
                                    {{if type == 'rating-range'}} LABEL_RATING_RANGE {{/if}}
1780
                                </td>
1781
                                <td>
1050 geraldo 1782
                                    <button class="btn btn-default btn-edit-question" data-section="{{:slug_section}}" data-question="{{:slug_question}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_QUESTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_QUESTION</button>
1783
                                    <button class="btn btn-default btn-delete-question" data-section="{{:slug_section}}" data-question="{{:slug_question}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_QUESTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_QUESTION</button>
1784
 
229 geraldo 1785
                                    {{if type == 'simple' || type == 'rating-open' || type=='multiple' }}
1050 geraldo 1786
                                    <button class="btn btn-default btn-add-option" data-section="{{:slug_section}}" data-question="{{:slug_question}}" data-toggle="tooltip"  data-original-title="LABEL_ADD  LABEL_OPTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD  LABEL_OPTION</button>
229 geraldo 1787
                                    {{/if}}
1050 geraldo 1788
 
180 geraldo 1789
                                </td>
1790
                            </tr>
1791
                            {{for options}}
1792
                            <tr class="tr-option">
1793
                                <td class="text-left">---LABEL_OPTION</td>
1794
                                <td class="text-left">
223 geraldo 1795
                                    {{:~removeTags(text)}}
180 geraldo 1796
                                </td>
1797
                                <td>
153 geraldo 1798
 
186 geraldo 1799
                                    {{if ~getType( slug_section, slug_question) == 'multiple' || ~getType( slug_section, slug_question) == 'rating-open'  }}
1800
                                    {{:value}}
1801
                                    {{/if}}
180 geraldo 1802
                                </td>
1803
                                <td class="text-left">
231 geraldo 1804
                                    {{if ~getType( slug_section, slug_question) != 'rating-open'}}
186 geraldo 1805
                                    {{if correct == 1}}
1806
                                    <font color="green">LABEL_CORRECT</font>
1807
                                    {{/if}}
1808
                                    {{if correct == 0}}
1809
                                    <font color="red">LABEL_FAIL</font>
1810
                                    {{/if}}
227 geraldo 1811
                                    {{/if}}
180 geraldo 1812
                                </td>
1813
                                <td>
1050 geraldo 1814
                                    <button class="btn btn-default btn-edit-option" data-section="{{:slug_section}}" data-question="{{:slug_question}}" data-slug="{{:slug_option}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_OPTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_OPTION</button>
1815
                                    <button class="btn btn-default btn-delete-option" data-section="{{:slug_section}}" data-question="{{:slug_question}}" data-slug="{{:slug_option}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_OPTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_OPTION</button>
180 geraldo 1816
                                </td>
1817
                            </tr>
1818
                            {{/for}}
1819
                            {{/for}}
1820
                        </tbody>
1821
                    </table>
1822
                </div>
1823
            </div>
1824
        </div>
1825
    </div>
1826
    </script>
1827
 
1828
    <!-- End Template Sections-->
1829
 
119 steven 1830
</section>