22 lines
602 B
JavaScript
22 lines
602 B
JavaScript
import Component from '@ember/component';
|
|
import { inject as service } from '@ember/service';
|
|
import { equal, or } from '@ember/object/computed';
|
|
import { tagName } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@tagName('')
|
|
export default class TaskSubnav extends Component {
|
|
@service router;
|
|
@service keyboard;
|
|
|
|
@equal('router.currentRouteName', 'allocations.allocation.task.fs')
|
|
fsIsActive;
|
|
|
|
@equal('router.currentRouteName', 'allocations.allocation.task.fs-root')
|
|
fsRootIsActive;
|
|
|
|
@or('fsIsActive', 'fsRootIsActive')
|
|
filesLinkActive;
|
|
}
|