mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
24b222e927
refs https://github.com/TryGhost/Team/issues/559 Members controller was becoming bloated and difficult to follow due to catering for many different concerns. - converted old modal to newer promise-modal style - pulled full label-adding logic out of the members controller and into the modal so logic is contained in one place - added `{{members-count-fetcher}}` resource that allows for member counts to be fetched directly from templates avoiding duplicated code
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class MembersBulkAddLabelModal extends Component {
|
|
@service ajax;
|
|
@service ghostPaths;
|
|
|
|
@tracked error;
|
|
@tracked response;
|
|
@tracked selectedLabel;
|
|
|
|
get isDisabled() {
|
|
return !this.args.data.query || !this.selectedLabel;
|
|
}
|
|
|
|
get hasRun() {
|
|
return !!(this.error || this.response);
|
|
}
|
|
|
|
@action
|
|
setLabel(label) {
|
|
this.selectedLabel = label;
|
|
}
|
|
|
|
@task({drop: true})
|
|
*addLabelTask() {
|
|
try {
|
|
const query = new URLSearchParams(this.args.data.query);
|
|
const addLabelUrl = `${this.ghostPaths.url.api('members/bulk')}?${query}`;
|
|
const response = yield this.ajax.put(addLabelUrl, {
|
|
data: {
|
|
bulk: {
|
|
action: 'addLabel',
|
|
meta: {
|
|
label: {
|
|
id: this.selectedLabel
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
this.args.data.onComplete?.();
|
|
|
|
this.response = response?.bulk?.meta;
|
|
|
|
return true;
|
|
} catch (e) {
|
|
if (e.payload?.errors) {
|
|
this.error = e.payload.errors[0].message;
|
|
} else {
|
|
this.error = 'An unknown error occurred. Please try again.';
|
|
}
|
|
throw e;
|
|
}
|
|
}
|
|
}
|