mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-30 05:18:49 +01:00
68 lines
2.8 KiB
TypeScript
68 lines
2.8 KiB
TypeScript
import {fetchPost} from "../util/fetch";
|
|
import {getDisplayName, getNotebookName} from "../util/pathName";
|
|
import {confirmDialog} from "../dialog/confirmDialog";
|
|
import {hasTopClosestByTag} from "../protyle/util/hasClosest";
|
|
import {Constants} from "../constants";
|
|
import {showMessage} from "../dialog/message";
|
|
|
|
export const deleteFile = (notebookId: string, pathString: string, name: string) => {
|
|
if (window.siyuan.config.fileTree.removeDocWithoutConfirm) {
|
|
fetchPost("/api/filetree/removeDoc", {
|
|
notebook: notebookId,
|
|
path: pathString
|
|
});
|
|
return;
|
|
}
|
|
fetchPost("/api/block/getDocInfo", {
|
|
id: getDisplayName(pathString, true, true)
|
|
}, (response) => {
|
|
let tip = `${window.siyuan.languages.confirmDelete} <b>${name}</b>?`;
|
|
if (response.data.subFileCount > 0) {
|
|
tip = `${window.siyuan.languages.confirmDelete} <b>${name}</b> ${window.siyuan.languages.andSubFile.replace("x", response.data.subFileCount)}?`;
|
|
}
|
|
confirmDialog(window.siyuan.languages.deleteOpConfirm, tip, () => {
|
|
fetchPost("/api/filetree/removeDoc", {
|
|
notebook: notebookId,
|
|
path: pathString
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
export const deleteFiles = (liElements: Element[]) => {
|
|
if (liElements.length === 1) {
|
|
const itemTopULElement = hasTopClosestByTag(liElements[0], "UL");
|
|
if (itemTopULElement) {
|
|
const itemNotebookId = itemTopULElement.getAttribute("data-url");
|
|
if (liElements[0].getAttribute("data-type") === "navigation-file") {
|
|
deleteFile(itemNotebookId, liElements[0].getAttribute("data-path"), getDisplayName(liElements[0].getAttribute("data-name"), false, true));
|
|
} else {
|
|
confirmDialog(window.siyuan.languages.deleteOpConfirm,
|
|
`${window.siyuan.languages.confirmDelete} <b>${Lute.EscapeHTMLStr(getNotebookName(itemNotebookId))}</b>?`, () => {
|
|
fetchPost("/api/notebook/removeNotebook", {
|
|
notebook: itemNotebookId,
|
|
callback: Constants.CB_MOUNT_REMOVE
|
|
});
|
|
});
|
|
}
|
|
}
|
|
} else {
|
|
const paths: string[] = [];
|
|
liElements.forEach(item => {
|
|
const dataPath = item.getAttribute("data-path");
|
|
if (dataPath !== "/") {
|
|
paths.push(item.getAttribute("data-path"));
|
|
}
|
|
});
|
|
if (paths.length === 0) {
|
|
showMessage(window.siyuan.languages.notBatchRemove);
|
|
return;
|
|
}
|
|
confirmDialog(window.siyuan.languages.deleteOpConfirm,
|
|
window.siyuan.languages.confirmRemoveAll, () => {
|
|
fetchPost("/api/filetree/removeDocs", {
|
|
paths
|
|
});
|
|
});
|
|
}
|
|
};
|