71 lines
2.0 KiB
TypeScript
71 lines
2.0 KiB
TypeScript
import { Tooltip as KobalteTooltip } from "@kobalte/core/tooltip"
|
|
import { createSignal, Match, splitProps, Switch, type JSX } from "solid-js"
|
|
import type { ComponentProps } from "solid-js"
|
|
|
|
export interface TooltipProps extends ComponentProps<typeof KobalteTooltip> {
|
|
value: JSX.Element
|
|
class?: string
|
|
contentClass?: string
|
|
contentStyle?: JSX.CSSProperties
|
|
inactive?: boolean
|
|
forceOpen?: boolean
|
|
}
|
|
|
|
export interface TooltipKeybindProps extends Omit<TooltipProps, "value"> {
|
|
title: string
|
|
keybind: string
|
|
}
|
|
|
|
export function TooltipKeybind(props: TooltipKeybindProps) {
|
|
const [local, others] = splitProps(props, ["title", "keybind"])
|
|
return (
|
|
<Tooltip
|
|
{...others}
|
|
value={
|
|
<div data-slot="tooltip-keybind">
|
|
<span>{local.title}</span>
|
|
<span data-slot="tooltip-keybind-key">{local.keybind}</span>
|
|
</div>
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export function Tooltip(props: TooltipProps) {
|
|
const [open, setOpen] = createSignal(false)
|
|
const [local, others] = splitProps(props, [
|
|
"children",
|
|
"class",
|
|
"contentClass",
|
|
"contentStyle",
|
|
"inactive",
|
|
"forceOpen",
|
|
"value",
|
|
])
|
|
|
|
return (
|
|
<Switch>
|
|
<Match when={local.inactive}>{local.children}</Match>
|
|
<Match when={true}>
|
|
<KobalteTooltip gutter={4} {...others} open={local.forceOpen || open()} onOpenChange={setOpen}>
|
|
<KobalteTooltip.Trigger as={"div"} data-component="tooltip-trigger" class={local.class}>
|
|
{local.children}
|
|
</KobalteTooltip.Trigger>
|
|
<KobalteTooltip.Portal>
|
|
<KobalteTooltip.Content
|
|
data-component="tooltip"
|
|
data-placement={props.placement}
|
|
data-force-open={local.forceOpen}
|
|
class={local.contentClass}
|
|
style={local.contentStyle}
|
|
>
|
|
{local.value}
|
|
{/* <KobalteTooltip.Arrow data-slot="tooltip-arrow" /> */}
|
|
</KobalteTooltip.Content>
|
|
</KobalteTooltip.Portal>
|
|
</KobalteTooltip>
|
|
</Match>
|
|
</Switch>
|
|
)
|
|
}
|