mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 03:15:05 -05:00
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import { revalidateTag } from "next/cache";
|
|
|
|
interface RevalidateProps {
|
|
id?: string;
|
|
attributeClassId?: string;
|
|
actionClassId?: string;
|
|
environmentId?: string;
|
|
segmentId?: string;
|
|
resultShareKey?: string;
|
|
}
|
|
|
|
export const surveyCache = {
|
|
tag: {
|
|
byId(id: string) {
|
|
return `surveys-${id}`;
|
|
},
|
|
byEnvironmentId(environmentId: string): string {
|
|
return `environments-${environmentId}-surveys`;
|
|
},
|
|
byAttributeClassId(attributeClassId: string) {
|
|
return `attributeFilters-${attributeClassId}-surveys`;
|
|
},
|
|
byActionClassId(actionClassId: string) {
|
|
return `actionClasses-${actionClassId}-surveys`;
|
|
},
|
|
bySegmentId(segmentId: string) {
|
|
return `segments-${segmentId}-surveys`;
|
|
},
|
|
byResultShareKey(resultShareKey: string) {
|
|
return `surveys-resultShare-${resultShareKey}`;
|
|
},
|
|
},
|
|
revalidate({
|
|
id,
|
|
attributeClassId,
|
|
actionClassId,
|
|
environmentId,
|
|
segmentId,
|
|
resultShareKey,
|
|
}: RevalidateProps): void {
|
|
if (id) {
|
|
revalidateTag(this.tag.byId(id));
|
|
}
|
|
|
|
if (attributeClassId) {
|
|
revalidateTag(this.tag.byAttributeClassId(attributeClassId));
|
|
}
|
|
|
|
if (actionClassId) {
|
|
revalidateTag(this.tag.byActionClassId(actionClassId));
|
|
}
|
|
|
|
if (environmentId) {
|
|
revalidateTag(this.tag.byEnvironmentId(environmentId));
|
|
}
|
|
|
|
if (segmentId) {
|
|
revalidateTag(this.tag.bySegmentId(segmentId));
|
|
}
|
|
|
|
if (resultShareKey) {
|
|
revalidateTag(this.tag.byResultShareKey(resultShareKey));
|
|
}
|
|
},
|
|
};
|