forked from verdnatura/hedera-web
25 lines
499 B
JavaScript
25 lines
499 B
JavaScript
import './style.scss';
|
|
|
|
export default new Class({
|
|
Extends: Hedera.Form,
|
|
Template: require('./ui.xml')
|
|
|
|
,rendererFunc(scope, form) {
|
|
var isEnabled = form.$.active
|
|
scope.$.disabled.style.display = isEnabled ?
|
|
'none' : 'block';
|
|
scope.$.impersonate.node.style.display = isEnabled ?
|
|
'block' : 'none';
|
|
}
|
|
|
|
,onChangeUserClick(userName) {
|
|
this.gui.supplantUser(userName,
|
|
this.onUserSupplant.bind(this));
|
|
}
|
|
|
|
,onUserSupplant() {
|
|
this.hash.setAll({form: 'ecomerce/orders'});
|
|
}
|
|
});
|
|
|