mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
import { withBase } from 'vitepress';
|
|
import { useData } from '../composables/data';
|
|
import { isExternal, treatAsHtml } from '../../shared';
|
|
export function throttleAndDebounce(fn, delay) {
|
|
let timeoutId;
|
|
let called = false;
|
|
return () => {
|
|
if (timeoutId)
|
|
clearTimeout(timeoutId);
|
|
if (!called) {
|
|
fn();
|
|
(called = true) && setTimeout(() => (called = false), delay);
|
|
}
|
|
else
|
|
timeoutId = setTimeout(fn, delay);
|
|
};
|
|
}
|
|
export function ensureStartingSlash(path) {
|
|
return /^\//.test(path) ? path : `/${path}`;
|
|
}
|
|
export function normalizeLink(url) {
|
|
const { pathname, search, hash, protocol } = new URL(url, 'http://a.com');
|
|
if (isExternal(url) ||
|
|
url.startsWith('#') ||
|
|
!protocol.startsWith('http') ||
|
|
!treatAsHtml(pathname))
|
|
return url;
|
|
const { site } = useData();
|
|
const normalizedPath = pathname.endsWith('/') || pathname.endsWith('.html')
|
|
? url
|
|
: url.replace(/(?:(^\.+)\/)?.*$/, `$1${pathname.replace(/(\.md)?$/, site.value.cleanUrls ? '' : '.html')}${search}${hash}`);
|
|
return withBase(normalizedPath);
|
|
}
|