forked from verdnatura/hedera-web
49 lines
793 B
JavaScript
49 lines
793 B
JavaScript
|
|
var Component = require('vn/component');
|
|
|
|
module.exports = new Class({
|
|
Extends: Component,
|
|
Tag: 'htk-step',
|
|
Properties: {
|
|
name: {
|
|
type: String,
|
|
value: null
|
|
},
|
|
validateFunc: {
|
|
type: Function,
|
|
value: null
|
|
},
|
|
showFunc: {
|
|
type: Function,
|
|
value: null
|
|
}
|
|
},
|
|
|
|
initialize: function(props) {
|
|
Component.prototype.initialize.call(this, props);
|
|
this.createRoot('div');
|
|
},
|
|
|
|
show: function() {
|
|
if (this.showFunc)
|
|
this.showFunc();
|
|
this.node.style.display = 'block';
|
|
},
|
|
|
|
hide: function() {
|
|
this.node.style.display = 'none';
|
|
},
|
|
|
|
validate: function() {
|
|
if (this.validateFunc)
|
|
return this.validateFunc();
|
|
return true;
|
|
},
|
|
|
|
appendChild: function(child) {
|
|
if (child instanceof Component)
|
|
child = child.node;
|
|
this.node.appendChild(child);
|
|
}
|
|
});
|