Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 165 | Rev 167 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

<?php
$acl = $this->viewModel()->getRoot()->getVariable('acl');
$currentUser = $this->currentUserHelper();

$roleName = $currentUser->getUserTypeId();

$routeAdd = $this->url('self-evaluation/forms/add');
$routeDatatable = $this->url('self-evaluation/forms');
$routeDashboard = $this->url('dashboard');

$allowAdd = $acl->isAllowed($roleName, 'self-evaluation/forms/add') ? 1 : 0;
$allowEdit = $acl->isAllowed($roleName, 'self-evaluation/forms/edit') ? 1 : 0;
$allowDelete = $acl->isAllowed($roleName, 'self-evaluation/forms/delete') ? 1 : 0;


$this->inlineScript()->appendFile($this->basePath('plugins/ckeditor/ckeditor.js'));


$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));


$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));

$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));

$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));


$this->headLink()->appendStylesheet($this->basePath('plugins/select2/css/select2.min.css'));
$this->headLink()->appendStylesheet($this->basePath('plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css'));

$this->inlineScript()->appendFile($this->basePath('plugins/select2/js/select2.full.min.js'));

$this->inlineScript()->appendFile($this->basePath('plugins/moment/moment-with-locales.min.js'));
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));


$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));

$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-checkbox/awesome-bootstrap-checkbox.css'));
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-input-number/input-number-format.jquery.js'));

// bootbox Alert //
$this->inlineScript()->appendFile($this->basePath('plugins/bootbox/bootbox.min.js'));

// JsRender //
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.min.js'));

$status_active = \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_ACTIVE;
$status_inactive = \LeadersLinked\Model\CompanySelfEvaluationForm::STATUS_INACTIVE;

$lang_es = \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_SPANISH;
$lang_en = \LeadersLinked\Model\CompanySelfEvaluationForm::LANGUAGE_ENGLISH;

                        
$this->inlineScript()->captureStart();
echo <<<JS
                const classFormGenerator = function() {
                        this.id                                 = 0,
                        this.table                              = '',
                        this.name                               = '',
                        this.text                               = '',
                        this.status                             = 'a',
                        this.sections                   = [],
                        this.clear = function() 
                        {
                                this.sections = [];
                                this.render();
                        },
                        this.renderSection = function(section_slug)
                        {
                        
                                var s = '';
                                for(i = 0; i < this.sections.length; i++)
                                {
                                        if(section_slug !=  this.sections[i].slug_section) {
                                                continue;
                                        }                               
                                        

                                        for(j = 0; j < this.sections[i].questions.length; j++)
                                        {
                                                this.sections[i].questions[j].position = j;

                                                
                                                if(this.sections[i].questions[j].type == 'simple' || this.sections[i].questions[j].type == 'multiple'|| this.sections[i].questions[j].type == 'rating-open') {
                                                        
                                                                
                                                        this.sections[i].questions[j].options.sort(function(a, b) {
                                                                                if (a.position > b.position) {
                                                                                                return 1;
                                                                                }
                                                                                if (a.position < b.position) {
                                                                                        return -1;
                                                                                }
                                                                                return 0;
                                                                        });
                                                                
                                                        
                                                        for(k = 0; k < this.sections[i].questions[j].options.length; k++)
                                                        {
                                                                this.sections[i].questions[j].options[k].position = j;
                                                        }
                                                }
                                        }
                                }
                                
                                $('[data-toggle="tooltip"]').tooltip();
                        },
                        
                        
                        
                        this.render = function() 
                        {
                                $('#accordion').empty();

                                this.sections.sort(function(a, b) {
                                        if (a.position > b.position) {
                                                        return 1;
                                        }
                                        if (a.position < b.position) {
                                                return -1;
                                        }
                                        return 0;
                                });
                                
                                var s = '';
                                for(i = 0; i < this.sections.length; i++)
                                {
                                        this.sections[i].position = i;

                                        this.sections[i].questions.sort(function(a, b) {
                                                if (a.position > b.position) {
                                                                return 1;
                                                }
                                                if (a.position < b.position) {
                                                        return -1;
                                                }
                                                return 0;
                                        });
                                        
                                        
                                        for(j = 0; j < this.sections[i].questions.length; j++)
                                        {
                                                this.sections[i].questions[j].position = j;

                                        
                                                if(this.sections[i].questions[j].type == 'simple' || this.sections[i].questions[j].type == 'multiple'|| this.sections[i].questions[j].type == 'rating-open') {
                                                        
                                                                
                                                        this.sections[i].questions[j].options.sort(function(a, b) {
                                                                                if (a.position > b.position) {
                                                                                                return 1;
                                                                                }
                                                                                if (a.position < b.position) {
                                                                                        return -1;
                                                                                }
                                                                                return 0;
                                                                        });
                                                                
                                                        
                                                        for(k = 0; k < this.sections[i].questions[j].options.length; k++)
                                                        {
                                                                this.sections[i].questions[j].options[k].position = j;
                                                        }
                                                }

                                        }
                                        
                                        
                                }

                                
                                $('[data-toggle="tooltip"]').tooltip();

                        },

                        this.addSection = function (name, text, value)
                        {
                                var d = new Date();
                                        var slug = 'section' + d.getTime();
                                        
                                        var position = 0;
                                        $.each(this.sections, function(index, section) {
                                                if(position < section.position) {
                                                        position = section.position;
                                                }
                                        });
                                        position++;

                                var section = {
                                        'slug_section'          : slug,
                                        'name'          : name,
                                        'text'          : text,
                                        'value'         : value,
                                        'position'      : position,
                                        'questions' : [],
                                }

                                this.sections.push(section);
                        },
                        this.editSection = function (slug, name, text, value)
                        {
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++) 
                                {
                                                if(slug == this.sections[i].slug_section) {
                                                        this.sections[i].name = name;
                                                        this.sections[i].text = text;
                                                        this.sections[i].value = value;
                                                        renderTable = true;
                                                        
                                                        break;
                                                }
                                }
                                if(renderTable) {
                                        this.renderSection(slug);
                                }

                                
                        },
                        this.deleteSection = function(slug)
                        {
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++) 
                                {
                                                if(slug == this.sections[i].slug_section) {
                                                        this.sections.splice(i, 1);
                                                        
                                                        renderTable = true;
                                                        break;
                                        }

                                
                                }
                                if(renderTable) {
                                        $('#panel' + slug).remove();
                                }
                        },
                        this.addQuestion = function (section_slug, text, value, type, maxlength, multiline, range) 
                        {
                                var d = new Date();
                                var slug_question = 'question' + d.getTime();
                                        
                                var position = 0;
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++)
                                {
                                        if(section_slug == this.sections[i].slug_section) {
                                                $.each(this.sections[i].questions, function(index, question) {
                                                        if(position < question.position) {
                                                                position = question.position;
                                                        }
                                                });
                                                position++;
                                                        
                                                var question = {
                                                        'section_slug': section_slug,
                                                        'slug_question' : slug_question,
                                                                'text' : text,
                                                                'value' : value,
                                                                'type' : type,
                                                                'position' : position,
                                                                'maxlength' :maxlength,
                                                                'multiline' : multiline,
                                                                'range' : range,
                                                                'options' : [],
                                                        }
                                                this.sections[i].questions.push(question);
                                                renderTable = true;
                                                break;
                                        }
                                }
                                        
                                if(renderTable) {
                                        this.renderSection(section_slug);
                                }
                        },
                        this.editQuestion = function(section_slug, question_slug, text, value, type, maxlength, multiline, range) 
                        {
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++)
                                {
                                        if(section_slug == this.sections[i].slug_section) {
                                                for(j = 0; j < this.sections[i].questions.length; j++) {
                                                        if(question_slug == this.sections[i].questions[j].slug_question) {
                                                                this.sections[i].questions[j].text      = text,
                                                                this.sections[i].questions[j].value     = value,
                                                                this.sections[i].questions[j].type      = type;
                                                                        
                                                                if(type == 'open') {
                                                                        this.sections[i].questions[j].maxlength = maxlength;
                                                                        this.sections[i].questions[j].multiline = multiline;
                                                                        this.sections[i].questions[j].options   = [];
                                                                } else {
                                                                        this.sections[i].questions[j].maxlength = 0;
                                                                        this.sections[i].questions[j].multiline = 0;
                                                                }

                                                                        if(type == 'rating-range') {
                                                                                this.sections[i].questions[j].range = range;
                                                                        } else {
                                                                                this.sections[i].questions[j].range = 0;
                                                                        }
                                                                renderTable = true;
                                                                break;
                                                        }
                                                }
                                        }
                                        if(renderTable) {
                                                break;
                                        }
                                }
                                if(renderTable) {
                                        this.renderSection(section_slug);
                                }
                        },
                        this.deleteQuestion = function(section_slug, question_slug)
                        {
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++) 
                                {
                                                if(section_slug == this.sections[i].slug_section) {
                                                        for(j = 0; j < this.sections[i].questions.length; j++) {
                                                        if(question_slug == this.sections[i].questions[j].slug_question) {
                                                                        this.sections[i].questions.splice(j, 1);
                                                                                renderTable = true;
                                                                                break;
                                                        }
                                                }
                                        }
                                                
                                        if(renderTable) {
                                                break;
                                        }
                                }
                                if(renderTable) {
                                        this.renderSection(section_slug);
                                }
                        },
                        this.addOption = function (section_slug, question_slug, text, correct, value) 
                        {
                                var d = new Date();
                                var slug_option = 'option' + d.getTime();
                                
                                var position = 0;
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++)
                                {
                                        if(section_slug == this.sections[i].slug_section) {
                                                for(j = 0; j < this.sections[i].questions.length; j++) {
                                                        if(question_slug == this.sections[i].questions[j].slug_question) {
                                                                $.each(this.sections[i].questions[j].options, function(index, option) {
                                                                                if(position < option.position) {
                                                                                        position = option.position;
                                                                                }
                                                                        });
                                                                        position++;
                                                                                
                                                                        var option = {
                                                                                'slug_section' : slug_section,
                                                                                'slug_question' : slug_question,
                                                                                'slug_option' : slug_option,
                                                                                        'text' : text,
                                                                                        'correct' : correct,
                                                                                        'value' : value
                                                                                }

                                                                                this.sections[i].questions[j].options.push(option);
                                                                        renderTable = true;
                                                                        break;
                                                        }
                                                                
                                                                        if(renderTable) {
                                                                break;
                                                        }
                                                }
                                        }
                                }
                                if(renderTable) {
                                        this.renderSection(section_slug);
                                }
                        },
                        this.editOption = function(section_slug, question_slug, option_slug, text, correct, value) 
                        {
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++)
                                {
                                        if(section_slug == this.sections[i].slug_section) {
                                                for(j = 0; j < this.sections[i].questions.length; j++) {
                                                        if(question_slug == this.sections[i].questions[j].slug_question) {
                                                                for(k = 0; k < this.sections[i].questions[j].options.length; k++) {
                                                                        if(option_slug == this.sections[i].questions[j].options[k].slug_option) {
                                                                                this.sections[i].questions[j].options[k].text = text;
                                                                                this.sections[i].questions[j].options[k].correct = correct;
                                                                                this.sections[i].questions[j].options[k].value = value;
                                                                                renderTable = true;
                                                                                                break;
                                                                        }
                                                                }
                                                        }
                                                                        if(renderTable) {
                                                                break;
                                                        }
                                                }
                                        }
                                                if(renderTable) {
                                                        break;
                                                }
                                }
                                        
                                if(renderTable) {
                                        this.renderSection(section_slug);
                                }
                        },
                        this.deleteOption = function(section_slug, question_slug, option_slug)
                        {
                                var renderTable = false;
                                for(i = 0; i < this.sections.length; i++) 
                                {
                                                if(section_slug == this.sections[i].slug_section) {
                                                        for(j = 0; j < this.sections[i].questions.length; j++) {
                                                        if(question_slug == this.sections[i].questions[j].slug_question) {
                                                                for(k = 0; k < this.sections[i].questions[j].options.length; k++) {
                                                                        if(option_slug == this.sections[i].questions[j].options[k].slug_option) {
                                                                                this.sections[i].questions[j].options.splice(k, 1);
                                                                                renderTable = true;
                                                                                                break;
                                                                        }
                                                                }
                                                        }
                                                                        if(renderTable) {
                                                                break;
                                                        }
                                                }
                                        }
                                                
                                        if(renderTable) {
                                                break;
                                        }
                                }
                                if(renderTable) {
                                        this.renderSection(section_slug);
                                }
                        }
                }

                function htmlEntities(str) {
                                return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
                }
    jQuery( document ).ready(function( $ ) {
                        var objFormGenerator = new classFormGenerator();
        objFormGenerator.render();
        var allowEdit   = $allowEdit;
        var allowDelete = $allowDelete;
        
        var tableForm = $('#gridTable').dataTable( {
                        'processing': true,
                        'serverSide': true,
                        'searching': true,
                        'order': [[ 0, 'asc' ]],
                        'ordering':  true,
                        'ordenable' : true,
                        'responsive': true,
                        'select' : false,
                        'paging': true,
                        'pagingType': 'simple_numbers',
                        'ajax': {
                                'url' : '$routeDatatable',
                                'type' : 'get',
                                'beforeSend': function (request) {
                                                NProgress.start();
                                },
                                'dataFilter': function(response) {
                                                var response = jQuery.parseJSON( response );
                                                
                                                var json                = {};
                                                json.recordsTotal       = 0;
                                                json.recordsFiltered    = 0;
                                                json.data               = [];
                                                
                                                
                                                if(response.success) {
                                                                json.recordsTotal       = response.data.total;
                                                                json.recordsFiltered    = response.data.total;
                                                                json.data               = response.data.items;

                                                } else {
                                                                $.fn.showError(response.data)
                                                }
                                                
                                                return JSON.stringify( json );
                                }
                        },
                        'language' : {
                                        'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
                                        'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
                                        'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
                                        'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
                                        'sInfo':           'LABEL_DATATABLE_SINFO',
                                        'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
                                        'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
                                        'sInfoPostFix':    '',
                                        'sSearch':         'LABEL_DATATABLE_SSEARCH',
                                        'sUrl':            '',
                                        'sInfoThousands':  ',',
                                        'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
                                        'oPaginate': {
                                                        'sFirst':    'LABEL_DATATABLE_SFIRST',
                                                        'sLast':     'LABEL_DATATABLE_SLAST',
                                                        'sNext':     'LABEL_DATATABLE_SNEXT',
                                                        'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
                                        },
                                        'oAria': {
                                                        'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
                                                        'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
                                        },
                        },
                        'drawCallback': function( settings ) {
                                        NProgress.done();
                                        $('button.btn-delete').confirmation({
                                                        rootSelector: 'button.btn-delete',
                                                        title : 'LABEL_ARE_YOU_SURE',
                                                        singleton : true,
                                                        btnOkLabel: 'LABEL_YES',
                                                        btnCancelLabel: 'LABEL_NO',
                                                        onConfirm: function(value) {
                                                                        action = $(this).data('href');
                                                                        NProgress.start();
                                                                        $.ajax({
                                                                                        'dataType'  : 'json',
                                                                                        'accept'    : 'application/json',
                                                                                        'method'    : 'post',
                                                                                        'url'       :  action,
                                                                        }).done(function(response) {
                                                                                        if(response['success']) {
                                                                                                        $.fn.showSuccess(response['data']);
                                                                                                        gridTable.api().ajax.reload(null, false);
                                                                                        } else {
                                                                                                        $.fn.showError(response['data']);
                                                                                        }
                                                                        }).fail(function( jqXHR, textStatus, errorThrown) {
                                                                                        $.fn.showError(textStatus);
                                                                        }).always(function() {
                                                                                        NProgress.done();
                                                                        });
                                                        },
                                        });
                        },
                        'aoColumns': [
                                        { 'mDataProp': 'name' },
                                { 'mDataProp': 'language'},
                                        { 'mDataProp': 'status' },
                                        { 'mDataProp': 'actions' },
                ],
                        'columnDefs': [
                                        {
                                                        'targets': 0,
                                                        'className' : 'text-vertical-middle',
                                        },
                                        {
                                                        'targets': 1,
                                                        'className' : 'text-vertical-middle',
                                        },
                                        {
                                                        'targets': -2,
                                                        'orderable': false,
                                                        'className' : 'text-center',
                                                                'render' : function ( data, type, row ) {
                                                                
                                                                        checked = data == 'a' ? ' checked="checked" ' : '';
                                                                        return '<div class="checkbox checkbox-success">' +
                                                                                        '<input class="styled" type="checkbox" ' + checked + ' disabled="disabled">' +
                                                                                        '<label ></label></div>';
                                                        }
                                        },
                                        {
                                                        'targets': -1,
                                                        'orderable': false,
                                                        'render' : function ( data, type, row ) {
                                                                        s = '';
                                                                        
                                                                        if(allowEdit) {
                                                                                        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-pencil"></i> LABEL_EDIT </button>&nbsp;';
                                                                        }
                                                                        if(allowDelete) {
                                                                                        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;';
                                                                        }
                                                                        return s;
                                                        }
                                        }
                                ],
        });


        $('body').on('click', 'a.btn-delete-form',function(e) {
                e.preventDefault();
                form_id =  $(this).data('id')
                
                bootbox.confirm({
                    title: "LABEL_DELETE LABEL_FORM",
                    message: "LABEL_QUESTION_DELETE",
                    buttons: {
                        cancel: {
                            label: '<i class="fa fa-times"></i> LABEL_CANCEL'
                        },
                        confirm: {
                            label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
                        }
                    },
                    callback: function (result) {
                            if(result) {
                        $.ajax({
                        'dataType': 'json',
                        'method': 'post',
                        'url' :  'ajax.<?php echo $this->module; ?>.php?action=delete',
                        'data' :{
                            'form-id' : form_id
                        },
                    }).done(function(response) {
    
                        if(response['success']) {
                                $.fn.showSuccess(response['message']);
                                tableForm.fnDraw();
                        } else {
                                $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
                        }
                    }).fail(function( jqXHR, textStatus, errorThrown) {
                                        $.fn.showError(textStatus);
                    });
                            }
                    }
                });
                

    });

    $(document).on('click','[data-action="delete"]',function(){

        bootbox.confirm({
                    title: "LABEL_DELETE LABEL_FORMS_2",
                    message: "LABEL_QUESTION_DELETE",
                    buttons: {
                        cancel: {
                            label: '<i class="fa fa-times"></i> LABEL_CANCEL'
                        },
                        confirm: {
                            label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
                        }
                    },
                    callback: function (result) {
                            if(result) {
                                var d = currentSelected();      
                        $.ajax({
                        'dataType': 'json',
                        'method': 'post',
                        'url' :  'ajax.<?php echo $this->module; ?>.php?action=delete-selected',
                        'data' :{
                                 selected : d
                        },
                    }).done(function(response) {
    
                        if(response['success']) {
                                $.fn.showSuccess(response['message']);
                                tableForm.fnDraw();
                        } else {
                                $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
                        }
                    }).fail(function( jqXHR, textStatus, errorThrown) {
                                        $.fn.showError(textStatus);
                    });
                            }
                    }
                });
        
    });


    $('body').on('switch-change', 'input[type="checkbox"].make-switch-form', function(e) {
                e.preventDefault();
                e.stopPropagation();

                form_id =  $(this).data('id')
                form_status = $(this).prop('checked') ? 'A' : 'D';
                
                $.ajax({
                'dataType': 'json',
            'method': 'post',
            'url' :  'ajax.<?php echo $this->module; ?>.php?action=status',
            'data' :{
                'form-id' : form_id,
                'form-status' : form_status
            },
        }).done(function(response) {
                if(response['success']) {
                        $.fn.showSuccess(response['message']);
               } else {
                $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
            }
         }).fail(function( jqXHR, textStatus, errorThrown) {
                        $.fn.showError(textStatus);
        })
    }); 

        $('body').on('click', 'button.btn-edit-form',function(e) {
                e.preventDefault();
                form_id =  $(this).data('id')
    var action = $(this).data('href');
                $.ajax({
                        'dataType'  : 'json',
                        'accept'    : 'application/json',
                        'method'    : 'get',
                        'url'       :  action,
                }).done(function(response) {
                        if(response['success']) {
                                        validatorForm.resetForm();

                                        $('#form-main #form-id' ).val(response['id']),
                                        $('#form-main #form-continue').val('0');
                                        $('#form-main #form-name' ).val(response['name']),


                                        instanceName = 'form-description'; 
                                        let editor = CKEDITOR.instances[instanceName ];
                                        editor.setData(response['description'], function() {
                                                        editor.focus();
                                        });
                                        
                                        
                                        instanceName = 'form-text'; 
                                        CKEDITOR.instances[instanceName ].setData(response['text']);

                                        $('#form-main #form-language' ).val(response['language']),
                                        $('#form-main #form-status' ).val(response['status']);

                                        objFormGenerator.clear();
                                        objFormGenerator.sections = response['sections'] || [];
                                        objFormGenerator.render();
                                        $('#row-forms').hide();
                                        $('#row-edit').show();

                                        $('#form-main #form-name').focus();
                                        
                                } else {
                                        $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
                                }
                        }).fail(function( jqXHR, textStatus, errorThrown) {
                                $.fn.showError(textStatus);
                        });
    });

         $(document).on('click','[data-type="select_all"]',function(){

                if($('input[name="select_all"]:checked').val() == 'all'){
                    $('[data-type="select"]').prop('checked', true);
                    $('[data-action="delete"]').removeClass('hide');    
                }else{
                    $('[data-type="select"]').prop('checked', false);    
                    $('[data-action="delete"]').addClass('hide');
                }
            });

            function getLength(){
                return $('[data-type="select"]').length;
            }

            function currentSelected(){
                var selected = [];
                $.each($("input[name='select[]']:checked"), function(){            
                    selected.push($(this).val());
                });

                return selected;        
            }

            $(document).on('change',"input[name='select[]']",function(){
                var c = currentSelected();
                var cc = getLength();

                        
                if(c.length == cc){
                    if($('[data-action="delete"]').hasClass('hide')){
                        $('[data-action="delete"]').removeClass('hide');
                    }
                    return true;
                }else{
                    $('input[name="select_all"]').prop('checked', false);
                }

                if(c.length > 0){
                    if($('[data-action="delete"]').hasClass('hide')){
                        $('[data-action="delete"]').removeClass('hide');
                    }
                }else{
                    if(!$('[data-action="delete"]').hasClass('hide')){
                        $('[data-action="delete"]').addClass('hide');
                    }
                }
            });

            var form3 = $('#form_sample_3');
        var error3 = $('.alert-danger', form3);
        var success3 = $('.alert-success', form3);

        //IMPORTANT: update CKEDITOR textarea with actual content before submit
        $( "#form-main" ).on('submit', function() {
                for(var instanceName in CKEDITOR.instances) {
                        CKEDITOR.instances[instanceName].updateElement();
                }
        })
            
        var validatorForm = $( "#form-main" ).validate( {
        ignore: [],
        errorClass: 'help-block',
        errorElement: 'span',
                rules: {
                        'form-name':  {
                                required: true,
                                minlength: 2,
                                maxlength: 50
                        },
                        'form-description' : {
                                required: true,
                        },
                        'form-text' : {
                                required: true,
                        },
                        'form-language' : {
                                required: true,
                        },
                        'forrm-status' : {
                                required: true,
                        },
                },
        highlight: function (element) {
            $(element).closest('.form-group').addClass('has-error');
        },
        unhighlight: function (element) {
            $(element).closest('.form-group').removeClass('has-error');
        },
        errorPlacement: function (error, element) {
            if (element.attr("data-error-container")) {
                error.appendTo(element.attr("data-error-container"));
            } else {
                error.insertAfter(element);
            }
        },
        invalidHandler: function(form, validator) {
            if (!validator.numberOfInvalids())
                return;
            $('html, body').animate({
                scrollTop: $(validator.errorList[0].element).offset().top - 100
            }, 1000);
        },
                submitHandler: function(form) {
                   
                    var error = false;
                    if(objFormGenerator.sections.length == 0) {
                        $.fn.showError('ERROR_SECCTIONS');
                        error = true;
                    } else {
                        
                        for(i = 0; i < objFormGenerator.sections.length; i++) 
                        {
                                
                                if(objFormGenerator.sections[i].questions.length == 0) {
                                        $.fn.showError('ERROR_QUESTIONS'.replace('%s', objFormGenerator.sections[i].name ));
                                        break;
                                }
                                
                                var valueSection = parseInt(objFormGenerator.sections[i].value);
                                var totalValueQuestion = 0;
                                
                                
                                for(j = 0; j < objFormGenerator.sections[i].questions.length; j++)
                                {
                                        valueQuestion = parseInt(objFormGenerator.sections[i].questions[j].value);
                                        totalValueQuestion = totalValueQuestion + valueQuestion;
                                        if(objFormGenerator.sections[i].questions[j].type == 'simple' 
                                                || objFormGenerator.sections[i].questions[j].type == 'multiple' 
                                                || objFormGenerator.sections[i].questions[j].type == 'rating-open' ) {
                                                
                                                var questionNumber = j + 1;
                                                var numberCorrect = 0;
                                                
                                                
                                                if(objFormGenerator.sections[i].questions[j].options.length == 0) {

                                                                $.fn.showError('ERROR_OPTIONS'.replace('%s', objFormGenerator.sections[i].name ).replace('%n', questionNumber));
                                                                error = true;
                                                                return false;
                                                                        break;
                                                }
                                                
                                                var totalOption = 0;
                                                var maxOption = 0;
                                                for(k = 0;  k < objFormGenerator.sections[i].questions[j].options.length; k++)
                                                {
                                                        if(objFormGenerator.sections[i].questions[j].type == 'simple' || objFormGenerator.sections[i].questions[j].type == 'multiple' ) {
                                                        if(objFormGenerator.sections[i].questions[j].options[k].correct == 1) {
                                                                numberCorrect++;
                                                        }
                                                        }

                                                        if(objFormGenerator.sections[i].questions[j].type == 'multiple' && objFormGenerator.sections[i].questions[j].options[k].correct == 1) {
                                                                totalOption = totalOption + parseInt(objFormGenerator.sections[i].questions[j].options[k].value);
                                                        }

                                                        if(objFormGenerator.sections[i].questions[j].type == 'rating-open') {
                                                                if(parseInt(objFormGenerator.sections[i].questions[j].options[k].value) > maxOption) {
                                                                                        maxOption = parseInt(objFormGenerator.sections[i].questions[j].options[k].value);
                                                                }
                                                        }
                                                        
                                                }

                                                if(objFormGenerator.sections[i].questions[j].type == 'simple' || objFormGenerator.sections[i].questions[j].type == 'multiple' ) {
                                                
                                                if(numberCorrect == 0) {
                                                        $.fn.showError('ERROR_OPTIONS_CORRECT'.replace('%s', objFormGenerator.sections[i].name ).replace('%n', questionNumber));
                                                        error = true;
                                                                        return false;
                                                        break;
                                                }
                                                if(objFormGenerator.sections[i].questions[j].type == 'simple' && numberCorrect > 1) {
                                                        $.fn.showError('ERROR_OPTIONS_DUPLICATE_CORRECT'.replace('%s', objFormGenerator.sections[i].name ).replace('%n', questionNumber));
                                                        error = true;
                                                                        return false;
                                                        break;
                                                }
                                                if(objFormGenerator.sections[i].questions[j].type == 'multiple' && numberCorrect == 1) {
                                                        $.fn.showError('ERROR_OPTIONS_ONE_CORRECT'.replace('%s', objFormGenerator.sections[i].name ).replace('%n', questionNumber));
                                                        error = true;
                                                                        return false;
                                                        break;
                                                }
                                                }

                                                        if(objFormGenerator.sections[i].questions[j].type == 'multiple' && totalOption > valueQuestion ) {

                                                                $.fn.showError('ERROR_OPTIONS_SUM_VALUES'.replace('%s', objFormGenerator.sections[i].name ).replace('%n', questionNumber));
                                                        error = true;
                                                                return false;
                                                        break;
                                                }

                                                if(objFormGenerator.sections[i].questions[j].type == 'rating-open' && maxOption > valueQuestion ) {
                                                                $.fn.showError('ERROR_OPTIONS_MAX_OPTION'.replace('%s', objFormGenerator.sections[i].name ).replace('%n', questionNumber));
                                                        error = true;
                                                                return false;
                                                        break;
                                                }
                                                }
        
                                }

                                if(valueSection != totalValueQuestion) {
                                        $.fn.showError('ERROR_VALUE_SECTIONS'.replace('%s', objFormGenerator.sections[i].name ));
                                        error = true;
                                                return false;
                                        break;
                                        }
                                }

                                

                        if(error) {
                                return false;
                        } else {


                                var formId              = parseInt($('#form-main #form-id' ).val());
                                var formContinue = parseInt($('#form-main #form-continue' ).val());
                                
                                var data = {
                                'id'    : formId,
                                        'name' : $('#form-main #form-name' ).val(),
                                        'description' : $('#form-main #form-description' ).val(),
                                        'text' : $('#form-main #form-text' ).val(),
                                        'language' : $('#form-main #form-language' ).val(),
                                        'status' : $('#form-main #form-status' ).val(),
                                        'sections' : objFormGenerator.sections
                                }
                                        $.ajax({
                                                'dataType': 'json',
                                                'method': 'post',
                                                'url' :  '$routeAdd',
                                                'data' : data,
                                        }).done(function(response) {
                                                if(response['success']) {
                                                        $.fn.showSuccess(response['message']);
                                                        if(formContinue == 1) {
                                                                $('#form-main #form-id').val(response['form-id']);
                                                                $('#form-main #form-continue').val(0);
                                                        } else {
                                                                $('#row-edit').hide();
                                                                $('#row-forms').show();
                                                        }
                                                        tableForm.fnDraw();
                                                } else {
                                                        $.fn.showError(response['message'] || 'ERROR_UNKNOWN');
                                                }
                                        }).fail(function( jqXHR, textStatus, errorThrown) {
                                                $.fn.showError(textStatus);
                                        });
                                                return false;
                        }
                        }


                }
        });

        //IMPORTANT: update CKEDITOR textarea with actual content before submit
        $( "#form-section" ).on('submit', function() {
                for(var instanceName in CKEDITOR.instances) {
                        CKEDITOR.instances[instanceName].updateElement();
                }
        })
        
        var validatorFormSection = $( "#form-section" ).validate( {
        ignore: [],
        errorClass: 'help-block',
        errorElement: 'span',
                rules: {
                        'section-name':  {
                                required: true,
                                minlength: 2,
                                maxlength: 50
                        },
                        'section-text' : {
                                required: false,
                        },
                        'section-value' : {
                                required: true,
                                number: true,
                                min: 1
                        },
                },
        highlight: function (element) {
            $(element).closest('.form-group').addClass('has-error');
        },
        unhighlight: function (element) {
            $(element).closest('.form-group').removeClass('has-error');
        },
        errorPlacement: function (error, element) {
            if (element.attr("data-error-container")) {
                error.appendTo(element.attr("data-error-container"));
            } else {
                error.insertAfter(element);
            }
        },
        invalidHandler: function(form, validator) {
            if (!validator.numberOfInvalids())
                return;
            $('html, body').animate({
                scrollTop: $(validator.errorList[0].element).offset().top - 100
            }, 1000);
        },
                submitHandler: function(form) {
                    // do other things for a valid form
                    //form.submit();

                    var slug = $('#form-section #section-slug').val();
                    if(slug) {
                        objFormGenerator.editSection(
                                $('#form-section #section-slug').val(), 
                                $('#form-section #section-name').val(), 
                                $('#form-section #section-text').val(),
                                $('#form-section #section-value').val()
                                );      
                    } else {
                        objFormGenerator.addSection(
                                $('#form-section #section-name').val(), 
                                $('#form-section #section-text').val(),
                                $('#form-section #section-value').val()
                        );      
                    }
                    
                    renderData(objFormGenerator.sections);
                        $('#modal-section').modal('hide');
                        return false;
                  }
        } );

        //IMPORTANT: update CKEDITOR textarea with actual content before submit
        $( "#form-question" ).on('submit', function() {
                for(var instanceName in CKEDITOR.instances) {
                        CKEDITOR.instances[instanceName].updateElement();
                }
        })
        
        
        var validatorFormQuestion = $( "#form-question" ).validate( {
        ignore: [],
        errorClass: 'help-block',
        errorElement: 'span',
                rules: {
                        'question-text' : {
                                required: true,
                        },
                        'question-value' : {
                                required: true,
                                number: true,
                                min: 1
                        },
                        'question-type':  {
                                required: true,
                        },
                        'question-max-length' : {
                                required: true,
                                digits: true,
                                min: 0
                        },
                        'question-range' : {
                                required: true,
                                number: true,
                                min: 1
                        },
                },
        highlight: function (element) {
            $(element).closest('.form-group').addClass('has-error');
        },
        unhighlight: function (element) {
            $(element).closest('.form-group').removeClass('has-error');
        },
        errorPlacement: function (error, element) {
            if (element.attr("data-error-container")) {
                error.appendTo(element.attr("data-error-container"));
            } else {
                error.insertAfter(element);
            }
        },
        invalidHandler: function(form, validator) {

            
            if (!validator.numberOfInvalids())
                return;
            $('html, body').animate({
                scrollTop: $(validator.errorList[0].element).offset().top - 100
            }, 1000);
        },
                submitHandler: function(form) {
                    
                
                    if($('#form-question #question-slug').val()) {
                    
                        
                        objFormGenerator.editQuestion(
                                $('#form-question #question-section').val(), 
                                $('#form-question #question-slug').val(),
                                $('#form-question #question-text').val(), 
                                $('#form-question #question-value').val(),
                                $('#form-question #question-type').val(),
                                $('#form-question #question-max-length').val(),
                                $('#form-question #question-multiline').val(),
                                $('#form-question #question-range').val()
                                );      
                    } else {
                            
                        objFormGenerator.addQuestion(
                                $('#form-question #question-section').val(), 
                                $('#form-question #question-text').val(), 
                                $('#form-question #question-value').val(),
                                    $('#form-question #question-type').val(),
                                    $('#form-question #question-max-length').val(),
                                $('#form-question #question-multiline').val(),
                                $('#form-question #question-range').val()
                        );      
                    }
                    renderData(objFormGenerator.sections);
                        $('#modal-question').modal('hide');
                        return false;
                  }
        } );

        //IMPORTANT: update CKEDITOR textarea with actual content before submit
        $( "#form-option" ).on('submit', function() {
                for(var instanceName in CKEDITOR.instances) {
                        CKEDITOR.instances[instanceName].updateElement();
                }
        })
        
        var validatorFormOption = $( "#form-option" ).validate( {
        ignore: [],
        errorClass: 'help-block',
        errorElement: 'span',
                rules: {
                        'option-text' : {
                                required: true,
                        },
                'option-value' : {
                                required: true,
                                number: true,
                                min: 1
                }
                },
        highlight: function (element) {
            $(element).closest('.form-group').addClass('has-error');
        },
        unhighlight: function (element) {
            $(element).closest('.form-group').removeClass('has-error');
        },
        errorPlacement: function (error, element) {
            if (element.attr("data-error-container")) {
                error.appendTo(element.attr("data-error-container"));
            } else {
                error.insertAfter(element);
            }
        },
        invalidHandler: function(form, validator) {
            if (!validator.numberOfInvalids())
                return;
            $('html, body').animate({
                scrollTop: $(validator.errorList[0].element).offset().top - 100
            }, 1000);
        },
                submitHandler: function(form) {
                    

                    if($('#form-option #option-slug').val()) {
                        objFormGenerator.editOption(
                                $('#form-option #option-section').val(), 
                                $('#form-option #option-question').val(), 
                                $('#form-option #option-slug').val(),
                                $('#form-option #option-text').val(), 
                                $('#form-option #option-correct').val(),
                                $('#form-option #option-value').val()
                                );      
                    } else {
                        objFormGenerator.addOption(
                                $('#form-option #option-section').val(), 
                                $('#form-option #option-question').val(), 
                                $('#form-option #option-text').val(), 
                                $('#form-option #option-correct').val(),
                                $('#form-option #option-value').val()
                        );      
                    }
                        renderData(objFormGenerator.sections);
                        $('#modal-option').modal('hide');
                        return false;
                  }
        } );
        
        $('body').on('click', 'button[id="btn-add-section"]', function(e){
                e.preventDefault();
                
                validatorFormSection.resetForm();
                $('#form-section #section-slug').val('');
                $('#form-section #section-name').val('');

                instanceName = 'section-text'; 
                let editor = CKEDITOR.instances[instanceName ];
                editor.setData('', function() {
                    editor.focus();
                });

        
                $('#form-section #section-value').val('0');
                $('#modal-section h4[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
                $('#modal-section').modal('show');
        });
        
        $('body').on('click', 'button.btn-edit-section', function(e){
            e.preventDefault();
            
            var slug = $(this).data('slug');
            var section;
            var showForm = false;
            
            for(i = 0; i < objFormGenerator.sections.length; i++) {
                section = objFormGenerator.sections[i];
                
                if(slug == section.slug) {

                                validatorFormSection.resetForm();
                        $('#form-section #section-slug').val(section.slug);
                        $('#form-section #section-name').val(section.name);
        
                        instanceName = 'section-text'; 
                        let editor = CKEDITOR.instances[instanceName ];
                        editor.setData( section.text, function() {
                            editor.focus();
                        });
                                
                                $('#form-section #section-value').val(section.value);

                
                                showForm = true;
                                break;
                }
            }
            
            if(showForm) {
                $('#modal-section h4[class="modal-title"]').html('LABEL_EDIT LABEL_SECTION');
                        $('#modal-section').modal('show');
            }
            
        });
        
        $('body').on('click', 'button.btn-delete-section', function(e){
                e.preventDefault();
                var slug = $(this).data('slug');

                bootbox.confirm({
                    title: "LABEL_DELETE LABEL_SECTION",
                    message: "LABEL_QUESTION_DELETE",
                    buttons: {
                        cancel: {
                            label: '<i class="fa fa-times"></i> LABEL_CANCEL'
                        },
                        confirm: {
                            label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
                        }
                    },
                    callback: function (result) {
                        if (result) {
                                        objFormGenerator.deleteSection(slug);
                                        renderData(objFormGenerator.sections);
                                }
                    }
                });
                

        
        });
        
        
        $('body').on('click', 'button.btn-add-question', function(e){
                e.preventDefault();
                
                validatorFormQuestion.resetForm();
                var slug = $(this).data('slug');
                
                $('#form-question #question-section').val(slug);
                $('#form-question #question-slug').val('');

                instanceName = 'question-text'; 
                let editor = CKEDITOR.instances[instanceName ];
                editor.setData('', function() {
                    editor.focus();
                });


                $('#form-question #question-value').val('0');
                $('#form-question #question-type').val($('#form-question #question-type option:first').val());
                
                $('#form-question #question-max-length').val('0');
                $('#form-question #question-max-length').parent().show();
                
                $('#form-question #question-multiline').val('0');
                $('#form-question #question-multiline').parent().show();

                $('#form-question #question-range').val('10');
                $('#form-question #question-range').parent().hide();
                
                $('#modal-question h4[class="modal-title"]').html('LABEL_ADD LABEL_QUESTION');
                $('#modal-question').modal('show');
                
        });
        

        
        $('body').on('click', 'button.btn-edit-question', function(e){
            e.preventDefault();
            
            var slug_section    = $(this).data('section');
            var slug                    = $(this).data('slug');
            var showForm                = false;
            
            for(i = 0; i < objFormGenerator.sections.length; i++) {
                
                if(slug_section == objFormGenerator.sections[i].slug_section) {
                        
                        for(j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
                                
                                if(slug == objFormGenerator.sections[i].questions[j].slug_question) {
                                        validatorFormQuestion.resetForm();
                                        
                                        $('#form-question #question-section').val(objFormGenerator.sections[i].slug_section);
                                        $('#form-question #question-slug').val(objFormGenerator.sections[i].questions[j].slug_question);

                                instanceName = 'question-text'; 
                                let editor = CKEDITOR.instances[instanceName ];
                                editor.setData( objFormGenerator.sections[i].questions[j].text, function() {
                                    editor.focus();
                                });


                                        $('#form-question #question-value').val(objFormGenerator.sections[i].questions[j].value);
                                        $('#form-question #question-type').val(objFormGenerator.sections[i].questions[j].type);
                                        
                                        
                
                                        if(objFormGenerator.sections[i].questions[j].type == 'open') {
                                                $('#form-question #question-max-length').val(objFormGenerator.sections[i].questions[j].maxlength);
                                                $('#form-question #question-max-length').parent().show();
                                                
                                                $('#form-question #question-multiline').val(objFormGenerator.sections[i].questions[j].multiline);
                                                        $('#form-question #question-multiline').parent().show();
                                        } else {
                                                $('#form-question #question-max-length').val('0');
                                                $('#form-question #question-max-length').parent().hide();
                                                
                                                $('#form-question #question-multiline').val('0');
                                                        $('#form-question #question-multiline').parent().hide();
                                        }

                                        if(objFormGenerator.sections[i].questions[j].type == 'rating-range') {
                                        $('#form-question #question-range').val(objFormGenerator.sections[i].questions[j].range);
                                                $('#form-question #question-range').parent().show();

                                        } else {
                                        $('#form-question #question-range').val('10');
                                                $('#form-question #question-range').parent().hide();
                                        }

                                        showForm = true;
                                        break;
                                        
                                }
                                
                        }
                        
                        break;
                }
            }
            
            if(showForm) {
                $('#modal-question h4[class="modal-title"]').html('LABEL_EDIT LABEL_QUESTION');
                                $('#modal-question').modal('show');
            }
            
        });
        
        
        
        
        $('body').on('click', 'button.btn-delete-question', function(e){
                e.preventDefault();
                
                var slug_section        = $(this).data('section');
                var slug                        = $(this).data('slug');

                bootbox.confirm({
                        title: "LABEL_DELETE LABEL_QUESTION",
                        message: "LABEL_QUESTION_DELETE",
                        buttons: {
                                cancel: {
                                        label: '<i class="fa fa-times"></i> LABEL_CANCEL'
                        },
                            confirm: {
                                label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
                            }
                        },
                        callback: function (result) {
                                if (result) {
                                        objFormGenerator.deleteQuestion(slug_section, slug);
                                        renderData(objFormGenerator.sections);
                                }
                        }
                });                 
        });
        
        
        $('body').on('click', 'button.btn-add-option', function(e){
                e.preventDefault();
            var slug_section    = $(this).data('section');
                var slug_question       = $(this).data('question');
                var showForm            = false;

            for(i = 0; i < objFormGenerator.sections.length; i++) {
                if(slug_section == objFormGenerator.sections[i].slug_section) {
                        for(j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
                                if(slug_question == objFormGenerator.sections[i].questions[j].slug_question) {

                                validatorFormOption.resetForm();
                                $('#form-option #option-section').val(slug_section);
                                $('#form-option #option-question').val(slug_question);
                                $('#form-option #option-slug').val('');
                                                
                                instanceName = 'option-text'; 
                                let editor = CKEDITOR.instances[instanceName ];
                                editor.setData('', function() {
                                    editor.focus();
                                });


                                $('#form-option #option-correct').val('0');
                                if(objFormGenerator.sections[i].questions[j].type == 'rating-open') {
                                $('#form-option #option-correct').parent().hide();
                        } else {
                                $('#form-option #option-correct').parent().show();
                        }
                                
                                if(objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'rating-open') {
                                        $('#form-option #option-value').val('0');
                                        $('#form-option #option-value').parent().show();
                                } else {
                                        $('#form-option #option-value').val('1');
                                        $('#form-option #option-value').parent().hide();
                                        
                        }

                                                   renderData(objFormGenerator.sections);
                                showForm = true;
                                }
                        }
                }
            }

                if(showForm) {
                $('#modal-option h4[class="modal-title"]').html('LABEL_ADD LABEL_OPTION');
                $('#modal-option').modal('show');
                }
                
        });

    /**
         * Render Sections data
         */
        const renderData = (data) => $("#rows").html($("#sectionTemplate").render(data));

        //const renderData = (data) => console.log(data);
        

        
        $('body').on('click', 'button.btn-edit-option', function(e){
            e.preventDefault();
            
            var slug_section    = $(this).data('section');
            var slug_question   = $(this).data('question');
            var slug                    = $(this).data('slug');
            var showForm                = false;
            
            for(i = 0; i < objFormGenerator.sections.length; i++) {
                if(slug_section == objFormGenerator.sections[i].slug_section) {
                        for(j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
                                if(slug_question == objFormGenerator.sections[i].questions[j].slug_question) {
                                        for(k = 0; k < objFormGenerator.sections[i].questions[j].options.length; k++) {
                                                if(slug == objFormGenerator.sections[i].questions[j].options[k].slug_option) {
                                                        validatorFormOption.resetForm();
                                                        $('#form-option #option-section').val(objFormGenerator.sections[i].slug_section);
                                                        $('#form-option #option-question').val(objFormGenerator.sections[i].questions[j].slug_question);
                                                $('#form-option #option-slug').val(objFormGenerator.sections[i].questions[j].options[k].slug_option);

                                                instanceName = 'option-text'; 
                                        let editor = CKEDITOR.instances[instanceName ];
                                        editor.setData( objFormGenerator.sections[i].questions[j].options[k].text, function() {
                                            editor.focus();
                                        });
                                                
                                                
                                                $('#form-option #option-correct').val(objFormGenerator.sections[i].questions[j].options[k].correct);
                                                if(objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'simple') {
                                                        $('#form-option #option-correct').parent().show();
                                                } else {
                                                        $('#form-option #option-correct').parent().hide();
                                        }

                                                $('#form-option #option-value').val(objFormGenerator.sections[i].questions[j].options[k].value);

                                                                if(objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'rating-open') {
                                                        $('#form-option #option-value').parent().show();
                                                                } else {
                                                                        $('#form-option #option-value').parent().hide();
                                                                }


                                                                
                                                showForm = true;
                                                break;
                                                }
                                        }
                                }
                                if(showForm) {
                                        break;
                                }
                        }
                }
                        if(showForm) {
                        break;
                }
            }
            
            if(showForm) {
                $('#modal-option h4[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
                                $('#modal-option').modal('show');
            }
        });
        
        $('body').on('click', 'button.btn-delete-option', function(e){
                e.preventDefault();
                var slug_section        = $(this).data('section');
                var slug_question       = $(this).data('question');
                    var slug                    = $(this).data('slug');


                bootbox.confirm({
                        title: "LABEL_DELETE LABEL_OPTION",
                        message: "LABEL_QUESTION_DELETE",
                        buttons: {
                                cancel: {
                                        label: '<i class="fa fa-times"></i> LABEL_CANCEL'
                        },
                                confirm: {
                                        label: '<i class="fa fa-check"></i> LABEL_ACCEPT'
                                }
                        },
                        callback: function (result) {
                                if (result) {
                                        objFormGenerator.deleteOption(slug_section, slug_question, slug);
                                        renderData(objFormGenerator.sections);
                                }
                        }
                });                         
        })

        $('#form-section #section-value').inputNumberFormat({'decimal' : 2});

        $('#form-question #question-value').inputNumberFormat({'decimal' : 2});
        $('#form-question #question-max-length').inputNumberFormat({'decimal' : 0});

        $('#form-option #option-value').inputNumberFormat({'decimal' : 2});
        
        $('#form-question #question-type').change(function(e) {
                e.preventDefault();
                
                if($('#form-question #question-type').val() == 'open') {
                        $('#form-question #question-max-length').parent().show();
                        $('#form-question #question-multiline').parent().show();
                        
                } else {
                        $('#form-question #question-max-length').val('0');
                        $('#form-question #question-max-length').parent().hide();

                        $('#form-question #question-multiline').val('0');
                        $('#form-question #question-multiline').parent().hide();
                }

                $('#form-question #question-range').val('10');
                if($('#form-question #question-type').val() == 'rating-range') {
                        $('#form-question #question-range').parent().show();
                } else {
                        $('#form-question #question-range').parent().hide();
                }


                
        });

        $('button.btn-add-form').click(function(e) {
                e.preventDefault();

                objFormGenerator.clear();
                objFormGenerator.render();
                validatorForm.resetForm();

                $('#form-main #form-id').val('0');
                $('#form-main #form-continue').val('0');
                $('#form-main #form-name').val('');

                instanceName = 'form-text'; 
                let editor = CKEDITOR.instances[instanceName ];
                editor.setData('', function() {
                    editor.focus();
                });


                instanceName = 'form-description'; 
                CKEDITOR.instances[instanceName ].setData('');
                
                $('#form-main #form-language' ).val('$lang_es'),
                $('#form-main #form-status' ).val('$status_inactive');
                
                $('#row-forms').hide();
                $('#row-edit').show();
                $('#form-main #form-name').focus();

        });

        $('button.btn-edit-cancel').click(function(e) {
                e.preventDefault();
                $('#row-edit').hide();
                $('#row-forms').show();
                
        });


        $('button.btn-form-save-continue').click(function(e) {
                e.preventDefault();
                $('#form-main #form-continue').val('1')
                $('#form-main').submit();
        });
        
        $('button.btn-form-save-close').click(function(e) {
                e.preventDefault();
                $('#form-main #form-continue').val('0')
                $('#form-main').submit();
                
        });

        $('#modal-section, #modal-question, #modal-option').modal({
                        backdrop: 'static',
                        keyboard: false,
                        show: false
                });
        });
JS;
$this->inlineScript()->captureEnd();
?>

<style type="text/css">
    tbody input[type="checkbox"]{
        margin-left: 14px;
    }
    .panel-heading .accordion-toggle:after {
        /* symbol for "opening" panels */
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        content: "\f077" ;
        float: right;        /* adjust as needed */
        color: grey;         /* adjust as needed */
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
    }
    .panel-heading .accordion-toggle.collapsed:after {
        /* symbol for "collapsed" panels */
        content: "\f078";    /* adjust as needed, taken from bootstrap.css */
    }
</style>
<!-- Content Header (Page header) -->
<section class="content-header">
    <div class="container-fluid">
        <div class="row mb-2">
            <div class="col-sm-12">
                <h1>LABEL_SELF_EVALUATION_FORMS</h1>
            </div>
        </div>
    </div>
    <!-- /.container-fluid -->
</section>
<section class="content">
    <div class="container-fluid" id="row-forms">
        <div class="row">
            <div class="col-12">
                <div class="card">
                    <div class="card-body">
                        <table id="gridTable" class="table   table-hover">
                            <thead>
                                <tr>
                                    <th>LABEL_NAME</th>
                                    <th>LABEL_LANGUAGE</th>
                                    <th>LABEL_ACTIVE</th>
                                    <th>LABEL_ACTIONS</th>
                                </tr>
                            </thead>
                            <tbody></tbody>
                        </table>
                    </div>
                    <div class="card-footer clearfix">
                        <div style="float:right;">
                            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
                            <?php if ($allowAdd) : ?>
                                <button type="button" class="btn btn-primary btn-add-form"><i class="fa fa-plus"></i> LABEL_ADD </button>
                            <?php endif; ?>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Create/Edit Form -->
    <?php echo $this->partial('modals/forms.phtml',  array(
                'status_inactive' => $status_inactive,
                'status_active' => $status_active,
                'lang_es'=>$lang_es,
                'lang_en'=>$lang_en
                )) ;?>
    <!-- Create/Edit Form-->

    <!-- Modals -->

    <!-- Section Modal -->
    <?php echo $this->partial('modals/sections.phtml') ;?>
    <!-- End Modal Section -->

    <!-- Question Modal -->

        <?php echo $this->partial('modals/questions.phtml') ;?>

        <!-- End Modal Question -->

    <!-- Modal Options -->

        <?php echo $this->partial('modals/options.phtml') ;?>
    <!-- End Modal Options -->

    <!-- End Modals -->

</section>