mirror of https://github.com/status-im/consul.git
26 lines
590 B
JavaScript
26 lines
590 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@ember/component';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
didInsertElement: function () {
|
|
this._super(...arguments);
|
|
const component = this;
|
|
this.chart.addGuard(this.name, function () {
|
|
if (typeof component.cond === 'function') {
|
|
return component.cond(...arguments);
|
|
} else {
|
|
return component.cond;
|
|
}
|
|
});
|
|
},
|
|
willDestroyElement: function () {
|
|
this._super(...arguments);
|
|
this.chart.removeGuard(this.name);
|
|
},
|
|
});
|