mastodon/app/javascript/flavours/glitch/containers/intersection_observer_artic...

18 lines
567 B
JavaScript
Raw Normal View History

2017-09-13 10:24:33 +02:00
import { connect } from 'react-redux';
2017-12-04 08:26:40 +01:00
import IntersectionObserverArticle from 'flavours/glitch/components/intersection_observer_article';
import { setHeight } from 'flavours/glitch/actions/height_cache';
2017-09-13 10:24:33 +02: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);