mirror of
https://github.com/docmost/docmost.git
synced 2026-05-20 00:14:10 +08:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { Helmet } from "react-helmet-async";
|
|
import { getAppName } from "@/lib/config.ts";
|
|
import SettingsTitle from "@/components/settings/settings-title.tsx";
|
|
import React from "react";
|
|
import useUserRole from "@/hooks/use-user-role.tsx";
|
|
import LicenseDetails from "@/ee/licence/components/license-details.tsx";
|
|
import ActivateLicenseForm from "@/ee/licence/components/activate-license-modal.tsx";
|
|
import InstallationDetails from "@/ee/licence/components/installation-details.tsx";
|
|
import OssDetails from "@/ee/licence/components/oss-details.tsx";
|
|
import { useAtom } from "jotai/index";
|
|
import { entitlementAtom } from "@/ee/entitlement/entitlement-atom";
|
|
|
|
export default function License() {
|
|
const [entitlements] = useAtom(entitlementAtom);
|
|
const hasLicense = entitlements != null && entitlements.tier !== "free";
|
|
const { isAdmin } = useUserRole();
|
|
|
|
if (!isAdmin) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>License - {getAppName()}</title>
|
|
</Helmet>
|
|
<SettingsTitle title="License" />
|
|
|
|
<ActivateLicenseForm />
|
|
|
|
<InstallationDetails />
|
|
|
|
{hasLicense ? <LicenseDetails /> : <OssDetails />}
|
|
</>
|
|
);
|
|
}
|