CreateEntityLayoutView.js 36.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

define(['require',
    'backbone',
    'hbs!tmpl/entity/CreateEntityLayoutView_tmpl',
    'utils/Utils',
    'collection/VTagList',
    'collection/VEntityList',
    'models/VEntity',
    'modules/Modal',
    'utils/Messages',
    'moment',
    'utils/UrlLinks',
    'collection/VSearchList',
31
    'utils/Enums',
32 33 34
    'utils/Globals',
    'daterangepicker'
], function(require, Backbone, CreateEntityLayoutViewTmpl, Utils, VTagList, VEntityList, VEntity, Modal, Messages, moment, UrlLinks, VSearchList, Enums, Globals) {
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

    var CreateEntityLayoutView = Backbone.Marionette.LayoutView.extend(
        /** @lends CreateEntityLayoutView */
        {
            _viewName: 'CreateEntityLayoutView',

            template: CreateEntityLayoutViewTmpl,

            templateHelpers: function() {
                return {
                    guid: this.guid
                };
            },

            /** Layout sub regions */
            regions: {},

            /** ui selector cache */
            ui: {
                entityName: "[data-id='entityName']",
                entityList: "[data-id='entityList']",
                entityInputData: "[data-id='entityInputData']",
                toggleRequired: 'input[name="toggleRequired"]',
                assetName: "[data-id='assetName']",
                entityInput: "[data-id='entityInput']"
            },
            /** ui events hash */
            events: function() {
                var events = {};
                events["change " + this.ui.entityList] = "onEntityChange";
                events["change " + this.ui.toggleRequired] = function(e) {
                    this.requiredAllToggle(e.currentTarget.checked)
                };
                return events;
            },
            /**
             * intialize a new CreateEntityLayoutView Layout
             * @constructs
             */
            initialize: function(options) {
75
                _.extend(this, _.pick(options, 'guid', 'callback', 'showLoader', 'entityDefCollection', 'typeHeaders'));
76 77 78
                var that = this,
                    entityTitle, okLabel;
                this.selectStoreCollection = new Backbone.Collection();
79
                this.collection = new VEntityList();
80 81 82 83
                this.entityModel = new VEntity();
                if (this.guid) {
                    this.collection.modelAttrName = "createEntity"
                }
84
                this.asyncReferEntityCounter = 0;
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
                this.required = true;
                if (this.guid) {
                    entityTitle = 'Edit entity';
                    okLabel = 'Update';
                } else {
                    entityTitle = 'Create entity';
                    okLabel = 'Create';
                }
                this.modal = new Modal({
                    title: entityTitle,
                    content: this,
                    cancelText: "Cancel",
                    okText: okLabel,
                    allowCancel: true,
                    okCloses: false,
100
                    width: '50%'
101
                }).open();
102
                this.modal.$el.find('button.ok').attr("disabled", true);
103 104 105 106 107 108 109 110 111 112 113 114 115
                this.modal.on('ok', function(e) {
                    that.okButton();
                });
                this.modal.on('closeModal', function() {
                    that.modal.trigger('cancel');
                });
            },
            bindEvents: function() {
                var that = this;
                this.listenTo(this.collection, "reset", function() {
                    this.entityCollectionList();
                }, this);
                this.listenTo(this.collection, 'error', function() {
116
                    this.hideLoader();
117
                }, this);
118 119 120 121 122 123 124 125 126 127 128
            },
            onRender: function() {
                this.bindEvents();
                if (!this.guid) {
                    this.bindRequiredField();
                }
                this.showLoader();
                this.fetchCollections();
            },
            bindRequiredField: function() {
                var that = this;
129
                this.ui.entityInputData.on("keyup change", "textarea", function(e) {
130
                    var value = this.value;
131 132 133 134 135 136 137 138 139 140 141 142 143
                    if (!value.length && $(this).hasClass('false')) {
                        $(this).removeClass('errorClass');
                        that.modal.$el.find('button.ok').prop("disabled", false);
                    } else {
                        try {
                            if (value && value.length) {
                                JSON.parse(value);
                                $(this).removeClass('errorClass');
                                that.modal.$el.find('button.ok').prop("disabled", false);
                            }
                        } catch (err) {
                            $(this).addClass('errorClass');
                            that.modal.$el.find('button.ok').prop("disabled", true);
144 145 146
                        }
                    }
                });
147

148
                this.ui.entityInputData.on('keyup change', 'input.true,select.true', function(e) {
149 150
                    if (this.value !== "") {
                        if ($(this).data('select2')) {
151 152 153 154
                            $(this).data('select2').$container.find('.select2-selection').removeClass("errorClass");
                            if (that.ui.entityInputData.find('.errorClass').length === 0) {
                                that.modal.$el.find('button.ok').prop("disabled", false);
                            }
155 156
                        } else {
                            $(this).removeClass('errorClass');
157 158 159
                            if (that.ui.entityInputData.find('.errorClass').length === 0) {
                                that.modal.$el.find('button.ok').prop("disabled", false);
                            }
160 161 162
                        }
                    } else {
                        if ($(this).data('select2')) {
163 164
                            $(this).data('select2').$container.find('.select2-selection').addClass("errorClass");
                            that.modal.$el.find('button.ok').prop("disabled", true);
165 166
                        } else {
                            $(this).addClass('errorClass');
167
                            that.modal.$el.find('button.ok').prop("disabled", true);
168 169 170
                        }
                    }
                });
171
            },
172 173
            bindNonRequiredField: function() {
                var that = this;
174
                this.ui.entityInputData.off('keyup change', 'input.false,select.false').on('keyup change', 'input.false,select.false', function(e) {
175 176 177 178 179
                    if (that.modal.$el.find('button.ok').prop('disabled') && that.ui.entityInputData.find('.errorClass').length === 0) {
                        that.modal.$el.find('button.ok').prop("disabled", false);
                    }
                });
            },
180 181 182 183 184
            decrementCounter: function(counter) {
                if (this[counter] > 0) {
                    --this[counter];
                }
            },
185 186 187 188 189
            fetchCollections: function() {
                if (this.guid) {
                    this.collection.url = UrlLinks.entitiesApiUrl(this.guid);
                    this.collection.fetch({ reset: true });
                } else {
190
                    this.entityCollectionList();
191 192 193 194 195 196 197 198 199
                }
            },
            entityCollectionList: function() {
                this.ui.entityList.empty();
                var that = this,
                    name = "",
                    value;
                if (this.guid) {
                    this.collection.each(function(val) {
200
                        name += Utils.getName(val.get("entity"));
201 202 203
                        that.entityData = val;
                    });
                    this.ui.assetName.html(name);
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
                    var referredEntities = this.entityData.get('referredEntities');
                    var attributes = this.entityData.get('entity').attributes;
                    _.map(_.keys(attributes), function(key) {
                        if (_.isObject(attributes[key])) {
                            var attrObj = attributes[key];
                            if (_.isObject(attrObj) && !_.isArray(attrObj)) {
                                attrObj = [attrObj];
                            }
                            _.each(attrObj, function(obj) {
                                if (obj.guid && !referredEntities[obj.guid]) {
                                    ++that.asyncReferEntityCounter;
                                    that.collection.url = UrlLinks.entitiesApiUrl(obj.guid);
                                    that.collection.fetch({
                                        success: function(data, response) {
                                            referredEntities[obj.guid] = response.entity;
                                        },
                                        complete: function() {
                                            that.decrementCounter('asyncReferEntityCounter');
                                            if (that.asyncReferEntityCounter === 0) {
                                                that.onEntityChange(null, that.entityData);
                                            }
                                        },
                                        silent: true
                                    });
                                }
                            });
                        }
                    });
                    if (this.asyncReferEntityCounter === 0) {
                        this.onEntityChange(null, this.entityData);
                    }
235
                } else {
236
                    var str = '<option disabled="disabled" selected>--Select entity-type--</option>';
237
                    this.entityDefCollection.fullCollection.comparator = function(model) {
238 239
                        return model.get('name');
                    }
240
                    this.entityDefCollection.fullCollection.sort().each(function(val) {
241
                        var name = Utils.getName(val.toJSON());
242 243
                        if (Globals.entityTypeConfList) {
                            if (_.isEmptyArray(Globals.entityTypeConfList)) {
244
                                str += '<option>' + name + '</option>';
245 246
                            } else {
                                if (_.contains(Globals.entityTypeConfList, val.get("name"))) {
247
                                    str += '<option>' + name + '</option>';
248 249 250
                                }
                            }
                        }
251 252
                    });
                    this.ui.entityList.html(str);
253
                    this.ui.entityList.select2({});
254
                    this.hideLoader();
255 256 257 258 259 260 261 262 263
                }
            },
            capitalize: function(string) {
                return string.charAt(0).toUpperCase() + string.slice(1);
            },
            requiredAllToggle: function(checked) {
                if (checked) {
                    this.ui.entityInputData.find('div.true').show();
                    this.ui.entityInputData.find('fieldset div.true').show();
264
                    this.ui.entityInputData.find('fieldset').show();
265 266
                    this.required = false;
                } else {
267 268 269 270 271
                    this.ui.entityInputData.find('fieldset').each(function() {
                        if (!$(this).find('div').hasClass('false')) {
                            $(this).hide();
                        }
                    });
272 273 274 275 276 277 278 279
                    this.ui.entityInputData.find('div.true').hide();
                    this.ui.entityInputData.find('fieldset div.true').hide();
                    this.required = true;
                }

            },
            onEntityChange: function(e, value) {
                var that = this,
280
                    typeName = value && value.get('entity') ? value.get('entity').typeName : null;
281 282 283
                if (!this.guid) {
                    this.showLoader();
                }
284 285 286
                this.ui.entityInputData.empty();
                if (typeName) {
                    this.collection.url = UrlLinks.entitiesDefApiUrl(typeName);
287
                } else if (e) {
288 289 290 291 292
                    this.collection.url = UrlLinks.entitiesDefApiUrl(e.target.value);
                    this.collection.modelAttrName = 'attributeDefs';
                }
                this.collection.fetch({
                    success: function(model, data) {
293
                        that.supuertypeFlag = 0;
294 295 296
                        that.subAttributeData(data)
                    },
                    complete: function() {
297
                        //that.initilizeElements();
298 299 300 301 302 303 304
                    },
                    silent: true
                });
            },
            subAttributeData: function(data) {
                var that = this,
                    attributeInput = "",
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
                    alloptional = false,
                    attributeDefs = Utils.getNestedSuperTypeObj({ data: data, collection: this.entityDefCollection });
                _.each(_.sortBy(_.keys(attributeDefs)), function(key) {
                    if (attributeDefs[key].length) {
                        attributeInput = "";
                        _.each(_.sortBy(attributeDefs[key], 'name'), function(value) {
                            if (value.isOptional == true) {
                                alloptional = true;
                            }
                            attributeInput += that.getContainer(value);
                        });
                        if (attributeInput !== "") {
                            entityTitle = that.getFieldSet(key, alloptional, attributeInput);
                            that.ui.entityInputData.append(entityTitle);
                        }
320 321 322 323 324 325 326
                    }
                });
                if (this.required) {
                    this.ui.entityInputData.find('fieldset div.true').hide()
                    this.ui.entityInputData.find('div.true').hide();
                }
                if (!('placeholder' in HTMLInputElement.prototype)) {
327
                    this.ui.entityInputData.find("input,select,textarea").placeholder();
328
                }
329
                that.initilizeElements();
330 331 332
            },
            initilizeElements: function() {
                var that = this;
333
                this.$('input[data-type="date"]').each(function() {
334 335 336 337 338 339
                    if (!$(this).data('daterangepicker')) {
                        var dateObj = { "singleDatePicker": true, "showDropdowns": true };
                        if (that.guid) {
                            dateObj["startDate"] = this.value
                        }
                        $(this).daterangepicker(dateObj);
340
                    }
341 342 343 344 345 346 347 348 349 350 351 352 353 354
                });
                this.initializeValidation();
                if (this.ui.entityInputData.find('fieldset').length > 0 && this.ui.entityInputData.find('select.true,input.true').length === 0) {
                    this.requiredAllToggle(this.ui.entityInputData.find('select.true,input.true').length === 0);
                    if (!this.guid) {
                        // For create entity bind keyup for non-required field when all elements are optional
                        this.bindNonRequiredField();
                    }
                    this.ui.toggleRequired.prop('checked', true);
                } else {
                    this.ui.entityInputData.find('fieldset').each(function() {
                        // if checkbox is alredy selected then dont hide
                        if (!$(this).find('div').hasClass('false') && !that.ui.toggleRequired.is(":checked")) {
                            $(this).hide();
355 356 357
                        }
                    });
                }
358 359 360 361 362 363 364 365
                this.$('select[data-type="boolean"]').each(function(value, key) {
                    var dataKey = $(key).data('key');
                    if (that.entityData) {
                        var setValue = that.entityData.get("entity").attributes[dataKey];
                        this.value = setValue;
                    }
                });
                this.addJsonSearchData();
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
            },
            initializeValidation: function() {
                // IE9 allow input type number
                var regex = /^[0-9]*((?=[^.]|$))?$/, // allow only numbers [0-9] 
                    removeText = function(e, value) {
                        if (!regex.test(value)) {
                            var txtfld = e.currentTarget;
                            var newtxt = txtfld.value.slice(0, txtfld.value.length - 1);
                            txtfld.value = newtxt;
                        }
                    }
                this.$('input[data-type="int"],input[data-type="long"]').on('keydown', function(e) {
                    // allow only numbers [0-9] 
                    if (!regex.test(e.currentTarget.value)) {
                        return false;
                    }
                });
                this.$('input[data-type="int"],input[data-type="long"]').on('paste', function(e) {
                    return false;
                });

                this.$('input[data-type="long"],input[data-type="int"]').on('keyup click', function(e) {
                    removeText(e, e.currentTarget.value);
                });
390

391
                this.$('input[data-type="date"]').on('hide.daterangepicker keydown', function(event) {
392
                    if (event.type) {
393
                        if (event.type == 'hide') {
394 395 396 397 398
                            this.blur();
                        } else if (event.type == 'keydown') {
                            return false;
                        }
                    }
399
                });
400
            },
401 402
            getContainer: function(value) {
                var entityLabel = this.capitalize(value.name);
403 404 405
                return '<div class="row form-group ' + value.isOptional + '"><span class="col-md-3">' +
                    '<label><span class="' + (value.isOptional ? 'true' : 'false required') + '">' + entityLabel + '</span><span class="center-block ellipsis text-gray" title="Data Type : ' + value.typeName + '">' + '(' + Utils.escapeHtml(value.typeName) + ')' + '</span></label></span>' +
                    '<span class="col-md-9">' + (this.getElement(value)) +
406
                    '</input></span></div>';
407
            },
408
            getFieldSet: function(name, alloptional, attributeInput) {
409
                return '<fieldset class="form-group fieldset-child-pd ' + (alloptional ? "alloptional" : "") + '"><legend class="legend-sm">' + name + '</legend>' + attributeInput + '</fieldset>';
410
            },
411
            getSelect: function(value, entityValue) {
412 413
                if (value.typeName === "boolean") {
                    return '<select class="form-control row-margin-bottom ' + (value.isOptional === true ? "false" : "true") + '" data-type="' + value.typeName + '" data-key="' + value.name + '" data-id="entityInput">' +
414
                        '<option value="">--Select true or false--</option><option value="true">true</option>' +
415 416 417 418 419 420 421 422 423
                        '<option value="false">false</option></select>';
                } else {
                    var splitTypeName = value.typeName.split("<");
                    if (splitTypeName.length > 1) {
                        splitTypeName = splitTypeName[1].split(">")[0];
                    } else {
                        splitTypeName = value.typeName;
                    }
                    return '<select class="form-control row-margin-bottom entityInputBox ' + (value.isOptional === true ? "false" : "true") + '" data-type="' + value.typeName +
424
                        '" data-key="' + value.name + '" data-id="entitySelectData" data-queryData="' + splitTypeName + '">' + (this.guid ? entityValue : "") + '</select>';
425 426 427
                }

            },
428 429 430 431 432 433 434 435 436 437 438
            getTextArea: function(value, entityValue, structType) {
                var setValue = entityValue
                try {
                    if (structType && entityValue && entityValue.length) {
                        var parseValue = JSON.parse(entityValue);
                        if (_.isObject(parseValue) && !_.isArray(parseValue) && parseValue.attributes) {
                            setValue = JSON.stringify(parseValue.attributes);
                        }
                    }
                } catch (err) {}

439 440 441 442
                return '<textarea class="form-control entityInputBox ' + (value.isOptional === true ? "false" : "true") + '"' +
                    ' data-type="' + value.typeName + '"' +
                    ' data-key="' + value.name + '"' +
                    ' placeholder="' + value.name + '"' +
443 444
                    ' data-id="entityInput">' + setValue + '</textarea>';

445 446 447 448 449 450 451 452 453 454 455 456
            },
            getInput: function(value, entityValue) {
                return '<input class="form-control entityInputBox ' + (value.isOptional === true ? "false" : "true") + '"' +
                    ' data-type="' + value.typeName + '"' +
                    ' value="' + entityValue + '"' +
                    ' data-key="' + value.name + '"' +
                    ' placeholder="' + value.name + '"' +
                    ' data-id="entityInput">';
            },
            getElement: function(value) {
                var typeName = value.typeName,
                    entityValue = "";
457
                if (this.guid) {
458
                    var dataValue = this.entityData.get("entity").attributes[value.name];
459 460 461 462 463 464
                    if (_.isObject(dataValue)) {
                        entityValue = JSON.stringify(dataValue);
                    } else {
                        if (dataValue) {
                            entityValue = dataValue;
                        }
465 466 467 468 469 470
                        if (value.typeName === "date") {
                            if (dataValue) {
                                entityValue = moment(dataValue).format("MM/DD/YYYY");
                            } else {
                                entityValue = moment().format("MM/DD/YYYY");
                            }
471 472 473
                        }
                    }
                }
474
                if ((typeName && this.entityDefCollection.fullCollection.find({ name: typeName })) || typeName === "boolean" || typeName.indexOf("array") > -1) {
475 476 477 478
                    return this.getSelect(value, entityValue);
                } else if (typeName.indexOf("map") > -1) {
                    return this.getTextArea(value, entityValue);
                } else {
479 480
                    var typeNameCategory = this.typeHeaders.fullCollection.findWhere({ name: typeName });
                    if (typeNameCategory && typeNameCategory.get('category') === 'STRUCT') {
481
                        return this.getTextArea(value, entityValue, true);
482 483 484
                    } else {
                        return this.getInput(value, entityValue);
                    }
485 486 487 488 489 490
                }
            },
            okButton: function() {
                var that = this;
                this.showLoader();
                this.parentEntity = this.ui.entityList.val();
491 492
                var entity = {};
                var referredEntities = {};
493
                var extractValue = function(value, typeName) {
494 495 496
                    if (!value) {
                        return value;
                    }
497
                    if (_.isArray(value)) {
498 499 500 501
                        var parseData = [];
                        _.map(value, function(val) {
                            parseData.push({ 'guid': val, 'typeName': typeName });
                        });
502
                    } else {
503
                        var parseData = { 'guid': value, 'typeName': typeName };
504
                    }
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
                    return parseData;
                }
                try {
                    this.ui.entityInputData.find("input,select,textarea").each(function() {
                        var value = $(this).val();
                        if ($(this).val() && $(this).val().trim) {
                            value = $(this).val().trim();
                        }
                        if (this.nodeName === "TEXTAREA") {
                            try {
                                if (value && value.length) {
                                    JSON.parse(value);
                                    $(this).removeClass('errorClass');
                                }
                            } catch (err) {
                                throw new Error(err.message);
521 522 523
                                $(this).addClass('errorClass');
                            }
                        }
524 525 526 527
                        // validation
                        if ($(this).hasClass("true")) {
                            if (value == "" || value == undefined) {
                                if ($(this).data('select2')) {
528
                                    $(this).data('select2').$container.find('.select2-selection').addClass("errorClass")
529
                                } else {
530 531 532 533 534 535 536
                                    $(this).addClass('errorClass');
                                }
                                that.hideLoader();
                                throw new Error("Please fill the required fields");
                                return;
                            }
                        }
537 538 539 540
                        var dataTypeEnitity = $(this).data('type'),
                            datakeyEntity = $(this).data('key'),
                            typeName = $(this).data('querydata'),
                            typeNameCategory = that.typeHeaders.fullCollection.findWhere({ name: dataTypeEnitity });
541 542 543 544

                        // Extract Data
                        if (dataTypeEnitity && datakeyEntity) {
                            if (that.entityDefCollection.fullCollection.find({ name: dataTypeEnitity })) {
545
                                entity[datakeyEntity] = extractValue(value, typeName);
546
                            } else if (dataTypeEnitity === 'date' || dataTypeEnitity === 'time') {
547
                                entity[datakeyEntity] = Date.parse(value);
548
                            } else if (dataTypeEnitity.indexOf("map") > -1 || (typeNameCategory && typeNameCategory.get('category') === 'STRUCT')) {
549 550 551
                                try {
                                    if (value && value.length) {
                                        parseData = JSON.parse(value);
552
                                        entity[datakeyEntity] = parseData;
553
                                    }
554 555 556 557 558 559
                                } catch (err) {
                                    $(this).addClass('errorClass');
                                    throw new Error(datakeyEntity + " : " + err.message);
                                    return;
                                }
                            } else if (dataTypeEnitity.indexOf("array") > -1 && dataTypeEnitity.indexOf("string") === -1) {
560
                                entity[datakeyEntity] = extractValue(value, typeName);
561 562 563
                            } else {
                                if (_.isString(value)) {
                                    if (value.length) {
564
                                        entity[datakeyEntity] = value;
565 566
                                    } else {
                                        entity[datakeyEntity] = null;
567
                                    }
568
                                } else {
569
                                    entity[datakeyEntity] = value;
570
                                }
571
                            }
572
                        }
573 574
                    });
                    var entityJson = {
575 576 577 578 579 580
                        "entity": {
                            "typeName": (this.guid ? this.entityData.get("entity").typeName : this.parentEntity),
                            "attributes": entity,
                            "guid": (this.guid ? this.guid : -1)
                        },
                        "referredEntities": referredEntities
581
                    };
582
                    this.entityModel.createOreditEntity({
583
                        data: JSON.stringify(entityJson),
584
                        type: "POST",
585 586 587 588 589
                        success: function(model, response) {
                            that.modal.close();
                            Utils.notifySuccess({
                                content: "entity " + Messages[that.guid ? 'editSuccessMessage' : 'addSuccessMessage']
                            });
590 591 592
                            if (that.guid && that.callback) {
                                that.callback();
                            } else {
593
                                if (model.mutatedEntities && model.mutatedEntities.CREATE && _.isArray(model.mutatedEntities.CREATE) && model.mutatedEntities.CREATE[0] && model.mutatedEntities.CREATE[0].guid) {
594 595 596 597 598
                                    Utils.setUrl({
                                        url: '#!/detailPage/' + (model.mutatedEntities.CREATE[0].guid),
                                        mergeBrowserUrl: false,
                                        trigger: true
                                    });
599 600
                                }
                            }
601 602 603 604 605
                        },
                        complete: function() {
                            that.hideLoader();
                        }
                    });
606 607 608 609 610 611

                } catch (e) {
                    Utils.notifyError({
                        content: e.message
                    });
                    that.hideLoader();
612 613 614 615 616 617 618 619 620
                }
            },
            showLoader: function() {
                this.$('.entityLoader').show();
                this.$('.entityInputData').hide();
            },
            hideLoader: function() {
                this.$('.entityLoader').hide();
                this.$('.entityInputData').show();
621 622 623
                // To enable scroll after selecting value from select2.
                this.ui.entityList.select2('open');
                this.ui.entityList.select2('close');
624
            },
625
            addJsonSearchData: function() {
626 627 628 629 630 631 632 633 634 635
                var that = this;
                this.$('select[data-id="entitySelectData"]').each(function(value, key) {
                    var $this = $(this),
                        keyData = $(this).data("key"),
                        typeData = $(this).data("type"),
                        queryData = $(this).data("querydata"),
                        skip = $(this).data('skip'),
                        placeholderName = "Select a " + typeData + " from the dropdown list";

                    $this.attr("multiple", ($this.data('type').indexOf("array") === -1 ? false : true));
636

637 638 639 640 641 642 643
                    // Select Value.
                    if (that.guid) {
                        var dataValue = that.entityData.get("entity").attributes[keyData],
                            entities = that.entityData.get("entity").attributes,
                            referredEntities = that.entityData.get("referredEntities"),
                            selectedValue = [],
                            select2Options = [];
644

645 646 647 648 649 650 651 652 653 654 655
                        if (dataValue) {
                            if (_.isObject(dataValue) && !_.isArray(dataValue)) {
                                dataValue = [dataValue];
                            }
                            _.each(dataValue, function(obj) {
                                if (_.isObject(obj) && obj.guid && referredEntities[obj.guid]) {
                                    var refEntiyFound = referredEntities[obj.guid];
                                    refEntiyFound['id'] = refEntiyFound.guid;
                                    if (!Enums.entityStateReadOnly[refEntiyFound.status]) {
                                        select2Options.push(refEntiyFound);
                                        selectedValue.push(refEntiyFound.guid);
656 657 658 659 660
                                    }
                                }
                            });
                        }

661 662 663 664 665 666 667
                        // Array of string.
                        if (selectedValue.length === 0 && dataValue && dataValue.length && ($this.data('querydata') === "string")) {
                            var str = "";
                            _.each(dataValue, function(obj) {
                                if (_.isString(obj)) {
                                    selectedValue.push(obj);
                                    str += '<option>' + _.escape(obj) + '</option>';
668
                                }
669 670 671
                            });
                            $this.html(str);
                        }
672

673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
                    } else {
                        $this.val([]);
                    }
                    var select2Option = {
                        placeholder: placeholderName,
                        allowClear: true,
                        tags: ($this.data('querydata') == "string" ? true : false)
                    }
                    var getTypeAheadData = function(data, params) {
                        var dataList = data.entities,
                            foundOptions = [];
                        _.each(dataList, function(obj) {
                            if (obj) {
                                if (obj.guid) {
                                    obj['id'] = obj.guid;
                                }
                                foundOptions.push(obj);
690 691
                            }
                        });
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
                        return foundOptions;
                    }
                    if ($this.data('querydata') !== "string") {
                        _.extend(select2Option, {
                            ajax: {
                                url: UrlLinks.searchApiUrl('attribute'),
                                dataType: 'json',
                                delay: 250,
                                data: function(params) {
                                    return {
                                        attrValuePrefix: params.term, // search term
                                        typeName: queryData,
                                        limit: 10,
                                        offset: 0
                                    };
                                },
                                processResults: function(data, params) {
                                    return {
                                        results: getTypeAheadData(data, params)
                                    };
                                },
                                cache: true
                            },
                            templateResult: function(option) {
                                var name = Utils.getName(option, 'qualifiedName');
                                return name === "-" ? option.text : name;
                            },
                            templateSelection: function(option) {
                                var name = Utils.getName(option, 'qualifiedName');
                                return name === "-" ? option.text : name;
                            },
                            escapeMarkup: function(markup) {
                                return markup;
                            },
                            data: select2Options,
727
                            minimumInputLength: 1
728 729 730 731 732 733
                        });
                    }
                    $this.select2(select2Option);
                    if (selectedValue) {
                        $this.val(selectedValue).trigger("change");
                    }
734

735
                });
736 737 738 739
                if (this.guid) {
                    this.bindRequiredField();
                    this.bindNonRequiredField();
                }
740
                this.hideLoader();
741 742 743
            }
        });
    return CreateEntityLayoutView;
744
});