mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
85cce39af7
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades - cleaned up the `upload-image` modal which had multiple areas of code that were no longer being used - disabled `no-duplicate-landmark-elements` template lint rule as it's buggy and mostly gives false positives
58 lines
1.6 KiB
JavaScript
58 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 UnsuspendUserModal extends Component {
|
|
@service limit;
|
|
@service notifications;
|
|
@service router;
|
|
|
|
@tracked hostLimitError = null;
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.checkHostLimitsTask.perform();
|
|
}
|
|
|
|
@action
|
|
upgrade() {
|
|
this.router.transitionTo('pro');
|
|
this.args.close();
|
|
}
|
|
|
|
@task
|
|
*checkHostLimitsTask() {
|
|
if (this.args.data.user.role.name !== 'Contributor' && this.limit.limiter.isLimited('staff')) {
|
|
try {
|
|
yield this.limit.limiter.errorIfWouldGoOverLimit('staff');
|
|
} catch (error) {
|
|
if (error.errorType === 'HostLimitError') {
|
|
this.hostLimitError = error.message;
|
|
} else {
|
|
this.notifications.showAPIError(error, {key: 'staff.limit'});
|
|
this.args.close();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@task({drop: true})
|
|
*unsuspendUserTask() {
|
|
try {
|
|
const {user, saveTask} = this.args.data;
|
|
|
|
user.status = 'active';
|
|
yield saveTask.perform();
|
|
|
|
this.notifications.closeAlerts('user.unsuspend');
|
|
} catch (error) {
|
|
this.notifications.showAlert('The user could not be unsuspended. Please try again.', {type: 'error', key: 'user.unsuspend.failed'});
|
|
throw error;
|
|
} finally {
|
|
this.args.close();
|
|
}
|
|
}
|
|
}
|