Files
notesnook/packages/core/migrations.js

142 lines
3.9 KiB
JavaScript
Raw Normal View History

import { parseHTML } from "./utils/html-parser";
import { decodeHTML5 } from "entities";
export const migrations = {
2021-10-23 10:59:03 +05:00
5.0: {},
5.1: {},
5.2: {
note: replaceDateEditedWithDateModified(),
notebook: replaceDateEditedWithDateModified(),
tag: replaceDateEditedWithDateModified(true),
attachment: replaceDateEditedWithDateModified(true),
trash: replaceDateEditedWithDateModified(),
tiny: (item) => {
item = replaceDateEditedWithDateModified()(item);
2022-07-07 13:17:55 +05:00
if (!item.data || item.data.iv) return migrations["5.3"].tiny(item);
item.data = removeToxClassFromChecklist(wrapTablesWithDiv(item.data));
2022-07-07 13:17:55 +05:00
return migrations["5.3"].tiny(item);
},
settings: replaceDateEditedWithDateModified(true),
},
5.3: {
tiny: (item) => {
2022-07-07 13:17:55 +05:00
if (!item.data || item.data.iv) return migrations["5.4"].tiny(item);
item.data = decodeWrappedTableHtml(item.data);
2022-07-07 13:17:55 +05:00
return migrations["5.4"].tiny(item);
},
},
5.4: {
2022-07-07 13:17:55 +05:00
tiny: (item) => {
if (!item.data || item.data.iv) return item;
item.type = "tiptap";
item.data = tinyToTiptap(item.data);
return item;
},
},
5.5: {
note: false,
2020-12-07 13:11:44 +05:00
notebook: false,
tag: false,
attachment: false,
trash: false,
tiny: false,
2022-07-07 13:17:55 +05:00
tiptap: false,
settings: false,
},
};
function replaceDateEditedWithDateModified(removeDateEditedProperty = false) {
return function (item) {
item.dateModified = item.dateEdited;
if (removeDateEditedProperty) delete item.dateEdited;
delete item.persistDateEdited;
return item;
};
}
function wrapTablesWithDiv(html) {
const document = parseHTML(html);
const tables = document.getElementsByTagName("table");
for (let table of tables) {
table.setAttribute("contenteditable", "true");
const div = document.createElement("div");
div.setAttribute("contenteditable", "false");
div.innerHTML = table.outerHTML;
div.classList.add("table-container");
table.replaceWith(div);
}
return document.outerHTML || document.body.innerHTML;
}
function removeToxClassFromChecklist(html) {
const document = parseHTML(html);
const checklists = document.querySelectorAll(
".tox-checklist,.tox-checklist--checked"
);
for (let item of checklists) {
if (item.classList.contains("tox-checklist--checked"))
item.classList.replace("tox-checklist--checked", "checked");
else if (item.classList.contains("tox-checklist"))
item.classList.replace("tox-checklist", "checklist");
}
return document.outerHTML || document.body.innerHTML;
}
const regex = /<div class="table-container".*<\/table><\/div>/gm;
function decodeWrappedTableHtml(html) {
2021-12-31 09:18:06 +05:00
return html.replaceAll(regex, (match) => {
const html = decodeHTML5(match);
return html;
});
}
2022-07-07 13:17:55 +05:00
export function tinyToTiptap(html) {
if (typeof html !== "string") return html;
2022-07-07 13:17:55 +05:00
const document = parseHTML(html);
const tables = document.querySelectorAll("table");
for (const table of tables) {
table.removeAttribute("contenteditable");
if (
table.parentElement &&
table.parentElement.nodeName.toLowerCase() === "div"
) {
2022-07-07 13:17:55 +05:00
table.parentElement.replaceWith(table);
}
}
const images = document.querySelectorAll("p > img");
for (const image of images) {
image.parentElement.replaceWith(image.cloneNode());
}
const breaks = document.querySelectorAll("br");
for (const br of breaks) {
br.remove();
}
const paragraphs = document.querySelectorAll("p");
for (const p of paragraphs) {
if (!p.childNodes.length) p.remove();
}
const bogus = document.querySelectorAll("[data-mce-bogus]");
for (const element of bogus) {
element.remove();
}
const attributes = document.querySelectorAll(
"[data-mce-href], [data-mce-flag]"
);
for (const element of attributes) {
element.removeAttribute("data-mce-href");
element.removeAttribute("data-mce-flag");
}
return document.body.innerHTML;
}