mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
5d97c1710f
no issue - bumps eslint and eslint-plugin-ember versions - octane rules are enabled by default - disabled them in our eslintrc.json so we can switch to warn/error whilst migrating to octane - fixed a couple of linting errors from new/updated rules
86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
import Controller from '@ember/controller';
|
|
import RSVP from 'rsvp';
|
|
import {alias, sort} from '@ember/object/computed';
|
|
import {computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default Controller.extend({
|
|
session: service(),
|
|
store: service(),
|
|
|
|
showInviteUserModal: false,
|
|
|
|
inviteOrder: null,
|
|
userOrder: null,
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.inviteOrder = ['email'];
|
|
this.userOrder = ['name', 'email'];
|
|
},
|
|
|
|
currentUser: alias('model'),
|
|
|
|
sortedInvites: sort('filteredInvites', 'inviteOrder'),
|
|
sortedActiveUsers: sort('activeUsers', 'userOrder'),
|
|
sortedSuspendedUsers: sort('suspendedUsers', 'userOrder'),
|
|
|
|
filteredInvites: computed.filterBy('invites', 'isNew', false),
|
|
|
|
invites: computed(function () {
|
|
return this.store.peekAll('invite');
|
|
}),
|
|
|
|
allUsers: computed(function () {
|
|
return this.store.peekAll('user');
|
|
}),
|
|
|
|
activeUsers: computed('allUsers.@each.status', function () {
|
|
return this.allUsers.filter((user) => {
|
|
return user.status !== 'inactive';
|
|
});
|
|
}),
|
|
|
|
suspendedUsers: computed('allUsers.@each.status', function () {
|
|
return this.allUsers.filter((user) => {
|
|
return user.status === 'inactive';
|
|
});
|
|
}),
|
|
|
|
actions: {
|
|
toggleInviteUserModal() {
|
|
this.toggleProperty('showInviteUserModal');
|
|
}
|
|
},
|
|
|
|
backgroundUpdate: task(function* () {
|
|
let users = this.fetchUsers.perform();
|
|
let invites = this.fetchInvites.perform();
|
|
|
|
try {
|
|
yield RSVP.all([users, invites]);
|
|
} catch (error) {
|
|
this.send('error', error);
|
|
}
|
|
}),
|
|
|
|
fetchUsers: task(function* () {
|
|
yield this.store.query('user', {limit: 'all'});
|
|
}),
|
|
|
|
fetchInvites: task(function* () {
|
|
if (this.currentUser.isAuthorOrContributor) {
|
|
return;
|
|
}
|
|
|
|
// ensure roles are loaded before invites. Invites do not have embedded
|
|
// role records which means Ember Data will throw errors when trying to
|
|
// read the invite.role data when the role has not yet been loaded
|
|
yield this.store.query('role', {limit: 'all'});
|
|
|
|
return yield this.store.query('invite', {limit: 'all'});
|
|
})
|
|
});
|