mirror of
https://github.com/discourse/discourse-table-builder.git
synced 2026-09-16 14:52:13 -04:00
106 lines
3.1 KiB
JavaScript
106 lines
3.1 KiB
JavaScript
import { apiInitializer } from "discourse/lib/api";
|
|
import SpreadsheetEditor from "../components/spreadsheet-editor";
|
|
import { schedule } from "@ember/runloop";
|
|
import I18n from "I18n";
|
|
import { iconNode } from "discourse-common/lib/icon-library";
|
|
import { create } from "virtual-dom";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { parseAsync } from "discourse/lib/text";
|
|
import { tokenRange } from "../../discourse-table-builder/lib/utilities";
|
|
|
|
export default apiInitializer("0.11.1", (api) => {
|
|
const modal = api.container.lookup("service:modal");
|
|
|
|
function createButton() {
|
|
const openPopupBtn = document.createElement("button");
|
|
openPopupBtn.classList.add(
|
|
"open-popup-link",
|
|
"btn-default",
|
|
"btn",
|
|
"btn-icon",
|
|
"btn-edit-table",
|
|
"no-text"
|
|
);
|
|
const editIcon = create(
|
|
iconNode("pencil-alt", { class: "edit-table-icon" })
|
|
);
|
|
openPopupBtn.title = I18n.t(
|
|
themePrefix("discourse_table_builder.edit.btn_edit")
|
|
);
|
|
openPopupBtn.append(editIcon);
|
|
return openPopupBtn;
|
|
}
|
|
|
|
function generateModal() {
|
|
const tableIndex = this.tableIndex;
|
|
|
|
return ajax(`/posts/${this.id}`, { type: "GET" })
|
|
.then((post) =>
|
|
parseAsync(post.raw).then((tokens) => {
|
|
const allTables = tokenRange(tokens, "table_open", "table_close");
|
|
const tableTokens = allTables[tableIndex];
|
|
|
|
modal.show(SpreadsheetEditor, {
|
|
model: {
|
|
post,
|
|
tableIndex,
|
|
tableTokens,
|
|
},
|
|
});
|
|
})
|
|
)
|
|
.catch(popupAjaxError);
|
|
}
|
|
|
|
function generatePopups(tables, attrs) {
|
|
tables.forEach((table, index) => {
|
|
const popupBtn = createButton();
|
|
table.parentNode.setAttribute("data-table-index", index);
|
|
table.parentNode.classList.add("fullscreen-table-wrapper");
|
|
const expandBtn = table.parentNode.querySelector(".open-popup-link");
|
|
|
|
if (table.parentNode.contains(expandBtn)) {
|
|
expandBtn.parentNode.insertBefore(popupBtn, expandBtn);
|
|
} else {
|
|
const buttonWrapper = document.createElement("div");
|
|
buttonWrapper.classList.add("fullscreen-table-wrapper--buttons");
|
|
buttonWrapper.append(popupBtn);
|
|
table.parentNode.insertBefore(buttonWrapper, table);
|
|
}
|
|
|
|
popupBtn.addEventListener(
|
|
"click",
|
|
generateModal.bind({ tableIndex: index, ...attrs }),
|
|
false
|
|
);
|
|
});
|
|
}
|
|
|
|
function cleanupPopupBtns() {
|
|
const popupBtns = document.querySelectorAll("button.open-popup-link");
|
|
popupBtns.forEach((btn) => btn.removeEventListener("click", generateModal));
|
|
}
|
|
|
|
api.decorateCookedElement(
|
|
(post, helper) => {
|
|
const canEdit = helper.widget.attrs.canEdit;
|
|
|
|
if (!canEdit) {
|
|
return;
|
|
}
|
|
|
|
schedule("afterRender", () => {
|
|
const tables = post.querySelectorAll(".md-table table");
|
|
generatePopups(tables, helper.widget.attrs);
|
|
});
|
|
},
|
|
{
|
|
onlyStream: true,
|
|
id: "edit-table",
|
|
}
|
|
);
|
|
|
|
api.cleanupStream(cleanupPopupBtns);
|
|
});
|