add loading indicator to the pagination
All checks were successful
Deploy SSR / deploy (push) Successful in 1m37s

This commit is contained in:
Lee
2024-09-12 11:35:37 +01:00
parent 99174e6299
commit f0dfbe78ea
5 changed files with 106 additions and 21 deletions

View File

@ -28,6 +28,7 @@ export default class DataFetcher {
*/
private buildRequestUrl(useProxy: boolean, url: string): string {
return (useProxy ? "https://proxy.fascinated.cc/" : "") + url;
// return (useProxy ? config.siteUrl + "/api/proxy?url=" : "") + url;
}
/**

View File

@ -1,6 +1,21 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}
/**
* Validates if the url is valid
*
* @param url the url to validate
* @returns true if the url is valid, false otherwise
*/
export function validateUrl(url: string) {
try {
new URL(url);
return true;
} catch {
return false;
}
}