2021-08-25 19:32:15 +02:00
|
|
|
import {et2_IInput, et2_IInputNode} from "../et2_core_interfaces";
|
2021-08-26 20:59:13 +02:00
|
|
|
import {Et2Widget} from "../Et2Widget/Et2Widget";
|
|
|
|
import {dedupeMixin} from "../../../../node_modules/@lion/core/index.js";
|
2021-08-25 19:32:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This mixin will allow any LitElement to become an Et2InputWidget
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
* export class Et2Button extends Et2InputWidget(Et2Widget(LitWidget)) {...}
|
|
|
|
*/
|
|
|
|
|
2021-08-26 20:59:13 +02:00
|
|
|
|
|
|
|
const Et2InputWidgetClass = superclass =>
|
|
|
|
class extends Et2Widget(superclass) implements et2_IInput, et2_IInputNode
|
2021-08-25 19:32:15 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
label : string = '';
|
|
|
|
protected value : string | number | Object;
|
|
|
|
protected _oldValue : string | number | Object;
|
|
|
|
|
|
|
|
/** WebComponent **/
|
|
|
|
static get properties()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
...super.properties,
|
|
|
|
// readOnly is what the property is in Lion, readonly is the attribute
|
|
|
|
readOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
attribute: 'readonly',
|
|
|
|
reflect: true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-08-26 20:59:13 +02:00
|
|
|
constructor(...args : any[])
|
2021-08-25 19:32:15 +02:00
|
|
|
{
|
2021-08-26 20:59:13 +02:00
|
|
|
super(...args);
|
2021-08-25 19:32:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
set_value(new_value)
|
|
|
|
{
|
|
|
|
this.value = new_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
get_value()
|
|
|
|
{
|
|
|
|
return this.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
getValue()
|
|
|
|
{
|
|
|
|
return typeof this.serializedValue !== "undefined" ? this.serializedValue : this.modalValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isDirty()
|
|
|
|
{
|
|
|
|
let value = this.getValue();
|
|
|
|
if(typeof value !== typeof this._oldValue)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(this._oldValue === value)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch(typeof this._oldValue)
|
|
|
|
{
|
|
|
|
case "object":
|
2021-08-26 20:59:13 +02:00
|
|
|
if(Array.isArray(this._oldValue) &&
|
2021-08-25 19:32:15 +02:00
|
|
|
this._oldValue.length !== value.length
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for(let key in this._oldValue)
|
|
|
|
{
|
|
|
|
if(this._oldValue[key] !== value[key])
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return this._oldValue != value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resetDirty()
|
|
|
|
{
|
|
|
|
this._oldValue = this.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
isValid(messages)
|
|
|
|
{
|
|
|
|
var ok = true;
|
|
|
|
|
|
|
|
// Check for required
|
|
|
|
if(this.options && this.options.needed && !this.options.readonly && !this.disabled &&
|
|
|
|
(this.getValue() == null || this.getValue().valueOf() == ''))
|
|
|
|
{
|
|
|
|
messages.push(this.egw().lang('Field must not be empty !!!'));
|
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
getInputNode()
|
|
|
|
{
|
|
|
|
// From LionInput
|
|
|
|
return this._inputNode;
|
|
|
|
}
|
|
|
|
};
|
2021-08-26 20:59:13 +02:00
|
|
|
|
|
|
|
export const Et2InputWidget = dedupeMixin(Et2InputWidgetClass);
|