Merge a1c03143342078c68301cc7bc51a68ce4840c5dc into 67d2175ce93939e05709856a624004168ff66daf

This commit is contained in:
Romain DEP. 2025-12-03 08:46:19 +00:00 committed by GitHub
commit aa1780c027
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 91 additions and 27 deletions

View File

@ -48,6 +48,23 @@ describe("Tree", () => {
}; };
}); });
}); });
it("sorts notes by title (base case)", () => {
const note = buildNote({
children: [
{title: "1"},
{title: "2"},
{title: "3"},
],
"#sorted": "",
});
cls.init(() => {
tree.sortNotesIfNeeded(note.noteId);
});
const orderedTitles = note.children.map((child) => child.title);
expect(orderedTitles).toStrictEqual(["1", "2", "3"]);
}
)
it("custom sort order is idempotent", () => { it("custom sort order is idempotent", () => {
rootNote.label("sorted", "order"); rootNote.label("sorted", "order");
@ -56,13 +73,15 @@ describe("Tree", () => {
for (let i = 0; i <= 5; i++) { for (let i = 0; i <= 5; i++) {
rootNote.child(note(String(i)).label("order", String(i))); rootNote.child(note(String(i)).label("order", String(i)));
} }
rootNote.child(note("top").label("top"));
rootNote.child(note("bottom").label("bottom"));
// Add a few values which have no defined order. // Add a few values which have no defined order.
for (let i = 6; i < 10; i++) { for (let i = 6; i < 10; i++) {
rootNote.child(note(String(i))); rootNote.child(note(String(i)));
} }
const expectedOrder = [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" ]; const expectedOrder = ["top", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "bottom"];
// Sort a few times to ensure that the resulting order is the same. // Sort a few times to ensure that the resulting order is the same.
for (let i = 0; i < 5; i++) { for (let i = 0; i < 5; i++) {
@ -113,4 +132,48 @@ describe("Tree", () => {
const orderedTitles = note.children.map((child) => child.title); const orderedTitles = note.children.map((child) => child.title);
expect(orderedTitles).toStrictEqual(["top", "5", "3", "2", "1", "bottom"]); expect(orderedTitles).toStrictEqual(["top", "5", "3", "2", "1", "bottom"]);
}); });
it("keeps folder notes on top when #sortFolderFirst is set, but not above #top", () => {
const note = buildNote({
children: [
{title: "bottom", "#bottom": ""},
{title: "1"},
{title: "2"},
{title: "p1", children: [{title: "1.1"}, {title: "1.2"}]},
{title: "p2", children: [{title: "2.1"}, {title: "2.2"}]},
{title: "3"},
{title: "5"},
{title: "top", "#top": ""}
],
"#sorted": "",
"#sortFoldersFirst": ""
});
cls.init(() => {
tree.sortNotesIfNeeded(note.noteId);
});
const orderedTitles = note.children.map((child) => child.title);
expect(orderedTitles).toStrictEqual(["top", "p1", "p2", "1", "2", "3", "5", "bottom"]);
});
it("sorts notes accordingly when #sortNatural is set", () => {
const note = buildNote({
children: [
{title: "bottom", "#bottom": ""},
{title: "1"},
{title: "2"},
{title: "10"},
{title: "20"},
{title: "3"},
{title: "top", "#top": ""}
],
"#sorted": "",
"#sortNatural": ""
});
cls.init(() => {
tree.sortNotesIfNeeded(note.noteId);
});
const orderedTitles = note.children.map((child) => child.title);
expect(orderedTitles).toStrictEqual(["top", "1", "2", "3", "10", "20", "bottom"]);
}
)
}); });

View File

@ -98,15 +98,6 @@ function sortNotes(parentNoteId: string, customSortBy: string = "title", reverse
} }
notes.sort((a, b) => { notes.sort((a, b) => {
if (foldersFirst) {
const aHasChildren = a.hasChildren();
const bHasChildren = b.hasChildren();
if ((aHasChildren && !bHasChildren) || (!aHasChildren && bHasChildren)) {
// exactly one note of the two is a directory, so the sorting will be done based on this status
return aHasChildren ? -1 : 1;
}
}
function fetchValue(note: BNote, key: string) { function fetchValue(note: BNote, key: string) {
let rawValue: string | null; let rawValue: string | null;
@ -154,6 +145,16 @@ function sortNotes(parentNoteId: string, customSortBy: string = "title", reverse
return compare(bottomBEl, bottomAEl) * (reverse ? -1 : 1); return compare(bottomBEl, bottomAEl) * (reverse ? -1 : 1);
} }
if (foldersFirst) {
const aHasChildren = a.hasChildren();
const bHasChildren = b.hasChildren();
if ((aHasChildren && !bHasChildren) || (!aHasChildren && bHasChildren)) {
// exactly one note of the two is a directory, so the sorting will be done based on this status
return aHasChildren ? -1 : 1;
}
}
const customAEl = fetchValue(a, customSortBy) ?? fetchValue(a, "title") as string; const customAEl = fetchValue(a, customSortBy) ?? fetchValue(a, "title") as string;
const customBEl = fetchValue(b, customSortBy) ?? fetchValue(b, "title") as string; const customBEl = fetchValue(b, customSortBy) ?? fetchValue(b, "title") as string;