352c4af1d7
no issue - ran [es5-getter-ember-codemod](https://github.com/rondale-sc/es5-getter-ember-codemod) - [es5 getters RFC](https://github.com/emberjs/rfcs/blob/master/text/0281-es5-getters.md) - updates the majority of `object.get('property')` with `object.property` with exceptions: - `.get('nested.property')` - it's not possible to determine if this is relying on "safe" path chaining for when `nested` doesn't exist - `.get('config.x')` and `.get('settings.x')` - both our `config` and `settings` services are proxy objects which do not support es5 getters - this PR is not exhaustive, there are still a number of places where `.get('service.foo')` and similar could be replaced but it gets us a long way there in a quick and automated fashion
48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
import ModalComponent from 'ghost-admin/components/modal-base';
|
|
import {alias} from '@ember/object/computed';
|
|
import {A as emberA} from '@ember/array';
|
|
import {isInvalidError} from 'ember-ajax/errors';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default ModalComponent.extend({
|
|
|
|
subscriber: alias('model'),
|
|
|
|
actions: {
|
|
updateEmail(newEmail) {
|
|
this.set('subscriber.email', newEmail);
|
|
this.set('subscriber.hasValidated', emberA());
|
|
this.get('subscriber.errors').clear();
|
|
},
|
|
|
|
confirm() {
|
|
this.addSubscriber.perform();
|
|
}
|
|
},
|
|
|
|
addSubscriber: task(function* () {
|
|
try {
|
|
yield this.confirm();
|
|
this.send('closeModal');
|
|
} catch (error) {
|
|
// TODO: server-side validation errors should be serialized
|
|
// properly so that errors are added to model.errors automatically
|
|
if (error && isInvalidError(error)) {
|
|
let [firstError] = error.payload.errors;
|
|
let {message} = firstError;
|
|
|
|
if (message && message.match(/email/i)) {
|
|
this.get('subscriber.errors').add('email', message);
|
|
this.get('subscriber.hasValidated').pushObject('email');
|
|
return;
|
|
}
|
|
}
|
|
|
|
// route action so it should bubble up to the global error handler
|
|
if (error) {
|
|
throw error;
|
|
}
|
|
}
|
|
}).drop()
|
|
});
|