🎨 API getTag add an optional parameter ignoreMaxListHint https://github.com/siyuan-note/siyuan/issues/16000

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-10-03 21:59:19 +08:00
parent 53f0467f73
commit 9f3cd7ca95
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
7 changed files with 31 additions and 8 deletions

View file

@ -751,6 +751,7 @@ export class Files extends Model {
fetchPost("/api/filetree/listDocsByPath", {
notebook: toURL,
path: toDir === "/" ? "/" : toDir + ".sy",
app: Constants.SIYUAN_APPID,
}, response => {
if (response.data.path === "/" && response.data.files.length === 0) {
showMessage(window.siyuan.languages.emptyContent);
@ -1123,7 +1124,8 @@ data-type="navigation-root" data-path="/">
} else if (filePath.startsWith(item.path.replace(".sy", ""))) {
const response = await fetchSyncPost("/api/filetree/listDocsByPath", {
notebook: data.box,
path: item.path
path: item.path,
app: Constants.SIYUAN_APPID,
});
newLiElement = await this.selectItem(response.data.box, filePath, response.data, setStorage, isSetCurrent);
}
@ -1160,6 +1162,7 @@ data-type="navigation-root" data-path="/">
fetchPost("/api/filetree/listDocsByPath", {
notebook: notebookId,
path: liElement.getAttribute("data-path"),
app: Constants.SIYUAN_APPID,
}, response => {
if (response.data.path === "/" && response.data.files.length === 0) {
newFile({
@ -1215,7 +1218,8 @@ data-type="navigation-root" data-path="/">
} else {
const response = await fetchSyncPost("/api/filetree/listDocsByPath", {
notebook: notebookId,
path: currentPath
path: currentPath,
app: Constants.SIYUAN_APPID,
});
liElement = await this.onLsSelect(response.data, filePath, setStorage, isSetCurrent);
}