This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/client/src/views/fields/multi-enum.js
T
Taras Machyshyn fac5704c9e Added 2017 year
2017-01-17 15:07:08 +02:00

141 lines
4.9 KiB
JavaScript

/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2017 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
* Website: http://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
Espo.define('views/fields/multi-enum', ['views/fields/array', 'lib!Selectize'], function (Dep, Selectize) {
return Dep.extend({
type: 'multiEnum',
listTemplate: 'fields//array/detail',
detailTemplate: 'fields/array/detail',
editTemplate: 'fields/multi-enum/edit',
events: {
},
data: function () {
return _.extend({
optionList: this.params.options || []
}, Dep.prototype.data.call(this));
},
getTranslatedOptions: function () {
return (this.params.options || []).map(function (item) {
if (this.translatedOptions != null) {
if (item in this.translatedOptions) {
return this.translatedOptions[item];
}
}
return item;
});
},
setup: function () {
Dep.prototype.setup.call(this);
},
afterRender: function () {
if (this.mode == 'edit') {
var $element = this.$element = this.$el.find('[name="' + this.name + '"]');
this.$element.val(this.selected.join(':,:'));
var data = [];
(this.params.options || []).forEach(function (value) {
var label = this.getLanguage().translateOption(value, this.name, this.scope);
if (this.translatedOptions) {
if (value in this.translatedOptions) {
label = this.translatedOptions[value];
}
}
data.push({
value: value,
label: label
});
}, this);
this.$element.selectize({
options: data,
delimiter: ':,:',
labelField: 'label',
valueField: 'value',
highlight: false,
searchField: ['label'],
plugins: ['remove_button', 'drag_drop'],
score: function (search) {
var score = this.getScoreFunction(search);
search = search.toLowerCase();
return function (item) {
if (item.label.toLowerCase().indexOf(search) === 0) {
return score(item);
}
return 0;
};
}
});
this.$element.on('change', function () {
this.trigger('change');
}.bind(this));
}
if (this.mode == 'search') {
this.renderSearch();
}
},
fetch: function () {
var list = this.$element.val().split(':,:');
if (list.length == 1 && list[0] == '') {
list = [];
}
var data = {};
data[this.name] = list;
return data;
},
validateRequired: function () {
if (this.isRequired()) {
var value = this.model.get(this.name);
if (!value || value.length == 0) {
var msg = this.translate('fieldIsRequired', 'messages').replace('{field}', this.translate(this.name, 'fields', this.model.name));
this.showValidationMessage(msg, '.selectize-control');
return true;
}
}
},
});
});