mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:02:46 +08:00
REFACTORING: admin-edit-badge-groupings (#7015)
This commit is contained in:
parent
bf2059baf5
commit
ee692414ce
|
@ -1,22 +1,24 @@
|
|||
import { ajax } from "discourse/lib/ajax";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
import { observes } from "ember-addons/ember-computed-decorators";
|
||||
|
||||
export default Ember.Controller.extend(ModalFunctionality, {
|
||||
modelChanged: function() {
|
||||
@observes("model")
|
||||
modelChanged() {
|
||||
const model = this.get("model");
|
||||
const copy = Ember.A();
|
||||
const store = this.store;
|
||||
|
||||
if (model) {
|
||||
model.forEach(function(o) {
|
||||
copy.pushObject(store.createRecord("badge-grouping", o));
|
||||
});
|
||||
model.forEach(o =>
|
||||
copy.pushObject(store.createRecord("badge-grouping", o))
|
||||
);
|
||||
}
|
||||
|
||||
this.set("workingCopy", copy);
|
||||
}.observes("model"),
|
||||
},
|
||||
|
||||
moveItem: function(item, delta) {
|
||||
moveItem(item, delta) {
|
||||
const copy = this.get("workingCopy");
|
||||
const index = copy.indexOf(item);
|
||||
if (index + delta < 0 || index + delta >= copy.length) {
|
||||
|
@ -28,60 +30,51 @@ export default Ember.Controller.extend(ModalFunctionality, {
|
|||
},
|
||||
|
||||
actions: {
|
||||
up: function(item) {
|
||||
up(item) {
|
||||
this.moveItem(item, -1);
|
||||
},
|
||||
down: function(item) {
|
||||
down(item) {
|
||||
this.moveItem(item, 1);
|
||||
},
|
||||
delete: function(item) {
|
||||
delete(item) {
|
||||
this.get("workingCopy").removeObject(item);
|
||||
},
|
||||
cancel: function() {
|
||||
this.set("model", null);
|
||||
this.set("workingCopy", null);
|
||||
cancel() {
|
||||
this.setProperties({ model: null, workingCopy: null });
|
||||
this.send("closeModal");
|
||||
},
|
||||
edit: function(item) {
|
||||
edit(item) {
|
||||
item.set("editing", true);
|
||||
},
|
||||
save: function(item) {
|
||||
save(item) {
|
||||
item.set("editing", false);
|
||||
},
|
||||
add: function() {
|
||||
add() {
|
||||
const obj = this.store.createRecord("badge-grouping", {
|
||||
editing: true,
|
||||
name: I18n.t("admin.badges.badge_grouping")
|
||||
});
|
||||
this.get("workingCopy").pushObject(obj);
|
||||
},
|
||||
saveAll: function() {
|
||||
const self = this;
|
||||
var items = this.get("workingCopy");
|
||||
const groupIds = items.map(function(i) {
|
||||
return i.get("id") || -1;
|
||||
});
|
||||
const names = items.map(function(i) {
|
||||
return i.get("name");
|
||||
});
|
||||
saveAll() {
|
||||
let items = this.get("workingCopy");
|
||||
const groupIds = items.map(i => i.get("id") || -1);
|
||||
const names = items.map(i => i.get("name"));
|
||||
|
||||
ajax("/admin/badges/badge_groupings", {
|
||||
data: { ids: groupIds, names: names },
|
||||
data: { ids: groupIds, names },
|
||||
method: "POST"
|
||||
}).then(
|
||||
function(data) {
|
||||
items = self.get("model");
|
||||
data => {
|
||||
items = this.get("model");
|
||||
items.clear();
|
||||
data.badge_groupings.forEach(function(g) {
|
||||
items.pushObject(self.store.createRecord("badge-grouping", g));
|
||||
data.badge_groupings.forEach(g => {
|
||||
items.pushObject(this.store.createRecord("badge-grouping", g));
|
||||
});
|
||||
self.set("model", null);
|
||||
self.set("workingCopy", null);
|
||||
self.send("closeModal");
|
||||
this.setProperties({ model: null, workingCopy: null });
|
||||
this.send("closeModal");
|
||||
},
|
||||
function() {
|
||||
bootbox.alert(I18n.t("generic_error"));
|
||||
}
|
||||
() => bootbox.alert(I18n.t("generic_error"))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,30 +1,34 @@
|
|||
{{#d-modal-body title="admin.badges.badge_groupings.modal_title" class="badge-groupings-modal"}}
|
||||
<div class="badge-groupings">
|
||||
<ul class='badge-groupings-list'>
|
||||
<ul class="badge-groupings-list">
|
||||
{{#each workingCopy as |wc|}}
|
||||
<li class="badge-grouping-item">
|
||||
<div class="badge-grouping">
|
||||
{{#if wc.editing}}
|
||||
{{input value=wc.name class="badge-grouping-name-input"}}
|
||||
<button {{action "save" wc}} class="btn no-text">{{d-icon 'check'}}</button>
|
||||
{{d-button action=(action "save" wc) icon="check"}}
|
||||
{{else}}
|
||||
<span>{{wc.displayName}}</span>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class='actions'>
|
||||
<button {{action "edit" wc}} class="btn no-text" disabled={{wc.system}}>{{d-icon 'pencil-alt'}}</button>
|
||||
<button {{action "up" wc}} class="btn no-text">{{d-icon 'chevron-up'}}</button>
|
||||
<button {{action "down" wc}} class="btn no-text">{{d-icon 'chevron-down'}}</button>
|
||||
<button {{action "delete" wc}} class="btn no-text btn-danger"
|
||||
disabled={{wc.system}}>{{d-icon 'times'}}</button>
|
||||
<div class="actions">
|
||||
{{d-button action=(action "edit" wc) disabled=wc.system icon="pencil-alt"}}
|
||||
{{d-button action=(action "up" wc) icon="chevron-up"}}
|
||||
{{d-button action=(action "down" wc) icon="chevron-down"}}
|
||||
{{d-button action=(action "delete" wc) disabled=wc.system icon="times"}}
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
<button class='btn new-badge-grouping' {{action "add"}}>{{i18n 'admin.badges.new'}}</button>
|
||||
{{d-button action=(action "add") label="admin.badges.new"}}
|
||||
{{/d-modal-body}}
|
||||
|
||||
<div class="modal-footer">
|
||||
<button class='btn btn-primary' {{action "saveAll"}} disabled={{submitDisabled}}>{{i18n 'admin.badges.save'}}</button>
|
||||
{{d-button
|
||||
action=(action "saveAll")
|
||||
label="admin.badges.save"
|
||||
class="btn-primary"
|
||||
disabled=submitDisabled}}
|
||||
{{d-modal-cancel close=(route-action "closeModal")}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user