overleaf-cep/services/web/frontend/js/utils/react.ts
Tim Down 7abafb01ea Merge pull request #23940 from overleaf/td-react-18
Upgrade to React 18

GitOrigin-RevId: 9b81936e6eea2bccd97fe5c2c5841f0b946371b8
2025-05-02 08:05:29 +00:00

28 lines
629 B
TypeScript

import {
forwardRef,
PropsWithoutRef,
ReactElement,
Ref,
RefAttributes,
FunctionComponent,
} from 'react'
export const fixedForwardRef = <
T,
P = object,
A extends Record<string, FunctionComponent> = Record<
string,
FunctionComponent
>,
>(
render: (props: PropsWithoutRef<P>, ref: Ref<T>) => ReactElement | null,
propsToAttach: A = {} as A
): ((props: P & RefAttributes<T>) => ReactElement | null) & A => {
const ForwardReferredComponent = forwardRef(render) as any
for (const i in propsToAttach) {
ForwardReferredComponent[i] = propsToAttach[i]
}
return ForwardReferredComponent
}