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
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class IndexRoute extends Route.extend(WithWatchers) {
|
2018-03-06 22:27:01 +00:00
|
|
|
startWatchers(controller) {
|
2019-03-26 07:46:44 +00:00
|
|
|
controller.set('watcher', this.watch.perform());
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2018-02-28 19:56:08 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@watchAll('node') watch;
|
|
|
|
@collect('watch') watchers;
|
|
|
|
}
|