mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-19 19:00:00 +00:00
125 lines
4.0 KiB
TypeScript
125 lines
4.0 KiB
TypeScript
import { CopyToClipboard } from "react-copy-to-clipboard";
|
|
import { useTranslation } from "react-i18next";
|
|
import { CopyOutlined as CopyOutlinedIcon, DownOutlined as DownOutlinedIcon, LikeOutlined as LikeOutlinedIcon } from "@ant-design/icons";
|
|
import { Button, Dropdown, Form, Input, Space, Tooltip, message } from "antd";
|
|
import dayjs from "dayjs";
|
|
|
|
import { type CertificateModel } from "@/domain/certificate";
|
|
import { saveFiles2Zip } from "@/utils/file";
|
|
|
|
export type CertificateDetailProps = {
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
data: CertificateModel;
|
|
};
|
|
|
|
const CertificateDetail = ({ data, ...props }: CertificateDetailProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const [messageApi, MessageContextHolder] = message.useMessage();
|
|
|
|
const handleDownloadPEMClick = async () => {
|
|
const zipName = `${data.id}-${data.subjectAltNames}.zip`;
|
|
const files = [
|
|
{
|
|
name: `${data.subjectAltNames}.pem`,
|
|
content: data.certificate ?? "",
|
|
},
|
|
{
|
|
name: `${data.subjectAltNames}.key`,
|
|
content: data.privateKey ?? "",
|
|
},
|
|
];
|
|
|
|
await saveFiles2Zip(zipName, files);
|
|
};
|
|
|
|
return (
|
|
<div {...props}>
|
|
{MessageContextHolder}
|
|
|
|
<Form layout="vertical">
|
|
<Form.Item label={t("certificate.props.subject_alt_names")}>
|
|
<Input value={data.subjectAltNames} placeholder="" />
|
|
</Form.Item>
|
|
|
|
<Form.Item label={t("certificate.props.validity")}>
|
|
<Input value={`${dayjs(data.effectAt).format("YYYY-MM-DD HH:mm:ss")} ~ ${dayjs(data.expireAt).format("YYYY-MM-DD HH:mm:ss")}`} placeholder="" />
|
|
</Form.Item>
|
|
|
|
<Form.Item>
|
|
<div className="mb-2 flex w-full items-center justify-between">
|
|
<label>{t("certificate.props.certificate")}</label>
|
|
<Tooltip title={t("common.button.copy")}>
|
|
<CopyToClipboard
|
|
text={data.certificate}
|
|
onCopy={() => {
|
|
messageApi.success(t("common.text.copied"));
|
|
}}
|
|
>
|
|
<Button size="small" type="text" icon={<CopyOutlinedIcon />}></Button>
|
|
</CopyToClipboard>
|
|
</Tooltip>
|
|
</div>
|
|
<Input.TextArea value={data.certificate} rows={10} autoSize={{ maxRows: 10 }} readOnly />
|
|
</Form.Item>
|
|
|
|
<Form.Item>
|
|
<div className="mb-2 flex w-full items-center justify-between">
|
|
<label>{t("certificate.props.private_key")}</label>
|
|
<Tooltip title={t("common.button.copy")}>
|
|
<CopyToClipboard
|
|
text={data.privateKey}
|
|
onCopy={() => {
|
|
messageApi.success(t("common.text.copied"));
|
|
}}
|
|
>
|
|
<Button size="small" type="text" icon={<CopyOutlinedIcon />}></Button>
|
|
</CopyToClipboard>
|
|
</Tooltip>
|
|
</div>
|
|
<Input.TextArea value={data.privateKey} rows={10} autoSize={{ maxRows: 10 }} readOnly />
|
|
</Form.Item>
|
|
</Form>
|
|
|
|
<div className="flex items-center justify-end">
|
|
<Dropdown
|
|
menu={{
|
|
items: [
|
|
{
|
|
key: "PEM",
|
|
label: "PEM",
|
|
extra: <LikeOutlinedIcon />,
|
|
onClick: () => handleDownloadPEMClick(),
|
|
},
|
|
{
|
|
key: "PFX",
|
|
label: "PFX",
|
|
onClick: () => {
|
|
alert("TODO: 暂时不支持下载 PFX 证书");
|
|
},
|
|
},
|
|
{
|
|
key: "JKS",
|
|
label: "JKS",
|
|
onClick: () => {
|
|
alert("TODO: 暂时不支持下载 JKS 证书");
|
|
},
|
|
},
|
|
],
|
|
}}
|
|
>
|
|
<Button type="primary">
|
|
<Space>
|
|
<span>{t("certificate.action.download")}</span>
|
|
<DownOutlinedIcon />
|
|
</Space>
|
|
</Button>
|
|
</Dropdown>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CertificateDetail;
|