mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
1ad2c05d37
no issue - new linting rules that needed fixing: - calling `super` in lifecycle hooks - no usage of String prototype extensions
31 lines
854 B
JavaScript
31 lines
854 B
JavaScript
import Component from '@glimmer/component';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency-decorators';
|
|
|
|
export default class GhLaunchWizardCustomiseDesignComponent extends Component {
|
|
@service notifications;
|
|
@service settings;
|
|
|
|
willDestroy() {
|
|
super.willDestroy?.(...arguments);
|
|
this.settings.rollbackAttributes();
|
|
this.settings.errors.remove('accentColor');
|
|
}
|
|
|
|
@task
|
|
*saveAndContinueTask() {
|
|
try {
|
|
if (this.settings.errors && this.settings.errors.length !== 0) {
|
|
return;
|
|
}
|
|
yield this.settings.save();
|
|
this.args.nextStep();
|
|
} catch (error) {
|
|
if (error) {
|
|
this.notifications.showAPIError(error);
|
|
throw error;
|
|
}
|
|
}
|
|
}
|
|
}
|