forked from github/plane
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
import { useState } from "react";
|
|
import { usePopper } from "react-popper";
|
|
import { Popover } from "@headlessui/react";
|
|
// popper
|
|
// helper
|
|
import { getButtonStyling } from "@plane/ui";
|
|
|
|
type Props = {
|
|
label: string;
|
|
icon?: any;
|
|
title: string | undefined;
|
|
description: string | undefined;
|
|
onClick?: () => void;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export const ComicBoxButton: React.FC<Props> = (props) => {
|
|
const { label, icon, title, description, onClick, disabled = false } = props;
|
|
const [isHovered, setIsHovered] = useState(false);
|
|
|
|
const handleMouseEnter = () => {
|
|
setIsHovered(true);
|
|
};
|
|
|
|
const handleMouseLeave = () => {
|
|
setIsHovered(false);
|
|
};
|
|
|
|
const [referenceElement, setReferenceElement] = useState<HTMLButtonElement | null>(null);
|
|
const [popperElement, setPopperElement] = useState<HTMLDivElement | null>();
|
|
const { styles, attributes } = usePopper(referenceElement, popperElement, {
|
|
placement: "right-end",
|
|
modifiers: [
|
|
{
|
|
name: "offset",
|
|
options: {
|
|
offset: [0, 10],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
return (
|
|
<Popover>
|
|
<Popover.Button ref={setReferenceElement} onClick={onClick} disabled={disabled}>
|
|
<div className={`flex items-center gap-2.5 ${getButtonStyling("primary", "lg", disabled)}`}>
|
|
{icon}
|
|
<span className="leading-4">{label}</span>
|
|
<span className="relative h-2 w-2">
|
|
<div
|
|
onMouseEnter={handleMouseEnter}
|
|
onMouseLeave={handleMouseLeave}
|
|
className={`absolute bg-blue-300 right-0 z-10 h-2.5 w-2.5 animate-ping rounded-full`}
|
|
/>
|
|
<div className={`absolute bg-blue-400/40 right-0 h-1.5 w-1.5 mt-0.5 mr-0.5 rounded-full`} />
|
|
</span>
|
|
</div>
|
|
</Popover.Button>
|
|
{isHovered && (
|
|
<Popover.Panel
|
|
as="div"
|
|
className="flex flex-col rounded border border-custom-border-200 bg-custom-background-100 p-5 relative min-w-80"
|
|
ref={setPopperElement}
|
|
style={styles.popper}
|
|
{...attributes.popper}
|
|
static
|
|
>
|
|
<div className="absolute w-2 h-2 bg-custom-background-100 border rounded-lb-sm border-custom-border-200 border-r-0 border-t-0 transform rotate-45 bottom-2 -left-[5px]" />
|
|
<h3 className="text-lg font-semibold w-full">{title}</h3>
|
|
<h4 className="mt-1 text-sm">{description}</h4>
|
|
</Popover.Panel>
|
|
)}
|
|
</Popover>
|
|
);
|
|
};
|