forked from github/plane
5916d6e749
* fix: cycle and module sidebar scroll * style: date picker theming * style: workspace slug spacing * fix: app sidebar z-index * fix: favorite cycle mutation * fix: cycle modal on error close * feat: cycle view context * style: active cycle stats scroll * fix: active cycle favorite mutation * feat: import export banner * feat: cycle sidebar date picker logic updated * fix: NaN in progress percentage fix * fix: tooltip fix * style: empty state for active cycle * style: cycle badge width fix , all cycle empty state fix and cycle icon size fix
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import workspaceService from "services/workspace.service";
|
|
import IntegrationService from "services/integration";
|
|
// layouts
|
|
import { WorkspaceAuthorizationLayout } from "layouts/auth-layout";
|
|
import { SettingsHeader } from "components/workspace";
|
|
// components
|
|
import { SingleIntegrationCard } from "components/integration";
|
|
// ui
|
|
import { IntegrationAndImportExportBanner, Loader } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { WORKSPACE_DETAILS, APP_INTEGRATIONS } from "constants/fetch-keys";
|
|
|
|
const WorkspaceIntegrations: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { data: activeWorkspace } = useSWR(
|
|
workspaceSlug ? WORKSPACE_DETAILS(workspaceSlug as string) : null,
|
|
() => (workspaceSlug ? workspaceService.getWorkspace(workspaceSlug as string) : null)
|
|
);
|
|
|
|
const { data: appIntegrations } = useSWR(workspaceSlug ? APP_INTEGRATIONS : null, () =>
|
|
workspaceSlug ? IntegrationService.getAppIntegrationsList() : null
|
|
);
|
|
|
|
return (
|
|
<WorkspaceAuthorizationLayout
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem
|
|
title={`${activeWorkspace?.name ?? "Workspace"}`}
|
|
link={`/${workspaceSlug}`}
|
|
/>
|
|
<BreadcrumbItem title="Integrations" />
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
<div className="p-8">
|
|
<SettingsHeader />
|
|
<section className="space-y-5">
|
|
<IntegrationAndImportExportBanner bannerName="Integrations" />
|
|
<div className="space-y-5">
|
|
{appIntegrations ? (
|
|
appIntegrations.map((integration) => (
|
|
<SingleIntegrationCard key={integration.id} integration={integration} />
|
|
))
|
|
) : (
|
|
<Loader className="space-y-5">
|
|
<Loader.Item height="60px" />
|
|
<Loader.Item height="60px" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</WorkspaceAuthorizationLayout>
|
|
);
|
|
};
|
|
|
|
export default WorkspaceIntegrations;
|