mirror of
https://github.com/aljazceru/opencode.git
synced 2026-01-07 09:54:56 +01:00
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
import { Tooltip as KobalteTooltip } from "@kobalte/core/tooltip"
|
|
import { children, createEffect, createSignal, splitProps } from "solid-js"
|
|
import type { ComponentProps } from "solid-js"
|
|
|
|
export interface TooltipProps extends ComponentProps<typeof KobalteTooltip> {
|
|
value: string | (() => string)
|
|
class?: string
|
|
}
|
|
|
|
export function Tooltip(props: TooltipProps) {
|
|
const [open, setOpen] = createSignal(false)
|
|
const [local, others] = splitProps(props, ["children", "class"])
|
|
|
|
const c = children(() => local.children)
|
|
|
|
createEffect(() => {
|
|
const childElements = c()
|
|
if (childElements instanceof HTMLElement) {
|
|
childElements.addEventListener("focus", () => setOpen(true))
|
|
childElements.addEventListener("blur", () => setOpen(false))
|
|
} else if (Array.isArray(childElements)) {
|
|
for (const child of childElements) {
|
|
if (child instanceof HTMLElement) {
|
|
child.addEventListener("focus", () => setOpen(true))
|
|
child.addEventListener("blur", () => setOpen(false))
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
return (
|
|
<KobalteTooltip forceMount {...others} open={open()} onOpenChange={setOpen}>
|
|
<KobalteTooltip.Trigger as={"div"} data-component="tooltip-trigger" class={local.class}>
|
|
{c()}
|
|
</KobalteTooltip.Trigger>
|
|
<KobalteTooltip.Portal>
|
|
<KobalteTooltip.Content data-component="tooltip" data-placement={props.placement}>
|
|
{typeof others.value === "function" ? others.value() : others.value}
|
|
{/* <KobalteTooltip.Arrow data-slot="arrow" size={18} /> */}
|
|
</KobalteTooltip.Content>
|
|
</KobalteTooltip.Portal>
|
|
</KobalteTooltip>
|
|
)
|
|
}
|