hedera-web/js/htk/widget.js

134 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
2022-05-28 15:49:46 +00:00
const NodeBuilder = require('./node-builder');
2016-10-16 14:16:08 +00:00
2022-05-28 15:49:46 +00:00
const Widget = new Class({
2016-10-16 14:16:08 +00:00
Extends: NodeBuilder
2015-03-06 23:33:54 +00:00
,Properties:
{
2016-10-16 14:16:08 +00:00
/**
* Main HTML node that represents the widget
2022-05-24 21:11:12 +00:00
*/
node: {
2016-10-14 10:58:35 +00:00
type: Object
2022-05-24 21:11:12 +00:00
,get: function() {
this.renderBase();
2016-10-14 10:58:35 +00:00
return this._node;
}
},
2022-05-28 15:49:46 +00:00
/**
* CSS syle.
*/
style: {
type: String
,set: function(x) {
this.node.style = x;
}
,get: function() {
return this.node.style;
}
},
2016-10-16 14:16:08 +00:00
/**
* CSS classes to be appendend to the node classes.
2022-05-24 21:11:12 +00:00
*/
class: {
2015-03-06 23:33:54 +00:00
type: String
2022-05-24 21:11:12 +00:00
,set: function(x) {
2016-05-02 13:05:49 +00:00
this._cssClass = x;
2022-05-24 21:11:12 +00:00
this._refreshClass();
2015-03-06 23:33:54 +00:00
}
2022-05-24 21:11:12 +00:00
,get: function() {
2016-10-14 10:58:35 +00:00
return this._node.className;
2015-03-06 23:33:54 +00:00
}
2022-05-28 00:37:24 +00:00
},
2022-05-28 15:49:46 +00:00
/**
* CSS class list.
*/
classList: {
type: Object
,get: function() {
return this.node.classList;
}
},
2022-05-28 00:37:24 +00:00
/**
* Title of the element.
*/
title: {
type: String
,set: function(x) {
this.node.title = x;
}
,get: function() {
return this.node.title;
}
2015-03-06 23:33:54 +00:00
}
}
2016-10-14 10:58:35 +00:00
,_node: null
2015-03-06 23:33:54 +00:00
2022-05-24 21:11:12 +00:00
,initialize: function(props) {
2016-10-16 14:16:08 +00:00
this.doc = document;
2022-05-24 21:11:12 +00:00
this.renderBase();
this.parent(props);
2016-09-26 09:28:47 +00:00
}
2022-05-24 21:11:12 +00:00
,createRoot: function(tagName) {
return this._node = this.createElement(tagName);
2016-09-26 09:28:47 +00:00
}
2022-05-24 21:11:12 +00:00
,renderBase: function() {
2016-10-16 14:16:08 +00:00
if (this._node)
return;
2016-05-02 13:05:49 +00:00
2022-05-24 21:11:12 +00:00
this.render();
this._refreshClass();
}
2016-05-02 13:05:49 +00:00
2022-05-24 21:11:12 +00:00
,_refreshClass: function() {
2016-10-14 10:58:35 +00:00
if (this._node && this._cssClass)
this._node.className = this._cssClass +' '+ this._node.className;
2016-05-02 13:05:49 +00:00
}
2015-03-15 12:44:57 +00:00
2022-05-24 21:11:12 +00:00
,remove: function() {
Vn.Node.remove(this._node);
2015-03-15 12:44:57 +00:00
}
2022-05-28 15:49:46 +00:00
,on: function(id, callback, instance) {
if (htmlEventMap[id]) {
this.node.addEventListener(id,
callback.bind(instance, this));
} else
this.parent(id, callback, instance);
}
});
htmlEventMap = {};
htmlEvents = [
'click',
'dblclick',
'keydown',
'keypress',
'keyup',
'mousedown',
'mousemove',
'mouseout',
'mouseover',
'mouseup',
'mousewheel',
'wheel',
'focus',
'focusout',
'focusin'
];
htmlEvents.forEach(x => htmlEventMap[x] = true);
htmlMethods = [
'addEventListener'
];
htmlMethods.forEach(method => {
Widget[method] = function() {
this.node.apply(this.node, arguments);
};
});
2016-09-26 09:28:47 +00:00
2022-05-28 15:49:46 +00:00
module.exports = Widget;