You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
404 B
18 lines
404 B
5 years ago
|
import React from 'react';
|
||
|
|
||
|
export function fillRef<T>(ref: React.Ref<T>, node: T) {
|
||
|
if (typeof ref === 'function') {
|
||
|
ref(node);
|
||
|
} else if (typeof ref === 'object' && ref && 'current' in ref) {
|
||
|
(ref as any).current = node;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function composeRef<T>(...refs: React.Ref<T>[]): React.Ref<T> {
|
||
|
return (node: T) => {
|
||
|
refs.forEach(ref => {
|
||
|
fillRef(ref, node);
|
||
|
});
|
||
|
};
|
||
|
}
|