2014-07-23 11:20:45 +08:00
|
|
|
export default Em.ObjectController.extend({
|
2015-01-22 03:52:48 +08:00
|
|
|
needs: ['adminGroupsType'],
|
2014-04-24 01:25:02 +08:00
|
|
|
disableSave: false,
|
2015-01-06 01:51:45 +08:00
|
|
|
|
|
|
|
currentPage: function() {
|
2015-02-11 06:20:16 +08:00
|
|
|
if (this.get("user_count") === 0) { return 0; }
|
2015-01-06 01:51:45 +08:00
|
|
|
return Math.floor(this.get("offset") / this.get("limit")) + 1;
|
|
|
|
}.property("limit", "offset", "user_count"),
|
|
|
|
|
|
|
|
totalPages: function() {
|
2015-02-11 06:20:16 +08:00
|
|
|
if (this.get("user_count") === 0) { return 0; }
|
2015-01-06 01:51:45 +08:00
|
|
|
return Math.floor(this.get("user_count") / this.get("limit")) + 1;
|
|
|
|
}.property("limit", "user_count"),
|
|
|
|
|
|
|
|
showingFirst: Em.computed.lte("currentPage", 1),
|
|
|
|
showingLast: Discourse.computed.propertyEqual("currentPage", "totalPages"),
|
2014-04-24 01:25:02 +08:00
|
|
|
|
|
|
|
aliasLevelOptions: function() {
|
|
|
|
return [
|
2015-01-06 01:51:45 +08:00
|
|
|
{ name: I18n.t("groups.alias_levels.nobody"), value: 0 },
|
|
|
|
{ name: I18n.t("groups.alias_levels.mods_and_admins"), value: 2 },
|
|
|
|
{ name: I18n.t("groups.alias_levels.members_mods_and_admins"), value: 3 },
|
|
|
|
{ name: I18n.t("groups.alias_levels.everyone"), value: 99 }
|
2014-04-24 01:25:02 +08:00
|
|
|
];
|
|
|
|
}.property(),
|
|
|
|
|
|
|
|
actions: {
|
2015-04-03 22:50:51 +08:00
|
|
|
next() {
|
2015-01-06 01:51:45 +08:00
|
|
|
if (this.get("showingLast")) { return; }
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
const group = this.get("model"),
|
|
|
|
offset = Math.min(group.get("offset") + group.get("limit"), group.get("user_count"));
|
2015-01-06 01:51:45 +08:00
|
|
|
|
|
|
|
group.set("offset", offset);
|
|
|
|
|
|
|
|
return group.findMembers();
|
|
|
|
},
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
previous() {
|
2015-01-06 01:51:45 +08:00
|
|
|
if (this.get("showingFirst")) { return; }
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
const group = this.get("model"),
|
|
|
|
offset = Math.max(group.get("offset") - group.get("limit"), 0);
|
2015-01-06 01:51:45 +08:00
|
|
|
|
|
|
|
group.set("offset", offset);
|
|
|
|
|
|
|
|
return group.findMembers();
|
|
|
|
},
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
removeMember(member) {
|
2015-04-03 23:09:51 +08:00
|
|
|
const self = this,
|
|
|
|
message = I18n.t("admin.groups.delete_member_confirm", { username: member.get("username"), group: this.get("name") });
|
2015-01-06 01:51:45 +08:00
|
|
|
return bootbox.confirm(message, I18n.t("no_value"), I18n.t("yes_value"), function(confirm) {
|
|
|
|
if (confirm) {
|
|
|
|
self.get("model").removeMember(member);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
addMembers() {
|
2015-01-06 01:51:45 +08:00
|
|
|
if (Em.isEmpty(this.get("usernames"))) { return; }
|
|
|
|
this.get("model").addMembers(this.get("usernames"));
|
2015-01-22 03:52:48 +08:00
|
|
|
// clear the user selector
|
|
|
|
this.set("usernames", null);
|
2015-01-06 01:51:45 +08:00
|
|
|
},
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
save() {
|
|
|
|
const group = this.get('model'),
|
|
|
|
groupsController = this.get("controllers.adminGroupsType");
|
2014-04-24 01:25:02 +08:00
|
|
|
|
2015-01-22 03:52:48 +08:00
|
|
|
this.set('disableSave', true);
|
2014-04-24 01:25:02 +08:00
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
let promise = group.get("id") ? group.save() : group.create().then(() => groupsController.addObject(group));
|
|
|
|
|
|
|
|
promise.then(() => this.transitionToRoute("adminGroup", group))
|
|
|
|
.catch(e => bootbox.alert($.parseJSON(e.responseText).errors))
|
|
|
|
.finally(() => this.set('disableSave', false));
|
2014-04-24 01:25:02 +08:00
|
|
|
},
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
destroy() {
|
|
|
|
const group = this.get('model'),
|
|
|
|
groupsController = this.get('controllers.adminGroupsType'),
|
|
|
|
self = this;
|
2014-04-24 01:25:02 +08:00
|
|
|
|
2015-01-22 03:52:48 +08:00
|
|
|
this.set('disableSave', true);
|
|
|
|
|
2015-04-03 22:50:51 +08:00
|
|
|
bootbox.confirm(
|
|
|
|
I18n.t("admin.groups.delete_confirm"),
|
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
|
|
|
function(confirmed) {
|
|
|
|
if (confirmed) {
|
|
|
|
group.destroy().then(() => {
|
|
|
|
groupsController.get('model').removeObject(group);
|
|
|
|
self.transitionToRoute('adminGroups.index');
|
|
|
|
}).catch(() => bootbox.alert(I18n.t("admin.groups.delete_failed")))
|
|
|
|
.finally(() => self.set('disableSave', false));
|
|
|
|
} else {
|
2014-04-24 01:25:02 +08:00
|
|
|
self.set('disableSave', false);
|
2015-04-03 22:50:51 +08:00
|
|
|
}
|
2014-04-24 01:25:02 +08:00
|
|
|
}
|
2015-04-03 22:50:51 +08:00
|
|
|
);
|
2014-04-24 01:25:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|