Files
formbricks/packages/lib/organization/cache.ts
Dhruwang Jariwala 5bf5825f30 feat: Onboarding for self hosting (#2722)
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-06-10 17:56:02 +00:00

43 lines
901 B
TypeScript

import { revalidateTag } from "next/cache";
interface RevalidateProps {
id?: string;
userId?: string;
environmentId?: string;
count?: boolean;
}
export const organizationCache = {
tag: {
byId(id: string) {
return `organizations-${id}`;
},
byUserId(userId: string) {
return `users-${userId}-organizations`;
},
byEnvironmentId(environmentId: string) {
return `environments-${environmentId}-organizations`;
},
byCount() {
return "organizations-count";
},
},
revalidate({ id, userId, environmentId, count }: RevalidateProps): void {
if (id) {
revalidateTag(this.tag.byId(id));
}
if (userId) {
revalidateTag(this.tag.byUserId(userId));
}
if (environmentId) {
revalidateTag(this.tag.byEnvironmentId(environmentId));
}
if (count) {
revalidateTag(this.tag.byCount());
}
},
};