mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.8 KiB
70 lines
1.8 KiB
import React from "react";
|
|
import useLocation from "wouter/use-location";
|
|
|
|
export const getTimeout = () => {
|
|
const clearables = new Set<number>();
|
|
|
|
const timeout = (f: (...attr: any[]) => any, t: number) => {
|
|
const self = setTimeout(() => (f(), clearables.delete(self)), t);
|
|
clearables.add(self);
|
|
};
|
|
|
|
const clearTimers = () => {
|
|
clearables.forEach(timer => clearTimeout(timer));
|
|
clearables.clear();
|
|
};
|
|
|
|
return [timeout, clearTimers] as const;
|
|
};
|
|
|
|
export const ellipses = (text: string, length: number = 100) =>
|
|
text.length > length ? text.slice(0, length - 3) + "..." : text;
|
|
|
|
export const useNav = () => {
|
|
const [, navigate] = useLocation();
|
|
|
|
return (link: string) => (e: React.MouseEvent | KeyboardEvent) => {
|
|
e?.preventDefault();
|
|
if (e.ctrlKey) return window.open(link, "_blank", "noreferrer noopener");
|
|
navigate(link);
|
|
};
|
|
};
|
|
|
|
export function rewriteExtn(filename: string, extn: string) {
|
|
const split = filename.split(".");
|
|
split[split.length - 1] = extn;
|
|
return split.join(".");
|
|
}
|
|
|
|
export function normalise(path: string) {
|
|
return (
|
|
(path.startsWith("/") ? "/" : "") +
|
|
path.trim().split("/").filter(Boolean).join("/")
|
|
);
|
|
}
|
|
|
|
export function comparePaths(p1: string, p2: string) {
|
|
return normalise(p1) === normalise(p2);
|
|
}
|
|
|
|
export const get = {
|
|
next<X>(xs: X[], i: number) {
|
|
return xs.at((i + 1) % xs.length)!;
|
|
},
|
|
prev<X>(xs: X[], i: number) {
|
|
return xs.at((i - 1) % xs.length)!;
|
|
},
|
|
};
|
|
|
|
// required css is inlined in index.html
|
|
export function setupCursorTracking(el: HTMLElement | null) {
|
|
if (!el) return;
|
|
|
|
el.addEventListener("mousemove", e => {
|
|
const rect = el.getBoundingClientRect();
|
|
const x = e.clientX - rect.left;
|
|
const y = e.clientY - rect.top;
|
|
el.style.setProperty("--x", x + "px");
|
|
el.style.setProperty("--y", y + "px");
|
|
});
|
|
}
|
|
|