Jacky Zhao
2025-01-01 e3162f7a7e810b74ba417590657a53e00c3b2f76
chore: joinSegments fix + tests
2 files modified
44 ■■■■ changed files
quartz/util/path.test.ts 19 ●●●●● patch | view | raw | blame | history
quartz/util/path.ts 25 ●●●● patch | view | raw | blame | history
quartz/util/path.test.ts
@@ -158,6 +158,25 @@
      path.isRelativeURL,
    )
  })
  test("joinSegments", () => {
    assert.strictEqual(path.joinSegments("a", "b"), "a/b")
    assert.strictEqual(path.joinSegments("a/", "b"), "a/b")
    assert.strictEqual(path.joinSegments("a", "b/"), "a/b/")
    assert.strictEqual(path.joinSegments("a/", "b/"), "a/b/")
    // preserve leading and trailing slashes
    assert.strictEqual(path.joinSegments("/a", "b"), "/a/b")
    assert.strictEqual(path.joinSegments("/a/", "b"), "/a/b")
    assert.strictEqual(path.joinSegments("/a", "b/"), "/a/b/")
    assert.strictEqual(path.joinSegments("/a/", "b/"), "/a/b/")
    // works with protocol specifiers
    assert.strictEqual(path.joinSegments("https://example.com", "a"), "https://example.com/a")
    assert.strictEqual(path.joinSegments("https://example.com/", "a"), "https://example.com/a")
    assert.strictEqual(path.joinSegments("https://example.com", "a/"), "https://example.com/a/")
    assert.strictEqual(path.joinSegments("https://example.com/", "a/"), "https://example.com/a/")
  })
})
describe("link strategies", () => {
quartz/util/path.ts
@@ -183,15 +183,26 @@
}
export function joinSegments(...args: string[]): string {
  return args
  if (args.length === 0) {
    return ""
  }
  let joined = args
    .filter((segment) => segment !== "")
    .map((segment, index) =>
      index === 0
        ? // Deduplicate but not remove leading slashes for first segment
          segment.replace(/\/+$/g, "").replace(/^\/\/+/g, "/")
        : segment.replace(/^\/+|\/+$/g, ""),
    )
    .map((segment) => stripSlashes(segment))
    .join("/")
  // if the first segment starts with a slash, add it back
  if (args[0].startsWith("/")) {
    joined = "/" + joined
  }
  // if the last segment is a folder, add a trailing slash
  if (args[args.length - 1].endsWith("/")) {
    joined = joined + "/"
  }
  return joined
}
export function getAllSegmentPrefixes(tags: string): string[] {