@stardust-ui/react-component-ref
Version:
A set of components and utils to deal with React refs.
39 lines (32 loc) • 1.07 kB
JavaScript
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
/**
* The function that correctly handles passing refs.
*
* @param ref An ref object or function
* @param node A node that should be passed by ref
*/
var handleRef = function handleRef(ref, node) {
if (process.env.NODE_ENV !== 'production') {
if (typeof ref === 'string') {
throw new Error('We do not support refs as string, this is a legacy API and will be likely to be removed in one of the future releases of React.');
}
}
if (typeof ref === 'function') {
ref(node);
return;
}
if (ref !== null && (0, _typeof2.default)(ref) === 'object') {
// The `current` property is defined as readonly, however it's a valid way because
// `ref` is a mutable object
;
ref.current = node;
}
};
var _default = handleRef;
exports.default = _default;
;