mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 17:04:59 +03:00
8d01fb5556
no issue - ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator - skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
27 lines
694 B
JavaScript
27 lines
694 B
JavaScript
import Controller from '@ember/controller';
|
|
import classic from 'ember-classic-decorator';
|
|
import {computed} from '@ember/object';
|
|
import {readOnly} from '@ember/object/computed';
|
|
|
|
@classic
|
|
export default class ErrorController extends Controller {
|
|
stack = false;
|
|
|
|
@readOnly('model')
|
|
error;
|
|
|
|
@computed('error.status')
|
|
get code() {
|
|
return this.get('error.status') > 200 ? this.get('error.status') : 500;
|
|
}
|
|
|
|
@computed('error.statusText')
|
|
get message() {
|
|
if (this.code === 404) {
|
|
return 'Page not found';
|
|
}
|
|
|
|
return this.get('error.statusText') !== 'error' ? this.get('error.statusText') : 'Internal Server Error';
|
|
}
|
|
}
|