import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Rheostat from 'rheostat'; import { storiesOf } from '@storybook/react'; import { connectRange } from 'react-instantsearch-dom'; import { WrapWithHits } from './util'; const stories = storiesOf('Integration With Other Libraries', module); stories.add('Airbnb Rheostat', () => (

⚠️ This example only works with the version 2.x of Rheostat ️️⚠️

)); class Range extends Component { static propTypes = { min: PropTypes.number, max: PropTypes.number, currentRefinement: PropTypes.object, refine: PropTypes.func.isRequired, canRefine: PropTypes.bool.isRequired, header: PropTypes.node, footer: PropTypes.node, }; state = { currentValues: { min: this.props.min, max: this.props.max } }; componentDidUpdate(prevProps) { if ( this.props.canRefine && (prevProps.currentRefinement.min !== this.props.currentRefinement.min || prevProps.currentRefinement.max !== this.props.currentRefinement.max) ) { this.setState({ currentValues: { min: this.props.currentRefinement.min, max: this.props.currentRefinement.max, }, }); } } onValuesUpdated = (sliderState) => { this.setState({ currentValues: { min: sliderState.values[0], max: sliderState.values[1] }, }); }; onChange = (sliderState) => { if ( this.props.currentRefinement.min !== sliderState.values[0] || this.props.currentRefinement.max !== sliderState.values[1] ) { this.props.refine({ min: sliderState.values[0], max: sliderState.values[1], }); } }; render() { const { min, max, currentRefinement } = this.props; const { currentValues } = this.state; return min !== max ? (
{currentValues.min}
{currentValues.max}
) : null; } } const ConnectedRange = connectRange(Range); export default ConnectedRange;