ブラウザウィンドウのサイズが変更されたときにReactでビューを再レンダリングするにはどうすればよいですか?
バックグラウンド
ページ上に個別にレイアウトしたいブロックがいくつかありますが、ブラウザーウィンドウが変更されたときにそれらも更新したいです。最終的な結果は、Ben Hollandの 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の例のa に相当)。
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(function() {
// re-render the component
});
これを行うためのより「反応する」方法はありますか?
this.updateDimensions
渡されるのaddEventListener
はthis
、呼び出されたときに値を持たない単なる関数参照です。匿名関数、または.bind()呼び出しを使用してaddを追加するthis
必要がありますか、それとも誤解していますか?