use-reflect-event
the useReflectEvent hook reflects the event from the reference origin to the reference destination
the useReflectEvent hook reflects the event from the reference origin to the reference destination, the captured event will be canceled
One of the possibilities of this hook is to reflect the events inside shadowDOM to lightDOM, example when using forms
import {
useReflectEvent,
reflectEvent
} from "@atomico/hooks/use-reflect-event";
useReflectEvent(
refFrom: Ref<Element>,
refTo: Ref<Element>,
eventType: string
);
useRefectEvent will listen for the eventType of refFrom, to reflect it on refTo
reflectEvent( target: Element, event: Event );
Reflects on an element the given event
Last modified 1yr ago