feat(tooltip): enhance Tooltip with AsChild property

This update enhances the Tooltip component in the react/components package by adding the AsChild property. Now, users of the Tooltip component have flexibility to use it as a child of another component. A conditional logic is added to choose either Slot or "div" based on the asChild property. And rest of the properties are extracted into extractedRest for avoiding passing of asChild downstream.
This commit is contained in:
p-sw 2024-06-11 20:30:53 +09:00
parent a329eee279
commit ffb8504b09

View File

@ -1,5 +1,5 @@
import React, { useState } from "react";
import { VariantProps, vcn } from "@pswui-lib";
import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib";
interface TooltipContextBody {
position: "top" | "bottom" | "left" | "right";
@ -48,18 +48,26 @@ const [tooltipVariant, resolveTooltipVariantProps] = vcn({
interface TooltipProps
extends React.HTMLAttributes<HTMLDivElement>,
VariantProps<typeof tooltipVariant> {}
VariantProps<typeof tooltipVariant>,
AsChild {}
const Tooltip = React.forwardRef<HTMLDivElement, TooltipProps>((props, ref) => {
const [variantProps, rest] = resolveTooltipVariantProps(props);
const { asChild, ...extractedRest } = rest;
const contextState = useState<TooltipContextBody>({
...tooltipContextInitial,
...variantProps,
});
const Comp = asChild ? Slot : "div";
return (
<TooltipContext.Provider value={contextState}>
<div ref={ref} className={tooltipVariant(variantProps)} {...rest} />
<Comp
ref={ref}
className={tooltipVariant(variantProps)}
{...extractedRest}
/>
</TooltipContext.Provider>
);
});