* feat: Cal.diy — community-driven MIT-licensed fork of Cal.com This squashed commit contains all Cal.diy changes applied on top of calcom/cal.com main: - Rebrand Cal.com to Cal.diy across the entire codebase - Remove Enterprise Edition (EE) features, license checks, and AGPL restrictions - Switch license from AGPL-3.0 to MIT - Remove docs/ directory (migrated to Nextra at cal.diy) - Remove dead code: org tests, EE tips, platform nav, premium username, SAML/SSO, etc. - Clean up .env.example for self-hosted Cal.diy - Update Docker image references to calcom/cal.diy - Update README, CONTRIBUTING.md, and issue templates for Cal.diy community fork - Add PR welcome bot for Cal.diy contributors - Fix API v2 breaking changes oasdiff ignore entries - Replace Blacksmith CI runners with default GitHub Actions 3893 files changed, 20789 insertions(+), 411020 deletions(-) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: remove org-specific /organizations/:orgId endpoints from API v2 atoms controllers (#1701) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * fix: revert Cal.diy Inc to Cal.com, Inc. in license files, copyright notices, and package metadata (#1702) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * rip out org related comments in api v2 --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
106 lines
3.2 KiB
TypeScript
106 lines
3.2 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
import type { TApiKeys } from "~/api-keys/api-keys/components/ApiKeyListItem";
|
|
import { Dialog } from "@calcom/features/components/controlled-dialog";
|
|
import ApiKeyDialogForm from "~/api-keys/api-keys/components/ApiKeyDialogForm";
|
|
import ApiKeyListItem from "~/api-keys/api-keys/components/ApiKeyListItem";
|
|
import SettingsHeader from "@calcom/features/settings/appDir/SettingsHeader";
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import type { RouterOutputs } 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";
|
|
|
|
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"
|
|
size="sm"
|
|
variant="fab"
|
|
onClick={() => {
|
|
apiKeyModalRef.current?.(true);
|
|
apiKeyToEditRef.current?.(undefined);
|
|
}}>
|
|
{t("add")}
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
type Props = {
|
|
apiKeys: RouterOutputs["viewer"]["apiKeys"]["list"];
|
|
};
|
|
|
|
const ApiKeysView = ({ apiKeys: data }: Props) => {
|
|
const { t } = useLocale();
|
|
|
|
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;
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<SettingsHeader
|
|
title={t("api_keys")}
|
|
description={t("create_first_api_key_description", { appName: APP_NAME })}
|
|
CTA={<NewApiKeyButton />}
|
|
borderInShellHeader={true}>
|
|
<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>
|
|
|
|
<Dialog open={apiKeyModal} onOpenChange={setApiKeyModal}>
|
|
<DialogContent type="creation">
|
|
<ApiKeyDialogForm handleClose={() => setApiKeyModal(false)} defaultValues={apiKeyToEdit} />
|
|
</DialogContent>
|
|
</Dialog>
|
|
</SettingsHeader>
|
|
);
|
|
};
|
|
|
|
export default ApiKeysView;
|