mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b1989bae1b
* dev: implement layout skeleton loader and helper function * chore: implemented layout loader * chore: settings loader added * chore: cycle, module, view, pages, notification and projects loader added * chore: kanban loader improvement * chore: loader utils updated
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { useUser } from "hooks/store";
|
|
// services
|
|
import { IntegrationService } from "services/integrations";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
|
// components
|
|
import { SingleIntegrationCard } from "components/integration";
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
|
// ui
|
|
import { IntegrationAndImportExportBanner, IntegrationsSettingsLoader } from "components/ui";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// fetch-keys
|
|
import { APP_INTEGRATIONS } from "constants/fetch-keys";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
|
|
const integrationService = new IntegrationService();
|
|
|
|
const WorkspaceIntegrationsPage: NextPageWithLayout = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store hooks
|
|
const {
|
|
membership: { currentWorkspaceRole },
|
|
} = useUser();
|
|
|
|
const isAdmin = currentWorkspaceRole === EUserWorkspaceRoles.ADMIN;
|
|
|
|
if (!isAdmin)
|
|
return (
|
|
<div className="mt-10 flex h-full w-full justify-center p-4">
|
|
<p className="text-sm text-custom-text-300">You are not authorized to access this page.</p>
|
|
</div>
|
|
);
|
|
|
|
const { data: appIntegrations } = useSWR(workspaceSlug && isAdmin ? APP_INTEGRATIONS : null, () =>
|
|
workspaceSlug && isAdmin ? integrationService.getAppIntegrationsList() : null
|
|
);
|
|
|
|
return (
|
|
<section className="w-full overflow-y-auto py-8 pr-9">
|
|
<IntegrationAndImportExportBanner bannerName="Integrations" />
|
|
<div>
|
|
{appIntegrations ? (
|
|
appIntegrations.map((integration) => <SingleIntegrationCard key={integration.id} integration={integration} />)
|
|
) : (
|
|
<IntegrationsSettingsLoader />
|
|
)}
|
|
</div>
|
|
</section>
|
|
);
|
|
});
|
|
|
|
WorkspaceIntegrationsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<WorkspaceSettingHeader title="Integrations Settings" />}>
|
|
<WorkspaceSettingLayout>{page}</WorkspaceSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default WorkspaceIntegrationsPage;
|