codebase overhaul (#697)

This commit is contained in:
Maze
2026-01-31 00:20:04 +01:00
committed by GitHub
parent 0173db9944
commit 7bf0984698
469 changed files with 36184 additions and 32931 deletions
+17
View File
@@ -0,0 +1,17 @@
export function isTypableDOMElement({
element,
}: {
element: HTMLElement;
}): boolean {
if (element.isContentEditable) return true;
if (element.tagName === "INPUT") {
return !(element as HTMLInputElement).disabled;
}
if (element.tagName === "TEXTAREA") {
return !(element as HTMLTextAreaElement).disabled;
}
return false;
}
+7
View File
@@ -0,0 +1,7 @@
export function formatDate({ date }: { date: Date }): string {
return date.toLocaleDateString("en-US", {
month: "short",
day: "numeric",
year: "numeric",
});
}
+13
View File
@@ -0,0 +1,13 @@
export function dimensionToAspectRatio({
width,
height,
}: {
width: number;
height: number;
}): string {
const gcd = (a: number, b: number): number => (b === 0 ? a : gcd(b, a % b));
const divisor = gcd(width, height);
const aspectWidth = width / divisor;
const aspectHeight = height / divisor;
return `${aspectWidth}:${aspectHeight}`;
}
+28
View File
@@ -0,0 +1,28 @@
export function generateUUID(): string {
if (
typeof crypto !== "undefined" &&
typeof crypto.randomUUID === "function"
) {
return crypto.randomUUID();
}
const bytes = new Uint8Array(16);
crypto.getRandomValues(bytes);
bytes[6] = (bytes[6] & 0x0f) | 0x40;
bytes[8] = (bytes[8] & 0x3f) | 0x80;
const hex = [...bytes].map((b) => b.toString(16).padStart(2, "0"));
return (
hex.slice(0, 4).join("") +
"-" +
hex.slice(4, 6).join("") +
"-" +
hex.slice(6, 8).join("") +
"-" +
hex.slice(8, 10).join("") +
"-" +
hex.slice(10, 16).join("")
);
}
+11
View File
@@ -0,0 +1,11 @@
export function clamp({
value,
min,
max,
}: {
value: number;
min: number;
max: number;
}): number {
return Math.max(min, Math.min(max, value));
}
+11
View File
@@ -0,0 +1,11 @@
export function getPlatformSpecialKey(): string {
return isAppleDevice() ? "⌘" : "Ctrl";
}
export function getPlatformAlternateKey(): string {
return isAppleDevice() ? "⌥" : "Alt";
}
export function isAppleDevice(): boolean {
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
}
+7
View File
@@ -0,0 +1,7 @@
export function capitalizeFirstLetter({ string }: { string: string }) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
export function uppercase({ string }: { string: string }) {
return string.toUpperCase();
}
+6
View File
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]): string {
return twMerge(clsx(inputs));
}