2018-02-28 19:56:08 +00:00
|
|
|
import Route from '@ember/routing/route';
|
2018-03-01 00:27:15 +00:00
|
|
|
import { collect } from '@ember/object/computed';
|
2018-02-28 19:56:08 +00:00
|
|
|
import { watchAll } from 'nomad-ui/utils/properties/watch';
|
2018-03-01 00:27:15 +00:00
|
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
2018-02-28 19:56:08 +00:00
|
|
|
|
2018-03-01 00:27:15 +00:00
|
|
|
export default Route.extend(WithWatchers, {
|
2018-02-28 19:56:08 +00:00
|
|
|
setupController(controller) {
|
|
|
|
controller.set('watcher', this.get('watch').perform());
|
|
|
|
return this._super(...arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: watchAll('node'),
|
2018-03-01 00:27:15 +00:00
|
|
|
watchers: collect('watch'),
|
2018-02-28 19:56:08 +00:00
|
|
|
});
|