diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-01-10 20:28:22 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-01-10 20:28:48 -0400 |
commit | ba8a441f95481e294d414a0c89e2513f82f45a7a (patch) | |
tree | 1d1a4ea96d7c209f16125346e8772034161a93e7 /src/util | |
parent | 54ad9946e3fa32ae8388d54ec8b3baad78a29417 (diff) |
compute subdirectoryPrefix internally
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/urls.js | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/util/urls.js b/src/util/urls.js index 1c7d1c58..c2119b8d 100644 --- a/src/util/urls.js +++ b/src/util/urls.js @@ -140,20 +140,16 @@ export const thumb = { // Makes the generally-used and wiki-specialized "to" page utility. // "to" returns a relative path from the current page to the target. export function getURLsFrom({ - urls, - baseDirectory, pagePath, - subdirectoryPrefix, + urls, }) { const pageSubKey = pagePath[0]; + const subdirectoryPrefix = getPageSubdirectoryPrefix({pagePath}); return (targetFullKey, ...args) => { const [groupKey, subKey] = targetFullKey.split('.'); - let path = subdirectoryPrefix; - - let from; - let to; + let from, to; // When linking to *outside* the localized area of the site, we need to // make sure the result is correctly relative to the 8ase directory. @@ -182,9 +178,9 @@ export function getURLsFrom({ to = targetFullKey; } - path += urls.from(from).to(to, ...args); - - return path; + return ( + subdirectoryPrefix + + urls.from(from).to(to, ...args)); }; } |