mirror of
https://github.com/michaelrausch/michaelrausch-24.git
synced 2025-04-05 00:23:13 +00:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|
|
|
|
export function formatDate(date: Date) {
|
|
return Intl.DateTimeFormat("en-US", {
|
|
month: "short",
|
|
day: "2-digit",
|
|
year: "numeric"
|
|
}).format(date);
|
|
}
|
|
|
|
export function readingTime(html: string) {
|
|
if (!html) return "1 min read";
|
|
const textOnly = html.replace(/<[^>]+>/g, "");
|
|
const wordCount = textOnly.split(/\s+/).length;
|
|
const readingTimeMinutes = ((wordCount / 200) + 1).toFixed();
|
|
return `${readingTimeMinutes} min read`;
|
|
}
|
|
|
|
export function dateRange(startDate: Date, endDate?: Date | string): string {
|
|
const startMonth = startDate.toLocaleString("default", { month: "short" });
|
|
const startYear = startDate.getFullYear().toString();
|
|
let endMonth;
|
|
let endYear;
|
|
|
|
if (endDate) {
|
|
if (typeof endDate === "string") {
|
|
endMonth = "";
|
|
endYear = endDate;
|
|
} else {
|
|
endMonth = endDate.toLocaleString("default", { month: "short" });
|
|
endYear = endDate.getFullYear().toString();
|
|
}
|
|
}
|
|
|
|
return `${startMonth} ${startYear} - ${endMonth} ${endYear}`;
|
|
} |