import Controller from '@ember/controller'; import Session from 'ember-simple-auth/services/session'; import Notifications from '@datahub/utils/services/notifications'; import { inject as service } from '@ember/service'; import { computed } from '@ember/object'; import { DataModelEntity } from '@datahub/data-models/constants/entity'; export default class Application extends Controller { /** * User session management service * Retain Session here, as it is accessed from application template * @type {Session} */ @service session: Session; /** * References the application notifications service * @type {Notifications} */ @service notifications?: Notifications; /** * References the currently supported DataModelEntity for the Entity lists * @memberof Application */ listEntity?: DataModelEntity; /** * Will determine whether of not show search hero component */ @computed('currentRouteName') get showHero(): boolean { const routesWithHero = ['browse.entity.index', 'browse.index']; const target = this.target as { currentRouteName: string }; return routesWithHero.includes(target.currentRouteName || ''); } }