mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
95580d0c62
* Sentry Fix for "Non-Error promise rejection captured with value: Route change to url was aborted" * Sentry fix for "undefined is not an object (evaluating 'n.response')" * Possible Sentry Fix for "TypeError Function.entries(<anonymous>)" * Possible Sentry fix for "null is not an object (evaluating 'e.type')"
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import React, { useEffect, ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
// services
|
|
// ui
|
|
import { Spinner } from "@plane/ui";
|
|
// types
|
|
import { NextPageWithLayout } from "@/lib/types";
|
|
import { AppInstallationService } from "@/services/app_installation.service";
|
|
|
|
// services
|
|
const appInstallationService = new AppInstallationService();
|
|
|
|
const AppPostInstallation: NextPageWithLayout = () => {
|
|
const router = useRouter();
|
|
const { installation_id, state, provider, code } = router.query;
|
|
|
|
useEffect(() => {
|
|
if (provider === "github" && state && installation_id) {
|
|
appInstallationService
|
|
.addInstallationApp(state.toString(), provider, { installation_id })
|
|
.then(() => {
|
|
window.opener = null;
|
|
window.open("", "_self");
|
|
window.close();
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
} else if (provider === "slack" && state && code) {
|
|
const [workspaceSlug, projectId, integrationId] = state.toString().split(",");
|
|
|
|
if (!projectId) {
|
|
const payload = {
|
|
code,
|
|
};
|
|
appInstallationService
|
|
.addInstallationApp(state.toString(), provider, payload)
|
|
.then(() => {
|
|
window.opener = null;
|
|
window.open("", "_self");
|
|
window.close();
|
|
})
|
|
.catch((err) => {
|
|
throw err?.response;
|
|
});
|
|
} else {
|
|
const payload = {
|
|
code,
|
|
};
|
|
appInstallationService
|
|
.addSlackChannel(workspaceSlug, projectId, integrationId, payload)
|
|
.then(() => {
|
|
window.opener = null;
|
|
window.open("", "_self");
|
|
window.close();
|
|
})
|
|
.catch((err) => {
|
|
throw err?.response;
|
|
});
|
|
}
|
|
}
|
|
}, [state, installation_id, provider, code]);
|
|
|
|
return (
|
|
<div className="absolute left-0 top-0 z-50 flex h-full w-full flex-col items-center justify-center gap-y-3 bg-custom-background-80">
|
|
<h2 className="text-2xl text-custom-text-100">Installing. Please wait...</h2>
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
AppPostInstallation.getLayout = function getLayout(page: ReactElement) {
|
|
return <div>{page}</div>;
|
|
};
|
|
|
|
export default AppPostInstallation;
|