base
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
* See the LICENSE file for details.
|
||||
*/
|
||||
|
||||
export * from "./root";
|
||||
@@ -0,0 +1,87 @@
|
||||
/**
|
||||
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
* See the LICENSE file for details.
|
||||
*/
|
||||
|
||||
import * as React from "react";
|
||||
import { Tooltip as BaseTooltip } from "@base-ui-components/react/tooltip";
|
||||
import { cn } from "../utils";
|
||||
import type { TPlacement, TSide, TAlign } from "../utils/placement";
|
||||
import { convertPlacementToSideAndAlign } from "../utils/placement";
|
||||
|
||||
type ITooltipProps = {
|
||||
tooltipHeading?: string;
|
||||
tooltipContent?: string | React.ReactNode | null;
|
||||
position?: TPlacement;
|
||||
children: React.ReactElement;
|
||||
disabled?: boolean;
|
||||
className?: string;
|
||||
openDelay?: number;
|
||||
closeDelay?: number;
|
||||
isMobile?: boolean;
|
||||
renderByDefault?: boolean;
|
||||
side?: TSide;
|
||||
align?: TAlign;
|
||||
sideOffset?: number;
|
||||
};
|
||||
|
||||
export function Tooltip(props: ITooltipProps) {
|
||||
const {
|
||||
tooltipHeading,
|
||||
tooltipContent,
|
||||
position = "top",
|
||||
children,
|
||||
disabled = false,
|
||||
className = "",
|
||||
openDelay = 200,
|
||||
side = "bottom",
|
||||
align = "center",
|
||||
sideOffset = 10,
|
||||
closeDelay,
|
||||
isMobile = false,
|
||||
} = props;
|
||||
const { finalSide, finalAlign } = React.useMemo(() => {
|
||||
if (position) {
|
||||
const converted = convertPlacementToSideAndAlign(position);
|
||||
return { finalSide: converted.side, finalAlign: converted.align };
|
||||
}
|
||||
return { finalSide: side, finalAlign: align };
|
||||
}, [position, side, align]);
|
||||
|
||||
return (
|
||||
<BaseTooltip.Provider>
|
||||
<BaseTooltip.Root delay={openDelay} closeDelay={closeDelay} disabled={disabled}>
|
||||
<BaseTooltip.Trigger render={children} />
|
||||
<BaseTooltip.Portal>
|
||||
<BaseTooltip.Positioner
|
||||
className={cn(
|
||||
"z-50 max-w-xs gap-1 overflow-hidden rounded-lg border border-subtle-1 bg-layer-2 px-2 py-1.5 break-words shadow-overlay-200",
|
||||
{
|
||||
hidden: isMobile,
|
||||
},
|
||||
className
|
||||
)}
|
||||
side={finalSide}
|
||||
sideOffset={sideOffset}
|
||||
align={finalAlign}
|
||||
render={
|
||||
<BaseTooltip.Popup>
|
||||
{tooltipHeading && <p className="text-caption-md-medium text-primary">{tooltipHeading}</p>}
|
||||
{tooltipContent && (
|
||||
<p
|
||||
className={cn("text-caption-sm-regular text-secondary", {
|
||||
"mt-1": tooltipHeading && tooltipHeading !== "",
|
||||
})}
|
||||
>
|
||||
{tooltipContent}
|
||||
</p>
|
||||
)}
|
||||
</BaseTooltip.Popup>
|
||||
}
|
||||
/>
|
||||
</BaseTooltip.Portal>
|
||||
</BaseTooltip.Root>
|
||||
</BaseTooltip.Provider>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,309 @@
|
||||
/**
|
||||
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
* See the LICENSE file for details.
|
||||
*/
|
||||
|
||||
import type { Meta, StoryObj } from "@storybook/react-vite";
|
||||
import { HelpCircle } from "lucide-react";
|
||||
import { Tooltip } from "./root";
|
||||
|
||||
const meta = {
|
||||
title: "Components/Tooltip",
|
||||
component: Tooltip,
|
||||
parameters: {
|
||||
layout: "centered",
|
||||
},
|
||||
tags: ["autodocs"],
|
||||
} satisfies Meta<typeof Tooltip>;
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
tooltipContent: "This is a tooltip",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Hover me</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const WithHeading: Story = {
|
||||
args: {
|
||||
tooltipHeading: "Tooltip Title",
|
||||
tooltipContent: "This is the tooltip content with a heading.",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Hover me</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const PositionTop: Story = {
|
||||
args: {
|
||||
tooltipContent: "Tooltip on top",
|
||||
position: "top",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Top</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const PositionBottom: Story = {
|
||||
args: {
|
||||
tooltipContent: "Tooltip on bottom",
|
||||
position: "bottom",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Bottom</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const PositionLeft: Story = {
|
||||
args: {
|
||||
tooltipContent: "Tooltip on left",
|
||||
position: "left",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Left</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const PositionRight: Story = {
|
||||
args: {
|
||||
tooltipContent: "Tooltip on right",
|
||||
position: "right",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Right</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const WithIcon: Story = {
|
||||
args: {
|
||||
tooltipContent: "Click here for help",
|
||||
children: (
|
||||
<button className="hover:bg-gray-100 rounded-full p-2">
|
||||
<HelpCircle className="text-gray-600 h-5 w-5" />
|
||||
</button>
|
||||
),
|
||||
},
|
||||
};
|
||||
|
||||
export const Disabled: Story = {
|
||||
args: {
|
||||
tooltipContent: "This tooltip is disabled",
|
||||
disabled: true,
|
||||
children: <button className="bg-gray-400 rounded-sm px-4 py-2 text-on-color">Hover me (disabled)</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const LongContent: Story = {
|
||||
args: {
|
||||
tooltipHeading: "Important Information",
|
||||
tooltipContent:
|
||||
"This is a longer tooltip with more detailed information that wraps to multiple lines. It provides comprehensive details about the element.",
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Long content</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const CustomDelay: Story = {
|
||||
args: {
|
||||
tooltipContent: "This tooltip has a custom delay",
|
||||
openDelay: 1000,
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Custom delay (1s)</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const CustomOffset: Story = {
|
||||
args: {
|
||||
tooltipContent: "Custom offset tooltip",
|
||||
sideOffset: 20,
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">Custom offset</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const AllPositions: Story = {
|
||||
args: {
|
||||
children: <div />,
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<div className="flex flex-col items-center gap-4">
|
||||
<Tooltip tooltipContent="Top position" position="top">
|
||||
<button className="bg-blue-500 rounded-sm px-4 py-2 text-13 text-on-color">Top</button>
|
||||
</Tooltip>
|
||||
<div className="flex gap-4">
|
||||
<Tooltip tooltipContent="Left position" position="left">
|
||||
<button className="bg-blue-500 rounded-sm px-4 py-2 text-13 text-on-color">Left</button>
|
||||
</Tooltip>
|
||||
<Tooltip tooltipContent="Right position" position="right">
|
||||
<button className="bg-blue-500 rounded-sm px-4 py-2 text-13 text-on-color">Right</button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
<Tooltip tooltipContent="Bottom position" position="bottom">
|
||||
<button className="bg-blue-500 rounded-sm px-4 py-2 text-13 text-on-color">Bottom</button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const OnText: Story = {
|
||||
args: {
|
||||
children: <div />,
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<p className="text-gray-700 text-13">
|
||||
This is some text with a{" "}
|
||||
<Tooltip tooltipContent="Additional information about this word" position="top">
|
||||
<span className="border-blue-500 text-blue-500 cursor-help border-b border-dashed">tooltip</span>
|
||||
</Tooltip>{" "}
|
||||
in it.
|
||||
</p>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const OnDisabledButton: Story = {
|
||||
args: {
|
||||
children: <div />,
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<Tooltip tooltipContent="This feature is currently unavailable" position="top">
|
||||
<button className="bg-gray-300 text-gray-500 cursor-not-allowed rounded-sm px-4 py-2" disabled>
|
||||
Disabled Button
|
||||
</button>
|
||||
</Tooltip>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const ComplexContent: Story = {
|
||||
args: {
|
||||
tooltipHeading: "User Information",
|
||||
tooltipContent: (
|
||||
<div className="space-y-1">
|
||||
<p className="font-semibold">John Doe</p>
|
||||
<p className="text-11">john@example.com</p>
|
||||
<p className="text-gray-400 text-11">Last seen: 2 hours ago</p>
|
||||
</div>
|
||||
),
|
||||
children: <button className="bg-blue-500 rounded-sm px-4 py-2 text-on-color">View User</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const WithCustomStyling: Story = {
|
||||
args: {
|
||||
tooltipContent: "Custom styled tooltip",
|
||||
className: "bg-purple-500 text-on-color",
|
||||
children: <button className="bg-purple-500 rounded-sm px-4 py-2 text-on-color">Custom style</button>,
|
||||
},
|
||||
};
|
||||
|
||||
export const MultipleTooltips: Story = {
|
||||
args: {
|
||||
children: <div />,
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<div className="flex gap-4">
|
||||
<Tooltip tooltipContent="Save your work" position="top">
|
||||
<button className="bg-green-500 rounded-sm px-4 py-2 text-13 text-on-color">Save</button>
|
||||
</Tooltip>
|
||||
<Tooltip tooltipContent="Discard changes" position="top">
|
||||
<button className="bg-red-500 rounded-sm px-4 py-2 text-13 text-on-color">Cancel</button>
|
||||
</Tooltip>
|
||||
<Tooltip tooltipContent="Export to PDF" position="top">
|
||||
<button className="bg-blue-500 rounded-sm px-4 py-2 text-13 text-on-color">Export</button>
|
||||
</Tooltip>
|
||||
<Tooltip tooltipContent="Share with team" position="top">
|
||||
<button className="bg-purple-500 rounded-sm px-4 py-2 text-13 text-on-color">Share</button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const IconButtons: Story = {
|
||||
args: {
|
||||
children: <div />,
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<div className="flex gap-2">
|
||||
<Tooltip tooltipContent="Edit" position="top">
|
||||
<button className="hover:bg-gray-100 rounded-sm p-2">
|
||||
<svg
|
||||
className="text-gray-600 h-5 w-5"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
</Tooltip>
|
||||
<Tooltip tooltipContent="Delete" position="top">
|
||||
<button className="hover:bg-gray-100 rounded-sm p-2">
|
||||
<svg
|
||||
className="h-5 w-5 text-danger-primary"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
</Tooltip>
|
||||
<Tooltip tooltipContent="Share" position="top">
|
||||
<button className="hover:bg-gray-100 rounded-sm p-2">
|
||||
<svg
|
||||
className="text-blue-600 h-5 w-5"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M8.684 13.342C8.886 12.938 9 12.482 9 12c0-.482-.114-.938-.316-1.342m0 2.684a3 3 0 110-2.684m0 2.684l6.632 3.316m-6.632-6l6.632-3.316m0 0a3 3 0 105.367-2.684 3 3 0 00-5.367 2.684zm0 9.316a3 3 0 105.368 2.684 3 3 0 00-5.368-2.684z"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const InFormField: Story = {
|
||||
args: {
|
||||
children: <div />,
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<div className="w-80">
|
||||
<label className="text-gray-700 mb-1 flex items-center gap-2 text-13 font-medium">
|
||||
Email Address
|
||||
<Tooltip
|
||||
tooltipHeading="Email Requirements"
|
||||
tooltipContent="Enter a valid email address that you have access to. We'll send a verification link."
|
||||
position="right"
|
||||
>
|
||||
<HelpCircle className="text-gray-400 h-4 w-4 cursor-help" />
|
||||
</Tooltip>
|
||||
</label>
|
||||
<input
|
||||
type="email"
|
||||
className="border-gray-300 w-full rounded-sm border px-3 py-2 text-13"
|
||||
placeholder="you@example.com"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user