mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-22 20:29:56 +00:00
307 lines
9.2 KiB
TypeScript
307 lines
9.2 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useSearchParams } from "react-router-dom";
|
|
import {
|
|
DeleteOutlined as DeleteOutlinedIcon,
|
|
EditOutlined as EditOutlinedIcon,
|
|
PlusOutlined as PlusOutlinedIcon,
|
|
ReloadOutlined as ReloadOutlinedIcon,
|
|
SnippetsOutlined as SnippetsOutlinedIcon,
|
|
} from "@ant-design/icons";
|
|
import { PageHeader } from "@ant-design/pro-components";
|
|
import { useRequest } from "ahooks";
|
|
import { Avatar, Button, Card, Empty, Flex, Input, Modal, Space, Table, type TableProps, Tooltip, Typography, notification } from "antd";
|
|
import dayjs from "dayjs";
|
|
import { ClientResponseError } from "pocketbase";
|
|
|
|
import AccessEditDrawer, { type AccessEditDrawerProps } from "@/components/access/AccessEditDrawer";
|
|
import { type AccessModel } from "@/domain/access";
|
|
import { ACCESS_USAGES, accessProvidersMap } from "@/domain/provider";
|
|
import { useZustandShallowSelector } from "@/hooks";
|
|
import { useAccessesStore } from "@/stores/access";
|
|
import { getErrMsg } from "@/utils/error";
|
|
|
|
type AccessUsageProp = AccessEditDrawerProps["usage"];
|
|
|
|
const AccessList = () => {
|
|
const [searchParams] = useSearchParams();
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const [modalApi, ModelContextHolder] = Modal.useModal();
|
|
const [notificationApi, NotificationContextHolder] = notification.useNotification();
|
|
|
|
const { accesses, loadedAtOnce, fetchAccesses, deleteAccess } = useAccessesStore(
|
|
useZustandShallowSelector(["accesses", "loadedAtOnce", "fetchAccesses", "deleteAccess"])
|
|
);
|
|
|
|
const tableColumns: TableProps<AccessModel>["columns"] = [
|
|
{
|
|
key: "$index",
|
|
align: "center",
|
|
fixed: "left",
|
|
width: 50,
|
|
render: (_, __, index) => (page - 1) * pageSize + index + 1,
|
|
},
|
|
{
|
|
key: "name",
|
|
title: t("access.props.name"),
|
|
ellipsis: true,
|
|
render: (_, record) => <>{record.name}</>,
|
|
},
|
|
{
|
|
key: "provider",
|
|
title: t("access.props.provider"),
|
|
ellipsis: true,
|
|
render: (_, record) => {
|
|
return (
|
|
<Space className="max-w-full truncate" size={4}>
|
|
<Avatar src={accessProvidersMap.get(record.provider)?.icon} size="small" />
|
|
<Typography.Text ellipsis>{t(accessProvidersMap.get(record.provider)?.name ?? "")}</Typography.Text>
|
|
</Space>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
key: "createdAt",
|
|
title: t("access.props.created_at"),
|
|
ellipsis: true,
|
|
render: (_, record) => {
|
|
return dayjs(record.created!).format("YYYY-MM-DD HH:mm:ss");
|
|
},
|
|
},
|
|
{
|
|
key: "updatedAt",
|
|
title: t("access.props.updated_at"),
|
|
ellipsis: true,
|
|
render: (_, record) => {
|
|
return dayjs(record.updated!).format("YYYY-MM-DD HH:mm:ss");
|
|
},
|
|
},
|
|
{
|
|
key: "$action",
|
|
align: "end",
|
|
fixed: "right",
|
|
width: 120,
|
|
render: (_, record) => (
|
|
<Space.Compact>
|
|
<AccessEditDrawer
|
|
data={record}
|
|
usage={filters["usage"] as AccessUsageProp}
|
|
scene="edit"
|
|
trigger={
|
|
<Tooltip title={t("access.action.edit")}>
|
|
<Button color="primary" icon={<EditOutlinedIcon />} variant="text" />
|
|
</Tooltip>
|
|
}
|
|
/>
|
|
|
|
<AccessEditDrawer
|
|
data={{ ...record, id: undefined, name: `${record.name}-copy` }}
|
|
usage={filters["usage"] as AccessUsageProp}
|
|
scene="add"
|
|
trigger={
|
|
<Tooltip title={t("access.action.duplicate")}>
|
|
<Button color="primary" icon={<SnippetsOutlinedIcon />} variant="text" />
|
|
</Tooltip>
|
|
}
|
|
/>
|
|
|
|
<Tooltip title={t("access.action.delete")}>
|
|
<Button
|
|
color="danger"
|
|
icon={<DeleteOutlinedIcon />}
|
|
variant="text"
|
|
onClick={() => {
|
|
handleDeleteClick(record);
|
|
}}
|
|
/>
|
|
</Tooltip>
|
|
</Space.Compact>
|
|
),
|
|
},
|
|
];
|
|
const [tableData, setTableData] = useState<AccessModel[]>([]);
|
|
const [tableTotal, setTableTotal] = useState<number>(0);
|
|
|
|
const [filters, setFilters] = useState<Record<string, unknown>>(() => {
|
|
return {
|
|
usage: "both-dns-hosting" satisfies AccessUsageProp,
|
|
keyword: searchParams.get("keyword"),
|
|
};
|
|
});
|
|
|
|
const [page, setPage] = useState<number>(1);
|
|
const [pageSize, setPageSize] = useState<number>(10);
|
|
|
|
useEffect(() => {
|
|
fetchAccesses().catch((err) => {
|
|
if (err instanceof ClientResponseError && err.isAbort) {
|
|
return;
|
|
}
|
|
|
|
console.error(err);
|
|
notificationApi.error({ message: t("common.text.request_error"), description: getErrMsg(err) });
|
|
});
|
|
}, []);
|
|
|
|
const { loading, run: refreshData } = useRequest(
|
|
() => {
|
|
const startIndex = (page - 1) * pageSize;
|
|
const endIndex = startIndex + pageSize;
|
|
const list = accesses
|
|
.filter((e) => {
|
|
const keyword = (filters["keyword"] as string | undefined)?.trim();
|
|
if (keyword) {
|
|
return e.name.includes(keyword);
|
|
}
|
|
|
|
return true;
|
|
})
|
|
.filter((e) => {
|
|
const provider = accessProvidersMap.get(e.provider);
|
|
switch (filters["usage"] as AccessUsageProp) {
|
|
case "both-dns-hosting":
|
|
return !e.reserve && (provider?.usages?.includes(ACCESS_USAGES.DNS) || provider?.usages?.includes(ACCESS_USAGES.HOSTING));
|
|
case "ca-only":
|
|
return e.reserve === "ca" && provider?.usages?.includes(ACCESS_USAGES.CA);
|
|
case "notification-only":
|
|
return e.reserve === "notification" && provider?.usages?.includes(ACCESS_USAGES.NOTIFICATION);
|
|
}
|
|
});
|
|
return Promise.resolve({
|
|
items: list.slice(startIndex, endIndex),
|
|
totalItems: list.length,
|
|
});
|
|
},
|
|
{
|
|
refreshDeps: [accesses, filters, page, pageSize],
|
|
onSuccess: (res) => {
|
|
setTableData(res.items);
|
|
setTableTotal(res.totalItems);
|
|
},
|
|
}
|
|
);
|
|
|
|
const handleTabChange = (key: string) => {
|
|
setFilters((prev) => ({ ...prev, usage: key }));
|
|
setPage(1);
|
|
};
|
|
|
|
const handleSearch = (value: string) => {
|
|
setFilters((prev) => ({ ...prev, keyword: value }));
|
|
setPage(1);
|
|
};
|
|
|
|
const handleReloadClick = () => {
|
|
if (loading) return;
|
|
|
|
fetchAccesses();
|
|
};
|
|
|
|
const handleDeleteClick = async (data: AccessModel) => {
|
|
modalApi.confirm({
|
|
title: t("access.action.delete"),
|
|
content: t("access.action.delete.confirm"),
|
|
onOk: async () => {
|
|
// TODO: 有关联数据的不允许被删除
|
|
try {
|
|
await deleteAccess(data);
|
|
refreshData();
|
|
} catch (err) {
|
|
console.error(err);
|
|
notificationApi.error({ message: t("common.text.request_error"), description: getErrMsg(err) });
|
|
}
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="p-4">
|
|
{ModelContextHolder}
|
|
{NotificationContextHolder}
|
|
|
|
<PageHeader
|
|
title={t("access.page.title")}
|
|
extra={[
|
|
<AccessEditDrawer
|
|
key="create"
|
|
usage={filters["usage"] as AccessUsageProp}
|
|
scene="add"
|
|
trigger={
|
|
<Button type="primary" icon={<PlusOutlinedIcon />}>
|
|
{t("access.action.add")}
|
|
</Button>
|
|
}
|
|
/>,
|
|
]}
|
|
/>
|
|
|
|
<Card
|
|
className="rounded-b-none"
|
|
styles={{
|
|
body: {
|
|
padding: 0,
|
|
},
|
|
}}
|
|
tabList={[
|
|
{
|
|
key: "both-dns-hosting",
|
|
label: t("access.props.usage.both_dns_hosting"),
|
|
},
|
|
{
|
|
key: "ca-only",
|
|
label: t("access.props.usage.ca_only"),
|
|
},
|
|
{
|
|
key: "notification-only",
|
|
label: t("access.props.usage.notification_only"),
|
|
},
|
|
]}
|
|
activeTabKey={filters["usage"] as string}
|
|
onTabChange={(key) => handleTabChange(key)}
|
|
/>
|
|
|
|
<Card className="rounded-t-none " size="small">
|
|
<div className="mb-4">
|
|
<Flex gap="small">
|
|
<div className="flex-1">
|
|
<Input.Search allowClear defaultValue={filters["keyword"] as string} placeholder={t("access.search.placeholder")} onSearch={handleSearch} />
|
|
</div>
|
|
<div>
|
|
<Button icon={<ReloadOutlinedIcon spin={loading} />} onClick={handleReloadClick} />
|
|
</div>
|
|
</Flex>
|
|
</div>
|
|
|
|
<Table<AccessModel>
|
|
columns={tableColumns}
|
|
dataSource={tableData}
|
|
loading={!loadedAtOnce || loading}
|
|
locale={{
|
|
emptyText: <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} description={t("access.nodata")} />,
|
|
}}
|
|
pagination={{
|
|
current: page,
|
|
pageSize: pageSize,
|
|
total: tableTotal,
|
|
showSizeChanger: true,
|
|
onChange: (page: number, pageSize: number) => {
|
|
setPage(page);
|
|
setPageSize(pageSize);
|
|
},
|
|
onShowSizeChange: (page: number, pageSize: number) => {
|
|
setPage(page);
|
|
setPageSize(pageSize);
|
|
},
|
|
}}
|
|
rowKey={(record) => record.id}
|
|
scroll={{ x: "max(100%, 960px)" }}
|
|
/>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AccessList;
|