Add function to track hovering over a VueFeature

This commit is contained in:
thepaperpilot 2022-07-25 21:29:56 -05:00
parent b397929c62
commit 783d5a8a6b

View file

@ -12,6 +12,7 @@ import {
onUnmounted,
ref,
shallowRef,
toRef,
unref,
watchEffect
} from "vue";
@ -211,3 +212,42 @@ export function processedPropType<T>(...types: PropTypes[]): PropType<ProcessedC
}
return types as PropType<ProcessedComputable<T>>;
}
export function trackHover(element: VueFeature): Ref<boolean> {
const elementComponent = element[ComponentKey];
const isHovered = ref(false);
element[ComponentKey] = defineComponent({
props: {
element: {
type: Object as PropType<VueFeature>,
required: true
}
},
setup: function (props) {
const element = toRef(props, "element");
onUnmounted(() => (isHovered.value = false));
return () => (
<div
style="display: inline-block"
onPointerenter={() => (isHovered.value = true)}
onPointerleave={() => (isHovered.value = false)}
>
{/* eslint-disable-next-line @typescript-eslint/no-non-null-assertion */}
{unwrapRef(element) == null ? "" : renderJSX(unwrapRef(element)!)}
</div>
);
}
}) as GenericComponent;
const elementGatherProps = element[GatherProps].bind(element);
element[GatherProps] = () => ({
element: {
[ComponentKey]: elementComponent,
[GatherProps]: elementGatherProps
}
});
return isHovered;
}