2020-01-21 10:12:39 +01:00
|
|
|
/**
|
|
|
|
* EGroupware eTemplate2 - JS code for implementing inheritance with attributes
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
|
|
|
* @link: https://www.egroupware.org
|
|
|
|
* @author Andreas Stöckel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*egw:uses
|
|
|
|
et2_core_common;
|
|
|
|
*/
|
|
|
|
|
2021-07-23 18:18:45 +02:00
|
|
|
import {egw, IegwAppLocal} from "../jsapi/egw_global";
|
2022-03-23 00:21:59 +01:00
|
|
|
import {et2_checkType, et2_no_init, et2_validateAttrib} from "./et2_core_common";
|
|
|
|
import {et2_implements_registry} from "./et2_core_interfaces";
|
2022-08-07 10:10:33 +02:00
|
|
|
import {Et2Widget} from "./Et2Widget/Et2Widget";
|
2020-01-21 10:12:39 +01:00
|
|
|
|
2021-06-14 11:47:02 +02:00
|
|
|
export class ClassWithInterfaces
|
|
|
|
{
|
2021-07-15 00:11:20 +02:00
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* The implements function can be used to check whether the object
|
|
|
|
* implements the given interface.
|
2021-07-15 00:11:20 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* As TypeScript can not (yet) check if an objects implements an interface on runtime,
|
|
|
|
* we currently implements with each interface a function called 'implements_'+interfacename
|
|
|
|
* to be able to check here.
|
2021-07-15 00:11:20 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* @param _iface name of interface to check
|
2021-07-15 00:11:20 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
implements(_iface_name: string)
|
2021-07-15 00:11:20 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
if (typeof et2_implements_registry[_iface_name] === 'function' &&
|
|
|
|
et2_implements_registry[_iface_name](this))
|
|
|
|
{
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false;
|
2021-07-23 18:18:45 +02:00
|
|
|
}
|
2021-07-15 00:11:20 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* Check if object is an instance of a class or implements an interface (specified by the interfaces name)
|
2021-07-15 00:11:20 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* @param _class_or_interfacename class(-name) or string with name of interface
|
2021-07-15 00:11:20 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
instanceOf(_class_or_interfacename: any): boolean
|
2021-07-15 00:11:20 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
if (typeof _class_or_interfacename === 'string')
|
|
|
|
{
|
|
|
|
return this.implements(_class_or_interfacename);
|
|
|
|
}
|
2022-08-07 10:10:33 +02:00
|
|
|
if (_class_or_interfacename === Et2Widget)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2021-08-10 23:02:52 +02:00
|
|
|
return this instanceof _class_or_interfacename;
|
2021-07-15 00:11:20 +02:00
|
|
|
}
|
2021-08-10 23:02:52 +02:00
|
|
|
}
|
2021-07-15 00:11:20 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
export class ClassWithAttributes extends ClassWithInterfaces
|
|
|
|
{
|
2021-07-15 18:08:26 +02:00
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* Object to collect the attributes we operate on
|
2021-07-15 18:08:26 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
attributes: object;
|
2021-07-15 18:08:26 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* Returns the value of the given attribute. If the property does not
|
|
|
|
* exist, an error message is issued.
|
2021-07-15 18:08:26 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* @param {string} _name
|
|
|
|
* @return {*}
|
2021-07-15 18:08:26 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
getAttribute(_name)
|
2021-07-15 18:08:26 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
if (typeof this.attributes[_name] != "undefined" &&
|
|
|
|
!this.attributes[_name].ignore)
|
|
|
|
{
|
|
|
|
if (typeof this["get_" + _name] == "function")
|
|
|
|
{
|
|
|
|
return this["get_" + _name]();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this[_name];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
egw.debug("error", this, "Attribute '" + _name + "' does not exist!");
|
|
|
|
}
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* The setAttribute function sets the attribute with the given name to
|
|
|
|
* the given value. _override defines, whether this[_name] will be set,
|
|
|
|
* if this key already exists. _override defaults to true. A warning
|
|
|
|
* is issued if the attribute does not exist.
|
2021-07-14 17:49:36 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* @param {string} _name
|
|
|
|
* @param {*} _value
|
|
|
|
* @param {boolean} _override
|
2021-07-14 17:49:36 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
setAttribute(_name, _value, _override)
|
2021-07-14 17:49:36 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
if (typeof this.attributes[_name] != "undefined")
|
|
|
|
{
|
|
|
|
if (!this.attributes[_name].ignore)
|
|
|
|
{
|
|
|
|
if (typeof _override == "undefined")
|
|
|
|
{
|
|
|
|
_override = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var val = et2_checkType(_value, this.attributes[_name].type,
|
|
|
|
_name, this);
|
|
|
|
|
|
|
|
if (typeof this["set_" + _name] == "function")
|
|
|
|
{
|
|
|
|
this["set_" + _name](val);
|
|
|
|
}
|
|
|
|
else if (_override || typeof this[_name] == "undefined")
|
|
|
|
{
|
|
|
|
this[_name] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
egw.debug("warn", this, "Attribute '" + _name + "' does not exist!");
|
|
|
|
}
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* generateAttributeSet sanitizes the given associative array of attributes
|
|
|
|
* (by passing each entry to "et2_checkType" and checking for existance of
|
|
|
|
* the attribute) and adds the default values to the associative array.
|
2021-07-14 17:49:36 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* @param {object} _attrs is the associative array containing the attributes.
|
2021-07-14 17:49:36 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
static generateAttributeSet(widget, _attrs)
|
2021-07-14 17:49:36 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
// Sanity check and validation
|
|
|
|
for (var key in _attrs)
|
|
|
|
{
|
|
|
|
if (typeof widget[key] != "undefined")
|
|
|
|
{
|
|
|
|
if (!widget[key].ignore)
|
|
|
|
{
|
|
|
|
_attrs[key] = et2_checkType(_attrs[key], widget[key].type,
|
|
|
|
key, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Key does not exist - delete it and issue a warning
|
|
|
|
delete (_attrs[key]);
|
|
|
|
egw.debug("warn", this, "Attribute '" + key +
|
|
|
|
"' does not exist in " + _attrs.type + "!");
|
|
|
|
}
|
|
|
|
}
|
2021-07-14 17:49:36 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
// Include default values or already set values for this attribute
|
|
|
|
for (var key in widget)
|
|
|
|
{
|
|
|
|
if (typeof _attrs[key] == "undefined")
|
|
|
|
{
|
|
|
|
var _default = widget[key]["default"];
|
|
|
|
if (_default == et2_no_init)
|
|
|
|
{
|
|
|
|
_default = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
_attrs[key] = _default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return _attrs;
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* The initAttributes function sets the attributes to their default
|
|
|
|
* values. The attributes are not overwritten, which means, that the
|
|
|
|
* default is only set, if either a setter exists or this[propName] does
|
|
|
|
* not exist yet.
|
2021-07-14 17:49:36 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* @param {object} _attrs is the associative array containing the attributes.
|
2021-07-14 17:49:36 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
initAttributes(_attrs)
|
2021-07-14 17:49:36 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
for (var key in _attrs)
|
|
|
|
{
|
|
|
|
if (typeof this.attributes[key] != "undefined" && !this.attributes[key].ignore && !(_attrs[key] == undefined))
|
|
|
|
{
|
|
|
|
this.setAttribute(key, _attrs[key], false);
|
|
|
|
}
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
static buildAttributes(class_prototype: object)
|
2021-07-14 17:49:36 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
let class_tree = [];
|
|
|
|
let attributes = {};
|
|
|
|
let n = 0;
|
|
|
|
do
|
|
|
|
{
|
2022-03-23 00:21:59 +01:00
|
|
|
n++;
|
|
|
|
class_tree.push(class_prototype);
|
|
|
|
class_prototype = Object.getPrototypeOf(class_prototype);
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
2022-03-23 00:21:59 +01:00
|
|
|
while(class_prototype && class_prototype !== ClassWithAttributes && n < 50);
|
2021-07-14 17:49:36 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
for (let i = class_tree.length - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
attributes = ClassWithAttributes.extendAttributes(attributes, class_tree[i]._attributes);
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
2021-08-10 23:02:52 +02:00
|
|
|
return attributes;
|
2021-07-14 17:49:36 +02:00
|
|
|
}
|
2021-07-15 00:11:20 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-10 23:02:52 +02:00
|
|
|
* Extend current _attributes with the one from the parent class
|
2021-07-15 00:11:20 +02:00
|
|
|
*
|
2021-08-10 23:02:52 +02:00
|
|
|
* This gives inheritance from the parent plus the ability to override in the current class.
|
|
|
|
*
|
|
|
|
* @param _attributes
|
|
|
|
* @param _parent
|
2021-07-15 18:08:26 +02:00
|
|
|
*/
|
2021-08-10 23:02:52 +02:00
|
|
|
static extendAttributes(_parent: object, _attributes: object): object
|
2021-07-15 18:08:26 +02:00
|
|
|
{
|
2021-08-10 23:02:52 +02:00
|
|
|
function _copyMerge(_new, _old)
|
|
|
|
{
|
|
|
|
var result = {};
|
|
|
|
|
|
|
|
// Copy the new object
|
|
|
|
if (typeof _new != "undefined")
|
|
|
|
{
|
|
|
|
for (var key in _new)
|
|
|
|
{
|
|
|
|
result[key] = _new[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge the old object
|
|
|
|
for (var key in _old)
|
|
|
|
{
|
|
|
|
if (typeof result[key] == "undefined")
|
|
|
|
{
|
|
|
|
result[key] = _old[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2021-07-15 18:08:26 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
var attributes = {};
|
2021-07-15 18:08:26 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
// Copy the old attributes
|
|
|
|
for (var key in _attributes)
|
|
|
|
{
|
|
|
|
attributes[key] = _copyMerge({}, _attributes[key]);
|
|
|
|
}
|
2021-07-23 18:18:45 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
// Add the old attributes to the new ones. If the attributes already
|
|
|
|
// exist, they are merged.
|
|
|
|
for (var key in _parent)
|
|
|
|
{
|
|
|
|
var _old = _parent[key];
|
2021-07-23 18:18:45 +02:00
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
attributes[key] = _copyMerge(attributes[key], _old);
|
2021-07-23 18:18:45 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
// Validate the attributes
|
|
|
|
for (var key in attributes)
|
|
|
|
{
|
|
|
|
et2_validateAttrib(key, attributes[key]);
|
2021-07-22 22:54:10 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 23:02:52 +02:00
|
|
|
return attributes;
|
|
|
|
}
|
2022-08-07 10:10:33 +02:00
|
|
|
}
|