mirror of https://github.com/rancher/ui.git
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
import { oneWay } from '@ember/object/computed';
|
|
import { inject as service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
import { run } from '@ember/runloop';
|
|
import { observer } from '@ember/object';
|
|
|
|
export default Controller.extend({
|
|
settings: service(),
|
|
|
|
resourceActions: service('resource-actions'),
|
|
tooltipService: service('tooltip'),
|
|
|
|
// GitHub auth params
|
|
queryParams: ['isPopup', 'redirectTo', 'fromAuthProvider'],
|
|
|
|
error: null,
|
|
error_description: null,
|
|
state: null,
|
|
code: null,
|
|
isPopup: null,
|
|
redirectTo: null,
|
|
|
|
tooltip: oneWay('tooltipService.tooltipOpts.type'),
|
|
tooltipTemplate: oneWay('tooltipService.tooltipOpts.template'),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
|
|
if ( this.get('app.environment') === 'development' ) {
|
|
run.backburner.DEBUG = true;
|
|
}
|
|
},
|
|
|
|
// currentRouteName is set by Ember.Router
|
|
// but getting the application controller to get it is inconvenient sometimes
|
|
currentRouteNameChanged: observer('currentRouteName', function() {
|
|
this.set('app.currentRouteName', this.get('currentRouteName'));
|
|
}),
|
|
|
|
});
|