mirror of https://github.com/rancher/ui.git
28 lines
675 B
JavaScript
28 lines
675 B
JavaScript
import { alias } from '@ember/object/computed';
|
|
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import ModalBase from 'shared/mixins/modal-base';
|
|
import layout from './template';
|
|
|
|
export default Component.extend(ModalBase, {
|
|
access: service(),
|
|
scope: service(),
|
|
|
|
layout,
|
|
classNames: ['modal-container', 'large-modal', 'fullscreen-modal', 'modal-shell', 'alert'],
|
|
model: null,
|
|
error: null,
|
|
|
|
url: alias('scope.currentCluster.links.shell'),
|
|
init() {
|
|
this._super(...arguments);
|
|
this.shortcuts.disable();
|
|
},
|
|
|
|
willDestroy() {
|
|
this._super(...arguments);
|
|
this.shortcuts.enable();
|
|
},
|
|
|
|
});
|