Every line of 'how to pass refs in a component wrapped with hoc' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
348 ref: function ref(_ref) { 349 return _this2.reactComponentRef = _ref; 350 }
80 ref: function ref(_ref) { 81 _this._rctSwitch = _ref; 82 },
587 function assignRefs (element, ref, component) { 588 // hoist typeof info 589 var type = typeof ref; 590 var refs = component.refs == null ? component.refs = {} : component.refs; 591 592 if (type === 'string') { 593 // string ref, assign 594 refs[ref] = element; 595 } else if (type === 'function') { 596 // function ref, call with element as arg 597 ref(element); 598 } 599 }
19 bindComponent(component, _options){ 20 21 super.bindComponent(namespace, component, _options); 22 23 component[namespace] = Object.assign(component[namespace], { 24 handleSubmit: this.handleSubmit.bind(component), 25 handleDelete: this.handleDelete.bind(component), 26 submitTags: this.submitTags.bind(component), 27 canEdit: this.canEdit.bind(component), 28 canDelete: this.canDelete.bind(component), 29 }); 30 }
260 ref: function ref(containner) { 261 _this2.forwardContainner = containner; 262 }
6 function attachRef(ref, component, owner) { 7 if (typeof ref === 'function') { 8 ref(component.getPublicInstance()); 9 } else { 10 ReactOwner.addComponentAsRefTo(component, ref, owner); 11 } 12 }
56 ref: function ref(container) { 57 return _this2.container = container; 58 },
324 ref: function ref(_ref2) { 325 _this2.mountNode = _ref2 ? _ref2.getMountNode() : _ref2; 326 },
3 export function forwardRef>( 4 component: T 5 ) { 6 return (React.forwardRef(component) as unknown) as T; 7 }
183 ref: function ref(_ref) { 184 return _this2.toastBar = _ref; 185 }