1. ホーム
  2. javascript

[解決済み] Reactでブラウザのリサイズ時にビューを再描画する

2022-03-21 01:15:40

質問

ブラウザのウィンドウサイズを変更したときに、Reactにビューを再レンダリングさせるにはどうすればよいですか?

背景

ページ上に個別にレイアウトしたいブロックがいくつかありますが、ブラウザのウィンドウが変わったときに更新されるようにしたいのです。最終的には次のようなものになります。 ベン・ホーランド Pinterestのレイアウトですが、jQueryだけでなくReactを使って書かれています。まだまだ先の話ですが。

コード

これが私のアプリです。

var MyApp = React.createClass({
  //does the http get from the server
  loadBlocksFromServer: function() {
    $.ajax({
      url: this.props.url,
      dataType: 'json',
      mimeType: 'textPlain',
      success: function(data) {
        this.setState({data: data.events});
      }.bind(this)
    });
  },
  getInitialState: function() {
    return {data: []};
  },
  componentWillMount: function() {
    this.loadBlocksFromServer();

  },    
  render: function() {
    return (
        <div>
      <Blocks data={this.state.data}/>
      </div>
    );
  }
});

React.renderComponent(
  <MyApp url="url_here"/>,
  document.getElementById('view')
)

それから、私は Block コンポーネント(に相当します。 Pin 上記のPinterestの例では)。

var Block = React.createClass({
  render: function() {
    return (
        <div class="dp-block" style={{left: this.props.top, top: this.props.left}}>
        <h2>{this.props.title}</h2>
        <p>{this.props.children}</p>
        </div>
    );
  }
});

というリスト/コレクションがあります。 Blocks :

var Blocks = React.createClass({

  render: function() {

    //I've temporarily got code that assigns a random position
    //See inside the function below...

    var blockNodes = this.props.data.map(function (block) {   
      //temporary random position
      var topOffset = Math.random() * $(window).width() + 'px'; 
      var leftOffset = Math.random() * $(window).height() + 'px'; 
      return <Block order={block.id} title={block.summary} left={leftOffset} top={topOffset}>{block.description}</Block>;
    });

    return (
        <div>{blockNodes}</div>
    );
  }
});

質問

jQueryのwindow resizeを追加した方が良いですか?もしそうなら、どこに?

$( window ).resize(function() {
  // re-render the component
});

もっと「React」なやり方はないのでしょうか?

どのように解決するのですか?

React Hooksを使用する。

ウィンドウをリッスンするカスタムHookを定義することができます。 resize イベントには、次のようなものがあります。

import React, { useLayoutEffect, useState } from 'react';

function useWindowSize() {
  const [size, setSize] = useState([0, 0]);
  useLayoutEffect(() => {
    function updateSize() {
      setSize([window.innerWidth, window.innerHeight]);
    }
    window.addEventListener('resize', updateSize);
    updateSize();
    return () => window.removeEventListener('resize', updateSize);
  }, []);
  return size;
}

function ShowWindowDimensions(props) {
  const [width, height] = useWindowSize();
  return <span>Window size: {width} x {height}</span>;
}

この利点は、ロジックがカプセル化されており、ウィンドウサイズを使用したい場所であればどこでもこのHookを使用することができることです。

Reactのクラスを使って。

componentDidMountでリッスンすると、ウィンドウの寸法を表示するだけのこのコンポーネントのようなもの(例えば <span>Window size: 1024 x 768</span> ):

import React from 'react';

class ShowWindowDimensions extends React.Component {
  state = { width: 0, height: 0 };
  render() {
    return <span>Window size: {this.state.width} x {this.state.height}</span>;
  }
  updateDimensions = () => {
    this.setState({ width: window.innerWidth, height: window.innerHeight });
  };
  componentDidMount() {
    window.addEventListener('resize', this.updateDimensions);
  }
  componentWillUnmount() {
    window.removeEventListener('resize', this.updateDimensions);
  }
}