mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 08:39:38 -05:00
35 lines
947 B
Text
35 lines
947 B
Text
|
import computed from 'ember-addons/ember-computed-decorators';
|
||
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
||
|
|
||
|
export default Ember.Controller.extend({
|
||
|
users: null,
|
||
|
groupId: null,
|
||
|
saving: false,
|
||
|
|
||
|
@computed('saving', 'users', 'groupId')
|
||
|
buttonDisabled(saving, users, groupId) {
|
||
|
return saving || !groupId || !users || !users.length;
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
addToGroup() {
|
||
|
if (this.get('saving')) { return; }
|
||
|
|
||
|
const users = this.get('users').split("\n")
|
||
|
.uniq()
|
||
|
.reject(x => x.length === 0);
|
||
|
|
||
|
this.set('saving', true);
|
||
|
Discourse.ajax('/admin/groups/bulk', {
|
||
|
data: { users, group_id: this.get('groupId') },
|
||
|
method: 'PUT'
|
||
|
}).then(() => {
|
||
|
this.transitionToRoute('adminGroups.bulkComplete');
|
||
|
}).catch(popupAjaxError).finally(() => {
|
||
|
this.set('saving', false);
|
||
|
});
|
||
|
|
||
|
}
|
||
|
}
|
||
|
});
|