* chore: decouple ui dialog from AppRouter and Atoms * fix type e2e test * fix: import dialog from @calcom/ui/components/dialog * fix: remove log * fix unit test * fix * fix and move data-override-list test to features package --------- Co-authored-by: hbjORbj <sldisek783@gmail.com>
116 lines
3.5 KiB
TypeScript
116 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
import type { TApiKeys } from "@calcom/ee/api-keys/components/ApiKeyListItem";
|
|
import LicenseRequired from "@calcom/ee/common/components/LicenseRequired";
|
|
import { Dialog } from "@calcom/features/components/controlled-dialog";
|
|
import ApiKeyDialogForm from "@calcom/features/ee/api-keys/components/ApiKeyDialogForm";
|
|
import ApiKeyListItem from "@calcom/features/ee/api-keys/components/ApiKeyListItem";
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { DialogContent } from "@calcom/ui/components/dialog";
|
|
import { EmptyScreen } from "@calcom/ui/components/empty-screen";
|
|
import { SkeletonText, SkeletonContainer } from "@calcom/ui/components/skeleton";
|
|
|
|
const SkeletonLoader = () => {
|
|
return (
|
|
<SkeletonContainer>
|
|
<div className="divide-subtle border-subtle space-y-6 rounded-b-lg border border-t-0 px-6 py-4">
|
|
<SkeletonText className="h-8 w-full" />
|
|
<SkeletonText className="h-8 w-full" />
|
|
</div>
|
|
</SkeletonContainer>
|
|
);
|
|
};
|
|
|
|
export const apiKeyModalRef = {
|
|
current: null as null | ((show: boolean) => void),
|
|
};
|
|
export const apiKeyToEditRef = {
|
|
current: null as null | ((apiKey: (TApiKeys & { neverExpires?: boolean }) | undefined) => void),
|
|
};
|
|
|
|
export const NewApiKeyButton = () => {
|
|
const { t } = useLocale();
|
|
return (
|
|
<Button
|
|
color="secondary"
|
|
StartIcon="plus"
|
|
onClick={() => {
|
|
apiKeyModalRef.current?.(true);
|
|
apiKeyToEditRef.current?.(undefined);
|
|
}}>
|
|
{t("add")}
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
const ApiKeysView = () => {
|
|
const { t } = useLocale();
|
|
|
|
const { data, isPending } = trpc.viewer.apiKeys.list.useQuery();
|
|
|
|
const [apiKeyModal, setApiKeyModal] = useState(false);
|
|
const [apiKeyToEdit, setApiKeyToEdit] = useState<(TApiKeys & { neverExpires?: boolean }) | undefined>(
|
|
undefined
|
|
);
|
|
|
|
useEffect(() => {
|
|
apiKeyModalRef.current = setApiKeyModal;
|
|
apiKeyToEditRef.current = setApiKeyToEdit;
|
|
return () => {
|
|
apiKeyModalRef.current = null;
|
|
apiKeyToEditRef.current = null;
|
|
};
|
|
}, []);
|
|
|
|
if (isPending || !data) {
|
|
return <SkeletonLoader />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<LicenseRequired>
|
|
<div>
|
|
{data?.length ? (
|
|
<>
|
|
<div className="border-subtle rounded-b-lg border border-t-0">
|
|
{data.map((apiKey, index) => (
|
|
<ApiKeyListItem
|
|
key={apiKey.id}
|
|
apiKey={apiKey}
|
|
lastItem={data.length === index + 1}
|
|
onEditClick={() => {
|
|
setApiKeyToEdit(apiKey);
|
|
setApiKeyModal(true);
|
|
}}
|
|
/>
|
|
))}
|
|
</div>
|
|
</>
|
|
) : (
|
|
<EmptyScreen
|
|
Icon="link"
|
|
headline={t("create_first_api_key")}
|
|
description={t("create_first_api_key_description", { appName: APP_NAME })}
|
|
className="rounded-b-lg rounded-t-none border-t-0"
|
|
buttonRaw={<NewApiKeyButton />}
|
|
/>
|
|
)}
|
|
</div>
|
|
</LicenseRequired>
|
|
|
|
<Dialog open={apiKeyModal} onOpenChange={setApiKeyModal}>
|
|
<DialogContent type="creation">
|
|
<ApiKeyDialogForm handleClose={() => setApiKeyModal(false)} defaultValues={apiKeyToEdit} />
|
|
</DialogContent>
|
|
</Dialog>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ApiKeysView;
|