mirror of https://github.com/portainer/portainer
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { HelpCircle } from 'lucide-react';
|
|
import clsx from 'clsx';
|
|
|
|
import { FeatureId } from '@/react/portainer/feature-flags/enums';
|
|
|
|
import { TooltipWithChildren } from '@@/Tip/TooltipWithChildren';
|
|
import { getFeatureDetails } from '@@/BEFeatureIndicator/utils';
|
|
|
|
interface Props {
|
|
tooltipId: string;
|
|
featureId?: FeatureId;
|
|
}
|
|
|
|
export function LimitedToBeIndicator({ featureId, tooltipId }: Props) {
|
|
const { url } = getFeatureDetails(featureId);
|
|
|
|
return (
|
|
<div className="absolute left-0 top-0 w-full">
|
|
<div className="mx-auto max-w-fit bg-warning-4 rounded-b-lg py-1 px-3 flex gap-1 text-sm items-center">
|
|
<a href={url} target="_blank" rel="noopener noreferrer">
|
|
<span className="text-warning-9">BE Feature</span>
|
|
</a>
|
|
<TooltipWithChildren
|
|
position="bottom"
|
|
className={clsx(tooltipId, 'portainer-tooltip')}
|
|
heading="Business Edition feature."
|
|
message="This feature is currently limited to Business Edition users only."
|
|
>
|
|
<HelpCircle className="ml-1 !text-warning-7" aria-hidden="true" />
|
|
</TooltipWithChildren>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|