
* Adds available apps * Adds App Model * WIP * Updates seeder script * Seeder fixes * lowercase categories * Upgrades prisma * WIP * WIP * Hopefully fixes circular deps * Type fixes * Fixes seeder * Adds migration to connect Credentials to Apps * Updates app store callbacks * Updates google credentials * Uses dirName from DB * Type fixes * Update reschedule.ts * Seeder fixes * Fixes categories listing * Update index.ts * Update schema.prisma * Updates dependencies * Renames giphy app * Uses dynamic imports for app metadata * Fixes credentials error * Uses dynamic import for api handlers * Dynamic import fixes * Allows for simple folder names in app store * Squashes app migrations * seeder fixes * Fixes dyamic imports * Update apiHandlers.tsx
29 lines
930 B
TypeScript
29 lines
930 B
TypeScript
import { useMutation } from "react-query";
|
|
|
|
import type { IntegrationOAuthCallbackState } from "@calcom/app-store/types";
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { App } from "@calcom/types/App";
|
|
|
|
function useAddAppMutation(type: App["type"], options?: Parameters<typeof useMutation>[2]) {
|
|
const appName = type.replace(/_/g, "");
|
|
const mutation = useMutation(async () => {
|
|
const state: IntegrationOAuthCallbackState = {
|
|
returnTo: WEBAPP_URL + "/apps/installed" + location.search,
|
|
};
|
|
const stateStr = encodeURIComponent(JSON.stringify(state));
|
|
const searchParams = `?state=${stateStr}`;
|
|
|
|
const res = await fetch(`/api/integrations/${appName}/add` + searchParams);
|
|
|
|
if (!res.ok) {
|
|
throw new Error("Something went wrong");
|
|
}
|
|
|
|
const json = await res.json();
|
|
window.location.href = json.url;
|
|
}, options);
|
|
|
|
return mutation;
|
|
}
|
|
|
|
export default useAddAppMutation;
|