我有一个反应组件,它包装了一个使用three.js和DOM呈现WebGL的类,并连接了mobx存储值,它随着类生命周期方法而变化。
传入的 mobx 存储仅在生命周期函数(componentDidMount, componentDidUpdate, ..)中的组件渲染函数之外使用。注意到当 store 改变时,组件不会触发重新渲染。但是我在渲染函数中进行了无用的读取,例如在下面的示例中,将triggerRerenderListenerProp={this.props.store.debugSettings.showStats}
prop 传递给 div,组件仅在更改时才变为活动状态store.debugSettings.showStats
。
有没有办法让组件在 render 函数中使用 store 本身来监听 store 更改?
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {observer} from 'mobx-react';
import MapPreview from 'classes/MapPreview';
import style from './Preview.css';
class Preview extends Component {
static propTypes = {
store: PropTypes.object.isRequired,
imageUrl: PropTypes.string.isRequired
};
constructor (props) {
super(props);
this.containerEl = null;
}
componentDidMount () {
const options = {
debugSettings: this.props.store.debugSettings,
previewSettings: this.props.store.previewSettings
};
this.preview = new MapPreview(this.containerEl, options);
this.preview.setImage(imageUrl);
}
componentDidUpdate () {
this.preview.updateOptions({
debugSettings: this.props.store.debugSettings,
previewSettings: this.props.store.previewSettings
});
}
render () {
return (
<div
className={style.normal}
ref={(el) => { this.containerEl = el; }}
triggerRerenderListenerProp={this.props.store.debugSettings.showStats}
/>
);
}
}
export default observer(Preview);