Warp/node_modules/vitepress/dist/client/theme-default/support/utils.js
2024-01-05 19:14:38 +07:00

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);
}