open-nomad/ui/app/components/client-node-row.js

24 lines
466 B
JavaScript
Raw Normal View History

import Component from '@ember/component';
import { lazyClick } from '../helpers/lazy-click';
2017-09-19 14:47:10 +00:00
export default Component.extend({
tagName: 'tr',
classNames: ['client-node-row', 'is-interactive'],
node: null,
onClick() {},
click(event) {
lazyClick([this.get('onClick'), event]);
2017-09-19 14:47:10 +00:00
},
didReceiveAttrs() {
// Reload the node in order to get detail information
const node = this.get('node');
if (node) {
node.reload();
}
},
});