Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
88 Zeilen
2,3 KiB
JavaScript
88 Zeilen
2,3 KiB
JavaScript
import { default as discourseComputed, on, observes } from 'discourse-common/utils/decorators';
|
|
import { notEmpty } from "@ember/object/computed";
|
|
import { scheduleOnce, bind } from "@ember/runloop";
|
|
import EmberObject from "@ember/object";
|
|
import Component from "@ember/component";
|
|
import { A } from "@ember/array";
|
|
|
|
export default Component.extend({
|
|
classNameBindings: [':wizard-links', 'type'],
|
|
items: A(),
|
|
anyLinks: notEmpty('links'),
|
|
|
|
@on('didInsertElement')
|
|
@observes('links.@each')
|
|
didInsertElement() {
|
|
scheduleOnce('afterRender', () => (this.applySortable()));
|
|
},
|
|
|
|
applySortable() {
|
|
$(this.element).find("ul").sortable({tolerance: 'pointer'}).on('sortupdate', (e, ui) => {
|
|
const itemId = ui.item.data('id');
|
|
const index = ui.item.index();
|
|
bind(this, this.updateItemOrder(itemId, index));
|
|
});
|
|
},
|
|
|
|
updateItemOrder(itemId, newIndex) {
|
|
const items = this.items;
|
|
const item = items.findBy('id', itemId);
|
|
items.removeObject(item);
|
|
items.insertAt(newIndex, item);
|
|
scheduleOnce('afterRender', this, () => this.applySortable());
|
|
},
|
|
|
|
@discourseComputed('type')
|
|
header: (type) => `admin.wizard.${type}.header`,
|
|
|
|
@discourseComputed('current', 'items.@each.id', 'items.@each.label')
|
|
links(current, items) {
|
|
if (!items) return;
|
|
|
|
return items.map((item) => {
|
|
if (item) {
|
|
const id = item.id;
|
|
const type = this.type;
|
|
const label = item.label || item.title || id;
|
|
let link = { id, label };
|
|
|
|
let classes = 'btn';
|
|
if (current && item.id === current.id) {
|
|
classes += ' btn-primary';
|
|
};
|
|
|
|
link['classes'] = classes;
|
|
|
|
return link;
|
|
}
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
add() {
|
|
const items = this.items;
|
|
const type = this.type;
|
|
const newId = `${type}_${items.length + 1}`;
|
|
let params = { id: newId, isNew: true };
|
|
|
|
if (type === 'step') {
|
|
params['fields'] = A();
|
|
params['actions'] = A();
|
|
};
|
|
|
|
const newItem = EmberObject.create(params);
|
|
items.pushObject(newItem);
|
|
this.set('current', newItem);
|
|
},
|
|
|
|
change(itemId) {
|
|
this.set('current', this.items.findBy('id', itemId));
|
|
},
|
|
|
|
remove(itemId) {
|
|
const items = this.items;
|
|
items.removeObject(items.findBy('id', itemId));
|
|
this.set('current', items[items.length - 1]);
|
|
}
|
|
}
|
|
});
|