Files
formbricks/packages/lib/webhook/cache.ts
Dhruwang Jariwala ab80bc1bf2 feat: language switch (#2692)
Co-authored-by: Johannes <johannes@formbricks.com>
Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
2024-06-12 14:10:22 +00:00

36 lines
944 B
TypeScript

import { revalidateTag } from "next/cache";
import { TWebhookInput } from "@formbricks/types/webhooks";
interface RevalidateProps {
id?: string;
environmentId?: string;
source?: TWebhookInput["source"];
}
export const webhookCache = {
tag: {
byId(id: string) {
return `webhooks-${id}`;
},
byEnvironmentId(environmentId: string) {
return `environments-${environmentId}-webhooks`;
},
byEnvironmentIdAndSource(environmentId: string, source: TWebhookInput["source"]) {
return `environments-${environmentId}-sources-${source}-webhooks`;
},
},
revalidate({ id, environmentId, source }: RevalidateProps): void {
if (id) {
revalidateTag(this.tag.byId(id));
}
if (environmentId) {
revalidateTag(this.tag.byEnvironmentId(environmentId));
}
if (environmentId && source) {
revalidateTag(this.tag.byEnvironmentIdAndSource(environmentId, source));
}
},
};