最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Sizing one component by getting the width of another one using useRef hook in React - Stack Overflow

programmeradmin1浏览0评论

I'm trying to set the width of a ponent by using the useRef hook in React but I clearly am not grokking the pattern. The codesandbox can be found here: . Thanks!

import React, {useRef} from "react";
import ReactDOM from "react-dom";

import "./styles.css";

function App() {
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
      <Foo />
    </div>
  );
}

const Foo = () => {
  const { current: btn } = useRef(null);
  return (
    <React.Fragment>
      <button ref={btn}>buuuuttttoooon</button>
      <div style={{ width: btn.style.width, backgroundColor: 'pink', height: '50px' }} />
    </React.Fragment>
  )
}


const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

I'm trying to set the width of a ponent by using the useRef hook in React but I clearly am not grokking the pattern. The codesandbox can be found here: https://codesandbox.io/s/vqn5jyv9y5 . Thanks!

import React, {useRef} from "react";
import ReactDOM from "react-dom";

import "./styles.css";

function App() {
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
      <Foo />
    </div>
  );
}

const Foo = () => {
  const { current: btn } = useRef(null);
  return (
    <React.Fragment>
      <button ref={btn}>buuuuttttoooon</button>
      <div style={{ width: btn.style.width, backgroundColor: 'pink', height: '50px' }} />
    </React.Fragment>
  )
}


const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
Share Improve this question asked Mar 13, 2019 at 3:22 reactorreactor 1,9513 gold badges17 silver badges46 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

btn is ing as null which is causing trouble and also ref will pick the style you defined on ponent level. If I understand correctly then on the basis of 1st HTML element you want to modify the styling of another HTML element.

Please find the code I modified using state -

const Foo = () => {
  const [count, setCount] = React.useState('100px')
  const refElem = React.useRef(0)
  return (
    <>
      <button 
        ref={refElem => {
            if(refElem) {
              setCount(refElem.style.width)
            }
          }
        }
        style={{
          width: '700px'
        }}>This is a button 1</button>
      <hr />
      <button style={{width: count}}>This is a button 2 = {count}</button>
      <hr />
    </>
  )
}

Working Example - https://codepen.io/swapnesh/pen/ywPRWG

发布评论

评论列表(0)

  1. 暂无评论