mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { FormbricksAPI } from "@formbricks/api";
|
|
import formbricks from "@formbricks/js";
|
|
import { env } from "@formbricks/lib/env";
|
|
|
|
export const formbricksEnabled =
|
|
typeof env.NEXT_PUBLIC_FORMBRICKS_API_HOST && env.NEXT_PUBLIC_FORMBRICKS_ENVIRONMENT_ID;
|
|
const ttc = { onboarding: 0 };
|
|
|
|
const getFormbricksApi = () => {
|
|
const environmentId = env.NEXT_PUBLIC_FORMBRICKS_ENVIRONMENT_ID;
|
|
const apiHost = env.NEXT_PUBLIC_FORMBRICKS_API_HOST;
|
|
|
|
if (typeof environmentId !== "string" || typeof apiHost !== "string") {
|
|
throw new Error("Formbricks environment ID or API host is not defined");
|
|
}
|
|
|
|
return new FormbricksAPI({
|
|
environmentId,
|
|
apiHost,
|
|
});
|
|
};
|
|
|
|
export const createResponse = async (
|
|
surveyId: string,
|
|
userId: string,
|
|
data: { [questionId: string]: any },
|
|
finished: boolean = false
|
|
): Promise<any> => {
|
|
const api = getFormbricksApi();
|
|
return await api.client.response.create({
|
|
surveyId,
|
|
userId,
|
|
finished,
|
|
data,
|
|
ttc,
|
|
});
|
|
};
|
|
|
|
export const updateResponse = async (
|
|
responseId: string,
|
|
data: { [questionId: string]: any },
|
|
finished: boolean = false
|
|
): Promise<any> => {
|
|
const api = getFormbricksApi();
|
|
return await api.client.response.update({
|
|
responseId,
|
|
finished,
|
|
data,
|
|
ttc,
|
|
});
|
|
};
|
|
|
|
export const formbricksLogout = async () => {
|
|
return await formbricks.logout();
|
|
};
|