2023-04-18 05:24:45 +00:00
|
|
|
import { useRef, useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
2023-11-07 11:47:10 +00:00
|
|
|
const useIntegrationPopup = ({
|
|
|
|
provider,
|
|
|
|
stateParams,
|
|
|
|
github_app_name,
|
|
|
|
slack_client_id,
|
|
|
|
}: {
|
|
|
|
provider: string | undefined;
|
|
|
|
stateParams?: string;
|
|
|
|
github_app_name?: string;
|
|
|
|
slack_client_id?: string;
|
|
|
|
}) => {
|
2023-04-18 05:24:45 +00:00
|
|
|
const [authLoader, setAuthLoader] = useState(false);
|
|
|
|
|
|
|
|
const router = useRouter();
|
2023-04-22 16:24:50 +00:00
|
|
|
const { workspaceSlug, projectId } = router.query;
|
2023-04-18 05:24:45 +00:00
|
|
|
|
|
|
|
const providerUrls: { [key: string]: string } = {
|
2023-11-07 11:47:10 +00:00
|
|
|
github: `https://github.com/apps/${github_app_name}/installations/new?state=${workspaceSlug?.toString()}`,
|
|
|
|
slack: `https://slack.com/oauth/v2/authorize?scope=chat:write,im:history,im:write,links:read,links:write,users:read,users:read.email&user_scope=&&client_id=${slack_client_id}&state=${workspaceSlug?.toString()}`,
|
|
|
|
slackChannel: `https://slack.com/oauth/v2/authorize?scope=incoming-webhook&client_id=${slack_client_id}&state=${workspaceSlug?.toString()},${projectId?.toString()}${
|
2023-04-22 16:24:50 +00:00
|
|
|
stateParams ? "," + stateParams : ""
|
|
|
|
}`,
|
2023-04-18 05:24:45 +00:00
|
|
|
};
|
2023-04-28 12:25:57 +00:00
|
|
|
|
2023-04-18 05:24:45 +00:00
|
|
|
const popup = useRef<any>();
|
|
|
|
|
|
|
|
const checkPopup = () => {
|
|
|
|
const check = setInterval(() => {
|
|
|
|
if (!popup || popup.current.closed || popup.current.closed === undefined) {
|
|
|
|
clearInterval(check);
|
|
|
|
setAuthLoader(false);
|
|
|
|
}
|
|
|
|
}, 1000);
|
|
|
|
};
|
|
|
|
|
|
|
|
const openPopup = () => {
|
|
|
|
if (!provider) return;
|
|
|
|
|
|
|
|
const width = 600,
|
|
|
|
height = 600;
|
|
|
|
const left = window.innerWidth / 2 - width / 2;
|
|
|
|
const top = window.innerHeight / 2 - height / 2;
|
|
|
|
const url = providerUrls[provider];
|
|
|
|
|
|
|
|
return window.open(url, "", `width=${width}, height=${height}, top=${top}, left=${left}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
const startAuth = () => {
|
|
|
|
popup.current = openPopup();
|
|
|
|
checkPopup();
|
|
|
|
setAuthLoader(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
startAuth,
|
|
|
|
isConnecting: authLoader,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default useIntegrationPopup;
|