0
1
Fork 0
hedera-web-mindshore/js/htk/field/button.js

87 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
module.exports = new Class
({
Extends: Htk.Field
,Tag: 'htk-button'
,Properties:
{
image:
{
type: String
,set: function (x)
{
this.img.src = x;
}
2016-09-19 06:40:18 +00:00
},
2016-09-26 09:28:47 +00:00
icon:
2016-09-19 06:40:18 +00:00
{
type: String
,set: function (x)
{
this.img.src = 'image/icon/light/'+ x +'.svg';
}
},
2016-09-26 09:28:47 +00:00
tip:
{
type: String
,set: function (x)
{
if (x)
{
this.node.title = _(x);
this.img.title = _(x);
}
2015-09-16 16:11:15 +00:00
2016-10-16 14:16:08 +00:00
this.renderContent ();
2015-09-16 16:11:15 +00:00
}
,get: function ()
{
return this.node.title;
}
},
showText:
{
type: Boolean
,set: function (x)
{
this._showText = x;
2016-10-16 14:16:08 +00:00
this.renderContent ();
2015-09-16 16:11:15 +00:00
}
,get: function ()
{
return this._showText;
}
}
}
2015-09-16 16:11:15 +00:00
,_showText: false
2016-10-16 14:16:08 +00:00
,render: function ()
{
2016-10-16 14:16:08 +00:00
var node = this.createRoot ('button');
node.className = 'htk-button';
node.addEventListener ('click', this.onClick.bind (this));
2015-11-09 08:14:33 +00:00
2016-10-16 14:16:08 +00:00
this.img = this.createElement ('img');
node.appendChild (this.img);
}
2015-09-16 16:11:15 +00:00
2016-10-16 14:16:08 +00:00
,renderContent: function ()
2015-09-16 16:11:15 +00:00
{
if (this._textNode)
Vn.Node.remove (this._textNode);
if (this._showText && this.node.title)
{
2016-10-16 14:16:08 +00:00
this._textNode = this.createElement ('span');
this._textNode.appendChild (this.createTextNode (this.node.title));
2015-09-16 16:11:15 +00:00
this.node.appendChild (this._textNode);
}
}
,onClick: function ()
{
this.signalEmit ('click', this._form);
}
});