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/dynamic-logic.js
T
Yuri Kuznetsov fc8be6d56f ref
2023-06-20 21:02:15 +03:00

543 lines
13 KiB
JavaScript

/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://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.
************************************************************************/
/** @module dynamic-logic */
/**
* Dynamic logic. Handles form appearance and behaviour depending on conditions.
*
* @internal Instantiated in advanced-pack.
*/
class DynamicLogic {
/**
* @param {Object} defs Definitions.
* @param {module:views/record/base} recordView A record view.
*/
constructor(defs, recordView) {
/**
* @type {Object} Definitions.
* @private
*/
this.defs = defs || {};
/**
*
* @type {module:views/record/base}
* @private
*/
this.recordView = recordView;
/**
* @type {string[]}
* @private
*/
this.fieldTypeList = ['visible', 'required', 'readOnly'];
/**
* @type {string[]}
* @private
*/
this.panelTypeList = ['visible', 'styled'];
}
/**
* Process.
*/
process() {
let fields = this.defs.fields || {};
Object.keys(fields).forEach(field => {
var item = (fields[field] || {});
this.fieldTypeList.forEach(type => {
if (!(type in item)) {
return;
}
if (!item[type]) {
return;
}
let typeItem = (item[type] || {});
if (!typeItem.conditionGroup) {
return;
}
let result = this.checkConditionGroup(typeItem.conditionGroup);
let methodName;
if (result) {
methodName = 'makeField' + Espo.Utils.upperCaseFirst(type) + 'True';
}
else {
methodName = 'makeField' + Espo.Utils.upperCaseFirst(type) + 'False';
}
this[methodName](field);
});
});
let panels = this.defs.panels || {};
Object.keys(panels).forEach(panel => {
this.panelTypeList.forEach(type => {
this.processPanel(panel, type);
});
});
let options = this.defs.options || {};
Object.keys(options).forEach(field => {
let itemList = options[field];
if (!options[field]) {
return;
}
let isMet = false;
for (let i in itemList) {
let item = itemList[i];
if (this.checkConditionGroup(item.conditionGroup)) {
this.setOptionList(field, item.optionList || []);
isMet = true;
break;
}
}
if (!isMet) {
this.resetOptionList(field);
}
});
}
/**
* @param {string} panel A panel name.
* @param {string} type A type.
* @private
*/
processPanel(panel, type) {
let panels = this.defs.panels || {};
let item = (panels[panel] || {});
if (!(type in item)) {
return;
}
let typeItem = (item[type] || {});
if (!typeItem.conditionGroup) {
return;
}
let result = this.checkConditionGroup(typeItem.conditionGroup);
let methodName;
if (result) {
methodName = 'makePanel' + Espo.Utils.upperCaseFirst(type) + 'True';
}
else {
methodName = 'makePanel' + Espo.Utils.upperCaseFirst(type) + 'False';
}
this[methodName](panel);
}
/**
* Check a condition group.
* @param {Object} data A condition group.
* @param {'and'|'or'|'not'} [type='and'] A type.
* @returns {boolean}
*/
checkConditionGroup(data, type) {
type = type || 'and';
let list;
let result = false;
if (type === 'and') {
list = data || [];
result = true;
for (let i in list) {
if (!this.checkCondition(list[i])) {
result = false;
break;
}
}
}
else if (type === 'or') {
list = data || [];
for (let i in list) {
if (this.checkCondition(list[i])) {
result = true;
break;
}
}
}
else if (type === 'not') {
if (data) {
result = !this.checkCondition(data);
}
}
return result;
}
/**
* Check a condition.
*
* @param {Object} defs Definitions.
* @returns {boolean}
*/
checkCondition(defs) {
defs = defs || {};
let type = defs.type || 'equals';
if (['or', 'and', 'not'].includes(type)) {
return this.checkConditionGroup(defs.value, /** @type {'or'|'and'|'not'} */ type);
}
let attribute = defs.attribute;
let value = defs.value;
if (!attribute) {
return false;
}
var setValue = this.recordView.model.get(attribute);
if (type === 'equals') {
if (!value) {
return false;
}
return setValue === value;
}
if (type === 'notEquals') {
if (!value) {
return false;
}
return setValue !== value;
}
if (type === 'isEmpty') {
if (Array.isArray(setValue)) {
return !setValue.length;
}
return setValue === null || (setValue === '') || typeof setValue === 'undefined';
}
if (type === 'isNotEmpty') {
if (Array.isArray(setValue)) {
return !!setValue.length;
}
return setValue !== null && (setValue !== '') && typeof setValue !== 'undefined';
}
if (type === 'isTrue') {
return !!setValue;
}
if (type === 'isFalse') {
return !setValue;
}
if (type === 'contains' || type === 'has') {
if (!setValue) {
return false;
}
return !!~setValue.indexOf(value);
}
if (type === 'notContains' || type === 'notHas') {
if (!setValue) {
return true;
}
return !~setValue.indexOf(value);
}
if (type === 'startsWith') {
if (!setValue) {
return false;
}
return setValue.indexOf(value) === 0;
}
if (type === 'endsWith') {
if (!setValue) {
return false;
}
return setValue.indexOf(value) === setValue.length - value.length;
}
if (type === 'matches') {
if (!setValue) {
return false;
}
let match = /^\/(.*)\/([a-z]*)$/.exec(value);
if (!match || match.length < 2) {
return false;
}
return (new RegExp(match[1], match[2])).test(setValue);
}
if (type === 'greaterThan') {
return setValue > value;
}
if (type === 'lessThan') {
return setValue < value;
}
if (type === 'greaterThanOrEquals') {
return setValue >= value;
}
if (type === 'lessThanOrEquals') {
return setValue <= value;
}
if (type === 'in') {
return !!~value.indexOf(setValue);
}
if (type === 'notIn') {
return !~value.indexOf(setValue);
}
if (type === 'isToday') {
let dateTime = this.recordView.getDateTime();
if (!setValue) {
return false;
}
if (setValue.length > 10) {
return dateTime.toMoment(setValue).isSame(dateTime.getNowMoment(), 'day');
}
return dateTime.toMomentDate(setValue).isSame(dateTime.getNowMoment(), 'day');
}
if (type === 'inFuture') {
let dateTime = this.recordView.getDateTime();
if (!setValue) {
return false;
}
if (setValue.length > 10) {
return dateTime.toMoment(setValue).isAfter(dateTime.getNowMoment(), 'day');
}
return dateTime.toMomentDate(setValue).isAfter(dateTime.getNowMoment(), 'day');
}
if (type === 'inPast') {
let dateTime = this.recordView.getDateTime();
if (!setValue) {
return false;
}
if (setValue.length > 10) {
return dateTime.toMoment(setValue).isBefore(dateTime.getNowMoment(), 'day');
}
return dateTime.toMomentDate(setValue).isBefore(dateTime.getNowMoment(), 'day');
}
return false;
}
/**
* @param {string} field
* @param {string[]} optionList
* @private
*/
setOptionList(field, optionList) {
this.recordView.setFieldOptionList(field, optionList);
}
/**
* @param {string} field
* @private
*/
resetOptionList(field) {
this.recordView.resetFieldOptionList(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} field
* @private
*/
makeFieldVisibleTrue(field) {
this.recordView.showField(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} field
* @private
*/
makeFieldVisibleFalse(field) {
this.recordView.hideField(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} field
* @private
*/
makeFieldRequiredTrue(field) {
this.recordView.setFieldRequired(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} field
* @private
*/
makeFieldRequiredFalse(field) {
this.recordView.setFieldNotRequired(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} field
* @private
*/
makeFieldReadOnlyTrue(field) {
this.recordView.setFieldReadOnly(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} field
* @private
*/
makeFieldReadOnlyFalse(field) {
this.recordView.setFieldNotReadOnly(field);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} panel
* @private
*/
makePanelVisibleTrue(panel) {
this.recordView.showPanel(panel, 'dynamicLogic');
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} panel
* @private
*/
makePanelVisibleFalse(panel) {
this.recordView.hidePanel(panel, false, 'dynamicLogic');
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} panel
* @private
*/
makePanelStyledTrue(panel) {
this.recordView.stylePanel(panel);
}
// noinspection JSUnusedGlobalSymbols
/**
* @param {string} panel
* @private
*/
makePanelStyledFalse(panel) {
this.recordView.unstylePanel(panel);
}
/**
* Add a panel-visible condition.
*
* @param {string} name A panel name.
* @param {Object} item Condition definitions.
*/
addPanelVisibleCondition(name, item) {
this.defs.panels = this.defs.panels || {};
this.defs.panels[name] = this.defs.panels[name] || {};
this.defs.panels[name].visible = item;
this.processPanel(name, 'visible');
}
/**
* Add a panel-styled condition.
*
* @param {string} name A panel name.
* @param {Object} item Condition definitions.
*/
addPanelStyledCondition(name, item) {
this.defs.panels = this.defs.panels || {};
this.defs.panels[name] = this.defs.panels[name] || {};
this.defs.panels[name].styled = item;
this.processPanel(name, 'styled');
}
}
export default DynamicLogic;