2020-03-21 18:30:11 +01:00
|
|
|
import { default as computed, on, observes } from 'discourse-common/utils/decorators';
|
2020-03-29 09:49:33 +02:00
|
|
|
import { notEmpty } from "@ember/object/computed";
|
2017-10-17 09:18:53 +02:00
|
|
|
|
|
|
|
export default Ember.Component.extend({
|
|
|
|
classNames: 'wizard-links',
|
|
|
|
items: Ember.A(),
|
2020-03-29 09:49:33 +02:00
|
|
|
anyLinks: notEmpty('links'),
|
2017-10-17 09:18:53 +02:00
|
|
|
|
2018-06-29 08:54:06 +02:00
|
|
|
@on('didInsertElement')
|
|
|
|
@observes('links.@each')
|
2017-10-17 09:18:53 +02:00
|
|
|
didInsertElement() {
|
2020-03-29 09:49:33 +02:00
|
|
|
Ember.run.scheduleOnce('afterRender', () => (this.applySortable()));
|
2017-10-17 09:18:53 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
applySortable() {
|
2020-03-29 09:49:33 +02:00
|
|
|
$(this.element).find("ul").sortable({tolerance: 'pointer'}).on('sortupdate', (e, ui) => {
|
2017-10-17 09:18:53 +02:00
|
|
|
const itemId = ui.item.data('id');
|
|
|
|
const index = ui.item.index();
|
|
|
|
Ember.run.bind(this, this.updateItemOrder(itemId, index));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
updateItemOrder(itemId, newIndex) {
|
|
|
|
const items = this.get('items');
|
|
|
|
const item = items.findBy('id', itemId);
|
|
|
|
items.removeObject(item);
|
|
|
|
items.insertAt(newIndex, item);
|
|
|
|
Ember.run.scheduleOnce('afterRender', this, () => this.applySortable());
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed('type')
|
|
|
|
header: (type) => `admin.wizard.${type}.header`,
|
|
|
|
|
|
|
|
@computed('items.@each.id', 'current')
|
|
|
|
links(items, current) {
|
|
|
|
if (!items) return;
|
|
|
|
|
|
|
|
return items.map((item) => {
|
|
|
|
if (item) {
|
|
|
|
const id = item.get('id');
|
2017-10-17 15:17:53 +02:00
|
|
|
const type = this.get('type');
|
|
|
|
const label = type === 'action' ? id : (item.get('label') || item.get('title') || id);
|
|
|
|
let link = { id, label };
|
2017-10-17 09:18:53 +02:00
|
|
|
|
|
|
|
let classes = 'btn';
|
|
|
|
if (current && item.get('id') === current.get('id')) {
|
|
|
|
classes += ' btn-primary';
|
|
|
|
};
|
|
|
|
|
|
|
|
link['classes'] = classes;
|
|
|
|
|
|
|
|
return link;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
add() {
|
|
|
|
const items = this.get('items');
|
|
|
|
const type = this.get('type');
|
2017-10-17 15:17:53 +02:00
|
|
|
const newId = `${type}_${items.length + 1}`;
|
2017-10-17 09:18:53 +02:00
|
|
|
let params = { id: newId, isNew: true };
|
|
|
|
|
|
|
|
if (type === 'step') {
|
|
|
|
params['fields'] = Ember.A();
|
|
|
|
params['actions'] = Ember.A();
|
|
|
|
};
|
|
|
|
|
|
|
|
const newItem = Ember.Object.create(params);
|
|
|
|
items.pushObject(newItem);
|
|
|
|
this.set('current', newItem);
|
|
|
|
},
|
|
|
|
|
|
|
|
change(itemId) {
|
|
|
|
const items = this.get('items');
|
|
|
|
this.set('current', items.findBy('id', itemId));
|
|
|
|
},
|
|
|
|
|
|
|
|
remove(itemId) {
|
|
|
|
const items = this.get('items');
|
|
|
|
items.removeObject(items.findBy('id', itemId));
|
|
|
|
this.set('current', items[items.length - 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|