19 lines
478 B
TypeScript
19 lines
478 B
TypeScript
import { query } from "@/scripts/url";
|
|
import { url } from "@/config";
|
|
|
|
export function getProxiedImageUrl(imageUrl: string, type?: "preview"): string {
|
|
return `${url}/proxy/image.webp?${query({
|
|
url: imageUrl,
|
|
fallback: "1",
|
|
...(type ? { [type]: "1" } : {}),
|
|
})}`;
|
|
}
|
|
|
|
export function getProxiedImageUrlNullable(
|
|
imageUrl: string | null | undefined,
|
|
type?: "preview",
|
|
): string | null {
|
|
if (imageUrl == null) return null;
|
|
return getProxiedImageUrl(imageUrl, type);
|
|
}
|