/** * Copyright (c) Nicolas Gallagher. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import { createMeasure, createMeasureInWindow, createMeasureLayout, } from '@tamagui/use-element-layout' import type { GenericStyleProp } from '../../types' import { useStable } from '../useStable/index' /** * Adds non-standard methods to the hode element. This is temporarily until an * API like `ReactNative.measure(hostRef, callback)` is added to React Native. */ export function usePlatformMethods({ pointerEvents, style, }: { style?: GenericStyleProp pointerEvents?: any }): (hostNode: any) => void { // Avoid creating a new ref on every render. The props only need to be // available to 'setNativeProps' when it is called. const ref = useStable(() => (hostNode: any) => { if (hostNode != null) { hostNode.measure = createMeasure(hostNode) hostNode.measureLayout = createMeasureLayout(hostNode) hostNode.measureInWindow = createMeasureInWindow(hostNode) } }) return ref }