mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
eea3b4fa54
* chore: empty state asset updated * chore: empty state config updated * chore: cycle and module issues layout empty state added * chore: workspace and project settings empty state added
115 lines
4.1 KiB
TypeScript
115 lines
4.1 KiB
TypeScript
import React, { useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
import { useTheme } from "next-themes";
|
|
// store hooks
|
|
import { useUser } from "hooks/store";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
|
// component
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
|
import { ApiTokenListItem, CreateApiTokenModal } from "components/api-token";
|
|
import { EmptyState, getEmptyStateImagePath } from "components/empty-state";
|
|
// ui
|
|
import { Button, Spinner } from "@plane/ui";
|
|
// services
|
|
import { APITokenService } from "services/api_token.service";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// constants
|
|
import { API_TOKENS_LIST } from "constants/fetch-keys";
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
import { WORKSPACE_SETTINGS_EMPTY_STATE_DETAILS } from "constants/empty-state";
|
|
|
|
const apiTokenService = new APITokenService();
|
|
|
|
const ApiTokensPage: NextPageWithLayout = observer(() => {
|
|
// states
|
|
const [isCreateTokenModalOpen, setIsCreateTokenModalOpen] = useState(false);
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// theme
|
|
const { resolvedTheme } = useTheme();
|
|
// store hooks
|
|
const {
|
|
membership: { currentWorkspaceRole },
|
|
currentUser,
|
|
} = useUser();
|
|
|
|
const isAdmin = currentWorkspaceRole === EUserWorkspaceRoles.ADMIN;
|
|
|
|
const { data: tokens } = useSWR(workspaceSlug && isAdmin ? API_TOKENS_LIST(workspaceSlug.toString()) : null, () =>
|
|
workspaceSlug && isAdmin ? apiTokenService.getApiTokens(workspaceSlug.toString()) : null
|
|
);
|
|
|
|
const emptyStateDetail = WORKSPACE_SETTINGS_EMPTY_STATE_DETAILS["api-tokens"];
|
|
const isLightMode = resolvedTheme ? resolvedTheme === "light" : currentUser?.theme.theme === "light";
|
|
const emptyStateImage = getEmptyStateImagePath("workspace-settings", "api-tokens", isLightMode);
|
|
|
|
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>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<CreateApiTokenModal isOpen={isCreateTokenModalOpen} onClose={() => setIsCreateTokenModalOpen(false)} />
|
|
{tokens ? (
|
|
<section className="h-full w-full overflow-y-auto py-8 pr-9">
|
|
{tokens.length > 0 ? (
|
|
<>
|
|
<div className="flex items-center justify-between border-b border-custom-border-200 py-3.5">
|
|
<h3 className="text-xl font-medium">API tokens</h3>
|
|
<Button variant="primary" onClick={() => setIsCreateTokenModalOpen(true)}>
|
|
Add API token
|
|
</Button>
|
|
</div>
|
|
<div>
|
|
{tokens.map((token) => (
|
|
<ApiTokenListItem key={token.id} token={token} />
|
|
))}
|
|
</div>
|
|
</>
|
|
) : (
|
|
<div className="flex h-full w-full flex-col">
|
|
<div className="flex items-center justify-between gap-4 border-b border-custom-border-200 pb-3.5">
|
|
<h3 className="text-xl font-medium">API tokens</h3>
|
|
<Button variant="primary" onClick={() => setIsCreateTokenModalOpen(true)}>
|
|
Add API token
|
|
</Button>
|
|
</div>
|
|
<div className="h-full w-full flex items-center justify-center">
|
|
<EmptyState
|
|
title={emptyStateDetail.title}
|
|
description={emptyStateDetail.description}
|
|
image={emptyStateImage}
|
|
size="lg"
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</section>
|
|
) : (
|
|
<div className="grid h-full w-full place-items-center p-4">
|
|
<Spinner />
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|
|
|
|
ApiTokensPage.getLayout = function getLayout(page: React.ReactElement) {
|
|
return (
|
|
<AppLayout header={<WorkspaceSettingHeader title="API Tokens" />}>
|
|
<WorkspaceSettingLayout>{page}</WorkspaceSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ApiTokensPage;
|