import React from 'react'; import RcSlider from 'rc-slider/lib/Slider'; import RcRange from 'rc-slider/lib/Range'; import RcHandle from 'rc-slider/lib/Handle'; import Tooltip from '../tooltip'; export interface SliderMarks { [key: number]: React.ReactNode | { style: React.CSSProperties, label: React.ReactNode, }; } export type SliderValue = number | [number, number]; export interface SliderProps { prefixCls?: string; tooltipPrefixCls?: string; range?: boolean; min?: number; max?: number; step?: number | void; marks?: SliderMarks; dots?: boolean; value?: SliderValue; defaultValue?: SliderValue; included?: boolean; disabled?: boolean; vertical?: boolean; onChange?: (value: SliderValue) => void; onAfterChange?: (value: SliderValue) => void; tipFormatter?: void | ((value: number) => React.ReactNode); } export default class Slider extends React.Component { static defaultProps = { prefixCls: 'ant-slider', tooltipPrefixCls: 'ant-tooltip', tipFormatter(value) { return value.toString(); }, }; constructor(props) { super(props); this.state = { visibles: {}, }; } toggleTooltipVisible = (index, visible) => { this.setState(({ visibles }) => ({ visibles: { ...visibles, [index]: visible, }, })); } handleWithTooltip = ({ value, dragging, index, ...restProps }) => { const { tooltipPrefixCls, tipFormatter } = this.props; const { visibles } = this.state; return ( this.toggleTooltipVisible(index, true)} onMouseLeave={() => this.toggleTooltipVisible(index, false)} /> ); } render() { const { range, ...restProps } = this.props; if (range) { return ; } return ; } }