mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-21 00:50:13 +01:00
🎨 Supports specifying the notebook to save new docs https://github.com/siyuan-note/siyuan/issues/10671
This commit is contained in:
parent
78216e7909
commit
b102219a13
2 changed files with 27 additions and 5 deletions
|
|
@ -92,6 +92,9 @@ export const newFile = (optios: {
|
|||
optios.currentPath = resultData.currentPath;
|
||||
}
|
||||
fetchPost("/api/filetree/getDocCreateSavePath", {notebook: optios.notebookId}, (data) => {
|
||||
if (!optios.useSavePath) {
|
||||
data.data.box = optios.notebookId;
|
||||
}
|
||||
if ((data.data.path.indexOf("/") > -1 && optios.useSavePath) || optios.name) {
|
||||
if (data.data.path.startsWith("/") || optios.currentPath === "/") {
|
||||
fetchPost("/api/filetree/createDocWithMd", {
|
||||
|
|
@ -138,8 +141,27 @@ export const newFile = (optios: {
|
|||
if (!validateName(title)) {
|
||||
return;
|
||||
}
|
||||
if (optios.notebookId !== data.data.box) {
|
||||
fetchPost("/api/filetree/createDocWithMd", {
|
||||
notebook: data.data.box,
|
||||
path: pathPosix().join(data.data.path || "/", optios.name || (data.data.path.endsWith("/") ? window.siyuan.languages.untitled : "")),
|
||||
markdown: ""
|
||||
}, response => {
|
||||
/// #if !MOBILE
|
||||
openFileById({
|
||||
app: optios.app,
|
||||
id: response.data,
|
||||
action: [Constants.CB_GET_HL, Constants.CB_GET_CONTEXT]
|
||||
});
|
||||
/// #else
|
||||
openMobileFileById(optios.app, response.data, [Constants.CB_GET_HL, Constants.CB_GET_CONTEXT]);
|
||||
/// #endif
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const id = Lute.NewNodeID();
|
||||
const newPath = optios.notebookId === data.data.box ? (pathPosix().join(getDisplayName(optios.currentPath, false, true), id + ".sy")) : (data.data.path || "/");
|
||||
const newPath = (pathPosix().join(getDisplayName(optios.currentPath, false, true), id + ".sy"));
|
||||
if (optios.paths) {
|
||||
optios.paths[optios.paths.indexOf(undefined)] = newPath;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue