La soluzione più pratica è usare una libreria per questo tipo di misura-reazione .
Aggiornamento : ora c'è un hook personalizzato per il rilevamento del ridimensionamento (che non ho provato personalmente): react-resize-aware . Essendo un gancio personalizzato, sembra più comodo da usare rispetto a 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>
)
Per comunicare le modifiche alle dimensioni tra i componenti, puoi passare una onResize
richiamata e memorizzare i valori che riceve da qualche parte (il modo standard di condividere lo stato in questi giorni è usare 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>
)
}
Come rollare il tuo se preferisci davvero:
Crea un componente wrapper che gestisce l'acquisizione di valori dal DOM e l'ascolto degli eventi di ridimensionamento della finestra (o il rilevamento del ridimensionamento del componente utilizzato da react-measure
). Gli dici quali oggetti di scena ottenere dal DOM e fornisci una funzione di rendering che li prenda da bambino.
Quello che renderizzi deve essere montato prima che gli oggetti di scena DOM possano essere letti; quando questi oggetti di scena non sono disponibili durante il rendering iniziale, potresti volerlo usare in style={{visibility: 'hidden'}}
modo che l'utente non possa vederlo prima che ottenga un layout calcolato da 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)}/>;
}
}
Con questo, rispondere ai cambiamenti di larghezza è molto semplice:
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
sia il posto migliore per rendere SVG? Sembra che quello che vuoi ècomponentWillReceiveProps
ocomponentWillUpdate
se norender
.