Files
formbricks/packages/lib/person/cache.ts
T
2024-03-26 20:16:43 +00:00

54 lines
1.2 KiB
TypeScript

import { revalidateTag } from "next/cache";
interface RevalidateProps {
id?: string;
environmentId?: string;
userId?: string;
}
export const personCache = {
tag: {
byId(id: string): string {
return `people-${id}`;
},
byEnvironmentId(environmentId: string): string {
return `environments-${environmentId}-people`;
},
byEnvironmentIdAndUserId(environmentId: string, userId: string): string {
return `environments-${environmentId}-personByUserId-${userId}`;
},
},
revalidate({ id, environmentId, userId }: RevalidateProps): void {
if (id) {
revalidateTag(this.tag.byId(id));
}
if (environmentId) {
revalidateTag(this.tag.byEnvironmentId(environmentId));
}
if (environmentId && userId) {
revalidateTag(this.tag.byEnvironmentIdAndUserId(environmentId, userId));
}
},
};
interface ActivePersonRevalidateProps {
id?: string;
environmentId?: string;
userId?: string;
}
export const activePersonCache = {
tag: {
byId(personId: string): string {
return `people-${personId}-active`;
},
},
revalidate({ id }: ActivePersonRevalidateProps): void {
if (id) {
revalidateTag(this.tag.byEnvironmentId(id));
}
},
};