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/enum.js
T
2016-08-31 16:28:25 +03:00

231 lines
8.2 KiB
JavaScript

/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2015 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/enum', ['views/fields/base', 'lib!Selectize'], function (Dep) {
return Dep.extend({
type: 'enum',
listTemplate: 'fields/enum/detail',
detailTemplate: 'fields/enum/detail',
editTemplate: 'fields/enum/edit',
searchTemplate: 'fields/enum/search',
translatedOptions: null,
data: function () {
var data = Dep.prototype.data.call(this);
data.translatedOptions = this.translatedOptions;
return data;
},
setup: function () {
if (!this.params.options) {
var methodName = 'get' + Espo.Utils.upperCaseFirst(this.name) + 'Options';
if (typeof this.model[methodName] == 'function') {
this.params.options = this.model[methodName].call(this.model);
}
}
this.setupOptions();
if ('translatedOptions' in this.options) {
this.translatedOptions = this.options.translatedOptions;
}
if ('translatedOptions' in this.params) {
this.translatedOptions = this.params.translatedOptions;
}
if (this.params.translation) {
var data = this.getLanguage().data;
var arr = this.params.translation.split('.');
var pointer = this.getLanguage().data;
arr.forEach(function (key) {
if (key in pointer) {
pointer = pointer[key];
t = pointer;
}
}, this);
this.translatedOptions = null;
var translatedOptions = {};
if (this.params.options) {
this.params.options.forEach(function (o) {
if (typeof t === 'object' && o in t) {
translatedOptions[o] = t[o];
} else {
translatedOptions[o] = o;
}
}, this);
this.translatedOptions = translatedOptions;
}
}
if (this.translatedOptions === null) {
this.translatedOptions = this.getLanguage().translate(this.name, 'options', this.model.name) || {};
if (this.translatedOptions === this.name) {
this.translatedOptions = null;
}
}
if (this.params.isSorted && this.translatedOptions) {
this.params.options = Espo.Utils.clone(this.params.options);
this.params.options = this.params.options.sort(function (v1, v2) {
return (this.translatedOptions[v1] || v1).localeCompare(this.translatedOptions[v2] || v2);
}.bind(this));
}
if (this.options.customOptionList) {
this.setOptionList(this.options.customOptionList);
}
},
setupOptions: function () {
},
setOptionList: function (optionList) {
if (!this.originalOptionList) {
this.originalOptionList = this.params.options;
}
this.params.options = Espo.Utils.clone(optionList);
if (this.mode == 'edit') {
if (this.isRendered()) {
this.reRender();
if (~(this.params.options || []).indexOf(this.model.get(this.name))) {
this.trigger('change');
}
} else {
this.once('after:render', function () {
if (~(this.params.options || []).indexOf(this.model.get(this.name))) {
this.trigger('change');
}
}, this);
}
}
},
resetOptionList: function () {
if (this.originalOptionList) {
this.params.options = Espo.Utils.clone(this.originalOptionList);
}
if (this.mode == 'edit') {
if (this.isRendered()) {
this.reRender();
}
}
},
afterRender: function () {
Dep.prototype.afterRender.call(this);
if (this.mode == 'search') {
var $element = this.$element = this.$el.find('[name="' + this.name + '"]');
var valueList = this.searchParams.value || [];
this.$element.val(valueList.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'],
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;
};
}
});
}
},
validateRequired: function () {
if (this.isRequired()) {
if (!this.model.get(this.name)) {
var msg = this.translate('fieldIsRequired', 'messages').replace('{field}', this.translate(this.name, 'fields', this.model.name));
this.showValidationMessage(msg);
return true;
}
}
},
fetch: function () {
var value = this.$el.find('[name="' + this.name + '"]').val();
var data = {};
data[this.name] = value;
return data;
},
fetchSearch: function () {
var list = this.$element.val().split(':,:');
if (list.length == 1 && list[0] == '') {
list = [];
}
if (list.length == 0) {
return false;
}
var data = {
type: 'in',
value: list
};
return data;
},
});
});