import { TextTip } from '@@/Tip/TextTip'; import { InformationPanel } from '@@/InformationPanel'; import { useNodesCount } from '../system/useNodesCount'; import { useLicenseInfo } from '../licenses/use-license.service'; import { LicenseType } from '../licenses/types'; export function LicenseNodePanel() { const nodesValid = useNodesValid(); if (nodesValid) { return null; } return ( The number of nodes for your license has been exceeded. Please contact your administrator. ); } function useNodesValid() { const { isLoading: isLoadingNodes, data: nodesCount = 0 } = useNodesCount(); const { isLoading: isLoadingLicense, info } = useLicenseInfo(); if ( isLoadingLicense || isLoadingNodes || !info || info.type === LicenseType.Trial ) { return true; } return nodesCount <= info.nodes; }