2020-06-30 17:12:45 -04:00
|
|
|
/**
|
|
|
|
* Attachments
|
|
|
|
* @extends {Component}
|
|
|
|
*/
|
2020-07-04 11:53:02 -04:00
|
|
|
import {showLoading} from "../services/dom";
|
|
|
|
|
2020-06-30 17:12:45 -04:00
|
|
|
class Attachments {
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
this.container = this.$el;
|
|
|
|
this.pageId = this.$opts.pageId;
|
|
|
|
this.editContainer = this.$refs.editContainer;
|
2020-07-04 11:53:02 -04:00
|
|
|
this.listContainer = this.$refs.listContainer;
|
2020-06-30 17:12:45 -04:00
|
|
|
this.mainTabs = this.$refs.mainTabs;
|
|
|
|
this.list = this.$refs.list;
|
|
|
|
|
|
|
|
this.setupListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
setupListeners() {
|
2020-07-04 11:53:02 -04:00
|
|
|
const reloadListBound = this.reloadList.bind(this);
|
|
|
|
this.container.addEventListener('dropzone-success', reloadListBound);
|
|
|
|
this.container.addEventListener('ajax-form-success', reloadListBound);
|
2020-06-30 17:12:45 -04:00
|
|
|
|
|
|
|
this.container.addEventListener('sortable-list-sort', event => {
|
|
|
|
this.updateOrder(event.detail.ids);
|
|
|
|
});
|
|
|
|
|
2020-07-04 11:53:02 -04:00
|
|
|
this.container.addEventListener('event-emit-select-edit', event => {
|
|
|
|
this.startEdit(event.detail.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.container.addEventListener('event-emit-select-edit-back', event => {
|
|
|
|
this.stopEdit();
|
|
|
|
});
|
2020-09-13 13:58:05 -04:00
|
|
|
|
|
|
|
this.container.addEventListener('event-emit-select-insert', event => {
|
|
|
|
const insertContent = event.target.closest('[data-drag-content]').getAttribute('data-drag-content');
|
|
|
|
const contentTypes = JSON.parse(insertContent);
|
|
|
|
window.$events.emit('editor::insert', {
|
|
|
|
html: contentTypes['text/html'],
|
|
|
|
markdown: contentTypes['text/plain'],
|
|
|
|
});
|
|
|
|
});
|
2020-07-04 11:53:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
reloadList() {
|
|
|
|
this.stopEdit();
|
|
|
|
this.mainTabs.components.tabs.show('items');
|
|
|
|
window.$http.get(`/attachments/get/page/${this.pageId}`).then(resp => {
|
|
|
|
this.list.innerHTML = resp.data;
|
|
|
|
window.components.init(this.list);
|
|
|
|
});
|
2020-06-30 17:12:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
updateOrder(idOrder) {
|
|
|
|
window.$http.put(`/attachments/sort/page/${this.pageId}`, {order: idOrder}).then(resp => {
|
|
|
|
window.$events.emit('success', resp.data.message);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-04 11:53:02 -04:00
|
|
|
async startEdit(id) {
|
|
|
|
this.editContainer.classList.remove('hidden');
|
|
|
|
this.listContainer.classList.add('hidden');
|
|
|
|
|
|
|
|
showLoading(this.editContainer);
|
|
|
|
const resp = await window.$http.get(`/attachments/edit/${id}`);
|
|
|
|
this.editContainer.innerHTML = resp.data;
|
|
|
|
window.components.init(this.editContainer);
|
|
|
|
}
|
|
|
|
|
|
|
|
stopEdit() {
|
|
|
|
this.editContainer.classList.add('hidden');
|
|
|
|
this.listContainer.classList.remove('hidden');
|
|
|
|
}
|
|
|
|
|
2020-06-30 17:12:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Attachments;
|