mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-21 17:10:12 +01:00
This commit is contained in:
parent
834e42d330
commit
346479a9e8
4 changed files with 17 additions and 8 deletions
|
|
@ -308,7 +308,8 @@ export class Files extends Model {
|
|||
app: options.app,
|
||||
notebookId,
|
||||
currentPath: pathString,
|
||||
useSavePath: false
|
||||
useSavePath: false,
|
||||
pushCreateEvt: true,
|
||||
});
|
||||
} else if (type === "more-root") {
|
||||
initNavigationMenu(options.app, target.parentElement).popup({
|
||||
|
|
|
|||
|
|
@ -458,7 +458,8 @@ export const initFileMenu = (app: App, notebookId: string, pathString: string, l
|
|||
notebookId,
|
||||
currentPath: pathPosix().dirname(pathString),
|
||||
paths,
|
||||
useSavePath: false
|
||||
useSavePath: false,
|
||||
pushCreateEvt: true,
|
||||
});
|
||||
}
|
||||
}).element);
|
||||
|
|
@ -481,7 +482,8 @@ export const initFileMenu = (app: App, notebookId: string, pathString: string, l
|
|||
notebookId,
|
||||
currentPath: pathPosix().dirname(pathString),
|
||||
paths,
|
||||
useSavePath: false
|
||||
useSavePath: false,
|
||||
pushCreateEvt: true,
|
||||
});
|
||||
}
|
||||
}).element);
|
||||
|
|
|
|||
|
|
@ -205,7 +205,8 @@ export class MobileFiles extends Model {
|
|||
app,
|
||||
notebookId,
|
||||
currentPath: pathString,
|
||||
useSavePath: false
|
||||
useSavePath: false,
|
||||
pushCreateEvt: true,
|
||||
});
|
||||
} else if (type === "more-root") {
|
||||
initNavigationMenu(app, target.parentElement);
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ export const newFile = (optios: {
|
|||
useSavePath: boolean,
|
||||
name?: string,
|
||||
afterCB?: (id: string, title: string) => void
|
||||
pushCreateEvt?: boolean
|
||||
}) => {
|
||||
if (getOpenNotebookCount() === 0) {
|
||||
showMessage(window.siyuan.languages.newFileTip);
|
||||
|
|
@ -102,7 +103,8 @@ export const newFile = (optios: {
|
|||
notebook: data.data.box,
|
||||
path: createPath,
|
||||
// 根目录时无法确定 parentID
|
||||
markdown: ""
|
||||
markdown: "",
|
||||
pushCreateEvt: optios.pushCreateEvt
|
||||
}, response => {
|
||||
if (optios.afterCB) {
|
||||
optios.afterCB(response.data, pathPosix().basename(createPath));
|
||||
|
|
@ -127,7 +129,8 @@ export const newFile = (optios: {
|
|||
notebook: data.data.box,
|
||||
path: createPath,
|
||||
parentID: getDisplayName(optios.currentPath, true, true),
|
||||
markdown: ""
|
||||
markdown: "",
|
||||
pushCreateEvt: optios.pushCreateEvt
|
||||
}, response => {
|
||||
if (optios.afterCB) {
|
||||
optios.afterCB(response.data, pathPosix().basename(createPath));
|
||||
|
|
@ -154,7 +157,8 @@ export const newFile = (optios: {
|
|||
fetchPost("/api/filetree/createDocWithMd", {
|
||||
notebook: data.data.box,
|
||||
path: createPath,
|
||||
markdown: ""
|
||||
markdown: "",
|
||||
pushCreateEvt: optios.pushCreateEvt
|
||||
}, response => {
|
||||
if (optios.afterCB) {
|
||||
optios.afterCB(response.data, pathPosix().basename(createPath));
|
||||
|
|
@ -182,7 +186,8 @@ export const newFile = (optios: {
|
|||
path: newPath,
|
||||
title,
|
||||
md: "",
|
||||
sorts: optios.paths
|
||||
sorts: optios.paths,
|
||||
pushCreateEvt: optios.pushCreateEvt
|
||||
}, () => {
|
||||
if (optios.afterCB) {
|
||||
optios.afterCB(id, title);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue