mirror of
https://github.com/docmost/docmost.git
synced 2026-05-20 00:14:10 +08:00
d7a5fda53c
* feat: feature flag upgrade * fix translations * refactor * fix * fix
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
import { Badge, Table } from "@mantine/core";
|
|
import { format } from "date-fns";
|
|
import { useLicenseInfo } from "@/ee/licence/queries/license-query.ts";
|
|
import { isLicenseExpired } from "@/ee/licence/license.utils.ts";
|
|
import { useAtom } from "jotai";
|
|
import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
|
|
|
|
export default function LicenseDetails() {
|
|
const { data: license, isError } = useLicenseInfo();
|
|
const [workspace] = useAtom(workspaceAtom);
|
|
|
|
if (!license) {
|
|
return null;
|
|
}
|
|
if (isError) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Table.ScrollContainer minWidth={500} py="md">
|
|
<Table
|
|
variant="vertical"
|
|
verticalSpacing="sm"
|
|
layout="fixed"
|
|
withTableBorder
|
|
>
|
|
<Table.Caption>
|
|
Contact sales@docmost.com for support and enquiries.
|
|
</Table.Caption>
|
|
<Table.Tbody>
|
|
<Table.Tr>
|
|
<Table.Th w={160}>Edition</Table.Th>
|
|
<Table.Td>
|
|
{license.licenseType === "business" ? "Business" : "Enterprise"}{" "}
|
|
{license.trial && <Badge color="green">Trial</Badge>}
|
|
</Table.Td>
|
|
</Table.Tr>
|
|
|
|
<Table.Tr>
|
|
<Table.Th>Licensed to</Table.Th>
|
|
<Table.Td>{license.customerName}</Table.Td>
|
|
</Table.Tr>
|
|
|
|
<Table.Tr>
|
|
<Table.Th>Seat count</Table.Th>
|
|
<Table.Td>
|
|
{license.seatCount} ({workspace?.memberCount} used)
|
|
</Table.Td>
|
|
</Table.Tr>
|
|
|
|
<Table.Tr>
|
|
<Table.Th>Issued at</Table.Th>
|
|
<Table.Td>{format(license.issuedAt, "dd MMMM, yyyy")}</Table.Td>
|
|
</Table.Tr>
|
|
|
|
<Table.Tr>
|
|
<Table.Th>Expires at</Table.Th>
|
|
<Table.Td>{format(license.expiresAt, "dd MMMM, yyyy")}</Table.Td>
|
|
</Table.Tr>
|
|
<Table.Tr>
|
|
<Table.Th>License ID</Table.Th>
|
|
<Table.Td>{license.id}</Table.Td>
|
|
</Table.Tr>
|
|
<Table.Tr>
|
|
<Table.Th>Status</Table.Th>
|
|
<Table.Td>
|
|
{isLicenseExpired(license) ? (
|
|
<Badge color="red" variant="light">
|
|
Expired
|
|
</Badge>
|
|
) : (
|
|
<Badge color="blue" variant="light">
|
|
Valid
|
|
</Badge>
|
|
)}
|
|
</Table.Td>
|
|
</Table.Tr>
|
|
</Table.Tbody>
|
|
</Table>
|
|
</Table.ScrollContainer>
|
|
);
|
|
}
|