2019-07-02 03:10:25 -04:00
|
|
|
import { setHeight } from '../actions/height_cache';
|
2020-01-29 16:53:33 -05:00
|
|
|
import IntersectionObserverArticle from '../components/intersection_observer_article';
|
2019-07-02 03:10:25 -04:00
|
|
|
|
|
|
|
const makeMapStateToProps = (state, props) => ({
|
|
|
|
cachedHeight: state.getIn(['height_cache', props.saveHeightKey, props.id]),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
|
|
|
|
onHeightChange (key, id, height) {
|
|
|
|
dispatch(setHeight(key, id, height));
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(IntersectionObserverArticle);
|