最も実用的な解決策は、react-measureのようなこのためのライブラリを使用することです。
更新:サイズ変更検出用のカスタムフックがあります(私は個人的に試していません):react-resize-aware。カスタムフックなので、よりも使い勝手が良いようですreact-measure
。
import * as React from 'react'
import Measure from 'react-measure'
const MeasuredComp = () => (
<Measure bounds>
{({ measureRef, contentRect: { bounds: { width }} }) => (
<div ref={measureRef}>My width is {width}</div>
)}
</Measure>
)
コンポーネント間でサイズの変更を伝達するために、onResize
コールバックを渡し、受け取った値をどこかに保存できます(最近の状態を共有する標準的な方法はReduxを使用することです)。
import * as React from 'react'
import Measure from 'react-measure'
import { useSelector, useDispatch } from 'react-redux'
import { setMyCompWidth } from './actions'
export default function MyComp(props) {
const width = useSelector(state => state.myCompWidth)
const dispatch = useDispatch()
const handleResize = React.useCallback(
(({ contentRect })) => dispatch(setMyCompWidth(contentRect.bounds.width)),
[dispatch]
)
return (
<Measure bounds onResize={handleResize}>
{({ measureRef }) => (
<div ref={measureRef}>MyComp width is {width}</div>
)}
</Measure>
)
}
あなたが本当にしたい場合はあなた自身を転がす方法:
DOMから値を取得し、ウィンドウサイズ変更イベント(またはで使用されるコンポーネントサイズ変更検出react-measure
)をリッスンするラッパーコンポーネントを作成します。どの小道具をDOMから取得するかを指定し、それらの小道具を子として取得するレンダリング関数を提供します。
レンダリングするものは、DOMプロップを読み取る前にマウントする必要があります。これらの小道具が最初のレンダリング中に使用style={{visibility: 'hidden'}}
できない場合は、JSで計算されたレイアウトを取得する前に、ユーザーが小道具を表示できないようにすることができます。
import React, {Component} from 'react';
import shallowEqual from 'shallowequal';
import throttle from 'lodash.throttle';
type DefaultProps = {
component: ReactClass<any>,
};
type Props = {
domProps?: Array<string>,
computedStyleProps?: Array<string>,
children: (state: State) => ?React.Element<any>,
component: ReactClass<any>,
};
type State = {
remeasure: () => void,
computedStyle?: Object,
[domProp: string]: any,
};
export default class Responsive extends Component<DefaultProps,Props,State> {
static defaultProps = {
component: 'div',
};
remeasure: () => void = throttle(() => {
const {root} = this;
if (!root) return;
const {domProps, computedStyleProps} = this.props;
const nextState: $Shape<State> = {};
if (domProps) domProps.forEach(prop => nextState[prop] = root[prop]);
if (computedStyleProps) {
nextState.computedStyle = {};
const computedStyle = getComputedStyle(root);
computedStyleProps.forEach(prop =>
nextState.computedStyle[prop] = computedStyle[prop]
);
}
this.setState(nextState);
}, 500);
state: State = {remeasure: this.remeasure};
root: ?Object;
componentDidMount() {
this.remeasure();
this.remeasure.flush();
window.addEventListener('resize', this.remeasure);
}
componentWillReceiveProps(nextProps: Props) {
if (!shallowEqual(this.props.domProps, nextProps.domProps) ||
!shallowEqual(this.props.computedStyleProps, nextProps.computedStyleProps)) {
this.remeasure();
}
}
componentWillUnmount() {
this.remeasure.cancel();
window.removeEventListener('resize', this.remeasure);
}
render(): ?React.Element<any> {
const {props: {children, component: Comp}, state} = this;
return <Comp ref={c => this.root = c} children={children(state)}/>;
}
}
これにより、幅の変更への対応は非常に簡単になります。
function renderColumns(numColumns: number): React.Element<any> {
...
}
const responsiveView = (
<Responsive domProps={['offsetWidth']}>
{({offsetWidth}: {offsetWidth: number}): ?React.Element<any> => {
if (!offsetWidth) return null;
const numColumns = Math.max(1, Math.floor(offsetWidth / 200));
return renderColumns(numColumns);
}}
</Responsive>
);
shouldComponentUpdate
SVGをレンダリングするのに最適な場所は確かですか?それはあなたが望むものであるcomponentWillReceiveProps
かcomponentWillUpdate
そうでないかのように聞こえますrender
。