123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- /* eslint-disable max-lines-per-function */
- /* eslint-disable react/no-find-dom-node */
- import React, { CSSProperties } from 'react';
- import ReactDOM from 'react-dom';
- import PropTypes from 'prop-types';
- import cls from 'classnames';
- import { cssClasses } from '@douyinfe/semi-foundation/slider/constants';
- import BaseComponent from '../_base/baseComponent';
- import SliderFoundation, { SliderAdapter, SliderProps as BasicSliceProps, SliderState, tipFormatterBasicType } from '@douyinfe/semi-foundation/slider/foundation';
- import Tooltip from '../tooltip/index';
- import '@douyinfe/semi-foundation/slider/slider.scss';
- import { isEqual, noop } from 'lodash';
- const prefixCls = cssClasses.PREFIX;
- export interface SliderProps extends BasicSliceProps {
- style?: CSSProperties;
- railStyle?: CSSProperties;
- }
- export {
- SliderState
- };
- function domIsInRenderTree(e: HTMLElement) {
- if (!e) {
- return false;
- }
- return Boolean(e.offsetWidth || e.offsetHeight || e.getClientRects().length);
- }
- export default class Slider extends BaseComponent<SliderProps, SliderState> {
- static propTypes = {
- // allowClear: PropTypes.bool,
- defaultValue: PropTypes.oneOfType([PropTypes.number, PropTypes.array]),
- disabled: PropTypes.bool,
- included: PropTypes.bool, // Whether to juxtapose. Allow dragging
- marks: PropTypes.object, // Scale
- max: PropTypes.number,
- min: PropTypes.number,
- range: PropTypes.bool, // Whether both sides
- step: PropTypes.number,
- tipFormatter: PropTypes.func,
- value: PropTypes.oneOfType([PropTypes.number, PropTypes.array]),
- vertical: PropTypes.bool,
- onAfterChange: PropTypes.func, // OnmouseUp and triggered when clicked
- onChange: PropTypes.func,
- tooltipVisible: PropTypes.bool,
- style: PropTypes.object,
- className: PropTypes.string,
- showBoundary: PropTypes.bool,
- railStyle: PropTypes.object,
- verticalReverse: PropTypes.bool,
- } as any;
- static defaultProps: Partial<SliderProps> = {
- // allowClear: false,
- disabled: false,
- included: true, // No is juxtaposition. Allow dragging
- max: 100,
- min: 0,
- range: false, // Whether both sides
- step: 1,
- tipFormatter: (value: tipFormatterBasicType | tipFormatterBasicType[]) => value,
- vertical: false,
- showBoundary: false,
- onAfterChange: (value: number | number[]) => {
- // console.log(value);
- },
- onChange: (value: number | number[]) => {
- // console.log(value);
- },
- verticalReverse: false
- };
- private sliderEl: React.RefObject<HTMLDivElement>;
- private minHanleEl: React.RefObject<HTMLDivElement>;
- private maxHanleEl: React.RefObject<HTMLDivElement>;
- private dragging: boolean[];
- private eventListenerSet: Set<() => void>;
- private chooseMovePos: 'min' | 'max';
- foundation: SliderFoundation;
- constructor(props: SliderProps) {
- super(props);
- let { value } = this.props;
- if (!value) {
- value = this.props.defaultValue;
- }
- this.state = {
- // eslint-disable-next-line no-nested-ternary
- currentValue: value ? value : this.props.range ? [0, 0] : 0,
- min: this.props.min || 0,
- max: this.props.max || 0,
- focusPos: '',
- onChange: this.props.onChange,
- disabled: this.props.disabled || false,
- chooseMovePos: '',
- isDrag: false,
- clickValue: 0,
- showBoundary: false,
- isInRenderTree: true
- };
- this.sliderEl = React.createRef();
- this.minHanleEl = React.createRef();
- this.maxHanleEl = React.createRef();
- this.dragging = [false, false];
- // this.chooseMovePos = 'min';
- // this.isDrag = false;
- this.foundation = new SliderFoundation(this.adapter);
- this.eventListenerSet = new Set();
- }
- get adapter(): SliderAdapter {
- return {
- ...super.adapter,
- getSliderLengths: () => {
- if (this.sliderEl && this.sliderEl.current) {
- const rect = this.sliderEl.current.getBoundingClientRect();
- const offset = {
- x: this.sliderEl.current.offsetLeft,
- y: this.sliderEl.current.offsetTop,
- };
- return {
- sliderX: offset.x,
- sliderY: offset.y,
- sliderWidth: rect.width,
- sliderHeight: rect.height,
- };
- }
- return {
- sliderX: 0,
- sliderY: 0,
- sliderWidth: 0,
- sliderHeight: 0,
- };
- },
- getParentRect: (): DOMRect | undefined => {
- const parentObj = this.sliderEl && this.sliderEl.current && this.sliderEl.current.offsetParent;
- if (!parentObj) {
- return undefined;
- }
- return parentObj.getBoundingClientRect();
- },
- getScrollParentVal: () => {
- const scrollParent = this.foundation.getScrollParent(this.sliderEl.current);
- return {
- scrollTop: scrollParent.scrollTop,
- scrollLeft: scrollParent.scrollLeft,
- };
- },
- isEventFromHandle: (e: React.MouseEvent) => {
- const handles = [this.minHanleEl, this.maxHanleEl];
- let flag = false;
- handles.forEach(handle => {
- if (!handle) {
- return;
- }
- const handleInstance = handle && handle.current;
- const handleDom = ReactDOM.findDOMNode(handleInstance);
- if (handleDom && handleDom.contains(e.target as Node)) {
- flag = true;
- }
- });
- return flag;
- },
- getOverallVars: () => ({
- dragging: this.dragging,
- chooseMovePos: this.chooseMovePos,
- }),
- updateDisabled: (disabled: boolean) => {
- this.setState({ disabled });
- },
- transNewPropsToState<K extends keyof SliderState>(stateObj: Pick<SliderState, K>, callback = noop) {
- this.setState(stateObj, callback);
- },
- notifyChange: (cbValue: number | number[]) => this.props.onChange(cbValue),
- setDragging: (value: boolean[]) => {
- this.dragging = value;
- },
- updateCurrentValue: (value: number | number[]) => {
- const { currentValue } = this.state;
- if (value !== currentValue) {
- this.setState({ currentValue: value });
- }
- },
- setOverallVars: (key: string, value: any) => {
- this[key] = value;
- },
- getMinHandleEl: () => this.minHanleEl,
- getMaxHandleEl: () => this.maxHanleEl,
- onHandleDown: (e: React.MouseEvent) => {
- e.stopPropagation();
- e.preventDefault();
- this._addEventListener(document.body, 'mousemove', this.foundation.onHandleMove, false);
- this._addEventListener(document.body, 'mouseup', this.foundation.onHandleUp, false);
- this._addEventListener(document.body, 'touchmove', this.foundation.onHandleTouchMove, false);
- },
- onHandleMove: (mousePos: number, isMin: boolean, stateChangeCallback = noop, clickTrack = false): boolean | void => {
- const sliderDOMIsInRenderTree = this.foundation.checkAndUpdateIsInRenderTreeState();
- if (!sliderDOMIsInRenderTree) {
- return;
- }
- const { value, onChange } = this.props;
- const moveValue = this.foundation.transPosToValue(mousePos, isMin);
- if (moveValue === false) {
- return;
- }
- const outPutValue = this.foundation.outPutValue(moveValue);
- const { currentValue } = this.state;
- if (!isEqual(this.foundation.outPutValue(currentValue), outPutValue)) {
- onChange(outPutValue);
- if (!clickTrack && this.foundation.valueFormatIsCorrect(value)) {
- // still require afterChangeCallback when click on the track directly, need skip here
- return false;
- }
- this.setState({
- currentValue: outPutValue,
- }, stateChangeCallback);
- }
- },
- setEventDefault: (e: React.MouseEvent) => {
- e.stopPropagation();
- e.preventDefault();
- },
- setStateVal: <K extends keyof SliderState>(name: K, val: SliderState[K]) => {
- this.setState({ [name]: val } as Pick<SliderState, K>);
- },
- checkAndUpdateIsInRenderTreeState: () => {
- const sliderDOMIsInRenderTree = domIsInRenderTree(this.sliderEl.current);
- if (sliderDOMIsInRenderTree !== this.state.isInRenderTree) {
- this.setState({ isInRenderTree: sliderDOMIsInRenderTree });
- }
- return sliderDOMIsInRenderTree;
- },
- onHandleEnter: (pos: SliderState['focusPos']) => {
- this.setState({ focusPos: pos });
- },
- onHandleLeave: () => {
- this.setState({ focusPos: '' });
- },
- onHandleUpBefore: (e: React.MouseEvent) => {
- e.stopPropagation();
- e.preventDefault();
- document.body.removeEventListener('mousemove', this.foundation.onHandleMove, false);
- document.body.removeEventListener('mouseup', this.foundation.onHandleUp, false);
- },
- onHandleUpAfter: () => {
- const { currentValue } = this.state;
- const value = this.foundation.outPutValue(currentValue);
- this.props.onAfterChange(value);
- },
- unSubscribeEventListener: () => {
- Array.from(this.eventListenerSet).forEach(clear => clear());
- },
- };
- }
- componentDidMount() {
- this.foundation.init();
- }
- componentDidUpdate(prevProps: SliderProps, prevState: SliderState) {
- const hasPropValueChange = !isEqual(this.props.value, prevProps.value);
- const hasPropDisabledChange = this.props.disabled !== prevProps.disabled;
- if (hasPropDisabledChange) {
- this.foundation.handleDisabledChange(this.props.disabled);
- }
- if (hasPropValueChange) {
- const nextValue = this.props.value;
- const prevValue = this.state.currentValue;
- this.foundation.handleValueChange(prevValue, nextValue);
- }
- }
- componentWillUnmount() {
- this.foundation.destroy();
- }
- renderHandle = () => {
- const { vertical, range, tooltipVisible, tipFormatter, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-valuetext': ariaValueText, getAriaValueText, disabled } = this.props;
- const { chooseMovePos, isDrag, isInRenderTree } = this.state;
- const stylePos = vertical ? 'top' : 'left';
- const percentInfo = this.foundation.getMinAndMaxPercent(this.state.currentValue);
- const minPercent = percentInfo.min;
- const maxPercent = percentInfo.max;
- const { tipVisible, tipChildren } = this.foundation.computeHandleVisibleVal(
- tooltipVisible && isInRenderTree,
- tipFormatter,
- range
- );
- const transform = { top: 'translateY(-50%)', left: 'translateX(-50%)' };
- const minClass = cls(cssClasses.HANDLE, {
- [`${cssClasses.HANDLE}-clicked`]: chooseMovePos === 'min' && isDrag,
- });
- const maxClass = cls(cssClasses.HANDLE, {
- [`${cssClasses.HANDLE}-clicked`]: chooseMovePos === 'max' && isDrag,
- });
- const {min, max, currentValue} = this.state;
- const commonAria = {
- 'aria-label': ariaLabel,
- 'aria-labelledby': ariaLabelledby,
- 'aria-disabled': disabled
- };
- vertical && Object.assign(commonAria, {'aria-orientation': 'vertical'});
- const handleContents = !range ? (
- <Tooltip
- content={tipChildren.min}
- position="top"
- trigger="custom"
- rePosKey={minPercent}
- visible={isInRenderTree && tipVisible.min}
- className={`${cssClasses.HANDLE}-tooltip`}
- >
- <span
- onMouseOver={this.foundation.checkAndUpdateIsInRenderTreeState}
- ref={this.minHanleEl}
- className={minClass}
- style={{
- [stylePos]: `${minPercent * 100}%`,
- zIndex: chooseMovePos === 'min' && isDrag ? 2 : 1,
- transform: transform[stylePos],
- }}
- onMouseDown={e => {
- this.foundation.onHandleDown(e, 'min');
- }}
- onMouseEnter={() => {
- this.foundation.onHandleEnter('min');
- }}
- onTouchStart={e => {
- this.foundation.onHandleTouchStart(e, 'min');
- }}
- onMouseLeave={() => {
- this.foundation.onHandleLeave();
- }}
- onMouseUp={e => {
- this.foundation.onHandleUp(e);
- }}
- onKeyUp={e => {
- this.foundation.onHandleUp(e);
- }}
- onTouchEnd={e => {
- this.foundation.onHandleUp(e);
- }}
- onFocus={e => this.foundation.onFocus(e, 'min')}
- role="slider"
- tabIndex={0}
- {...commonAria}
- aria-valuenow={currentValue as number}
- aria-valuemax={max}
- aria-valuemin={min}
- aria-valuetext={getAriaValueText ? getAriaValueText(currentValue as number) : ariaValueText}
- />
- </Tooltip>
- ) : (
- <React.Fragment>
- <Tooltip
- content={tipChildren.min}
- position="top"
- trigger="custom"
- rePosKey={minPercent}
- visible={isInRenderTree && tipVisible.min}
- className={`${cssClasses.HANDLE}-tooltip`}
- >
- <span
- ref={this.minHanleEl}
- className={minClass}
- style={{
- [stylePos]: `${minPercent * 100}%`,
- zIndex: chooseMovePos === 'min' ? 2 : 1,
- transform: transform[stylePos],
- }}
- onMouseDown={e => {
- this.foundation.onHandleDown(e, 'min');
- }}
- onMouseEnter={() => {
- this.foundation.onHandleEnter('min');
- }}
- onTouchStart={e => {
- this.foundation.onHandleTouchStart(e, 'min');
- }}
- onMouseLeave={() => {
- this.foundation.onHandleLeave();
- }}
- onMouseUp={e => {
- this.foundation.onHandleUp(e);
- }}
- onKeyUp={e => {
- this.foundation.onHandleUp(e);
- }}
- onTouchEnd={e => {
- this.foundation.onHandleUp(e);
- }}
- onFocus={e => this.foundation.onFocus(e, 'min')}
- role="slider"
- tabIndex={0}
- {...commonAria}
- aria-valuenow={currentValue[0]}
- aria-valuetext={getAriaValueText ? getAriaValueText(currentValue[0]) : ariaValueText}
- aria-valuemax={currentValue[1]}
- aria-valuemin={min}
- />
- </Tooltip>
- <Tooltip
- content={tipChildren.max}
- position="top"
- trigger="custom"
- rePosKey={maxPercent}
- visible={isInRenderTree && tipVisible.max}
- className={`${cssClasses.HANDLE}-tooltip`}
- >
- <span
- ref={this.maxHanleEl}
- className={maxClass}
- style={{
- [stylePos]: `${maxPercent * 100}%`,
- zIndex: chooseMovePos === 'max' ? 2 : 1,
- transform: transform[stylePos],
- }}
- onMouseDown={e => {
- this.foundation.onHandleDown(e, 'max');
- }}
- onMouseEnter={() => {
- this.foundation.onHandleEnter('max');
- }}
- onMouseLeave={() => {
- this.foundation.onHandleLeave();
- }}
- onMouseUp={e => {
- this.foundation.onHandleUp(e);
- }}
- onKeyUp={e => {
- this.foundation.onHandleUp(e);
- }}
- onTouchStart={e => {
- this.foundation.onHandleTouchStart(e, 'max');
- }}
- onTouchEnd={e => {
- this.foundation.onHandleUp(e);
- }}
- onFocus={e => this.foundation.onFocus(e, 'min')}
- role="slider"
- tabIndex={0}
- {...commonAria}
- aria-valuenow={currentValue[1]}
- aria-valuetext={getAriaValueText ? getAriaValueText(currentValue[1]) : ariaValueText}
- aria-valuemax={max}
- aria-valuemin={currentValue[0]}
- />
- </Tooltip>
- </React.Fragment>
- );
- return handleContents;
- };
- renderTrack = () => {
- const { range, included, vertical } = this.props;
- const percentInfo = this.foundation.getMinAndMaxPercent(this.state.currentValue);
- const minPercent = percentInfo.min;
- const maxPercent = percentInfo.max;
- let trackStyle: CSSProperties = !vertical ?
- {
- width: range ? `${(maxPercent - minPercent) * 100}%` : `${minPercent * 100}%`,
- left: range ? `${minPercent * 100}%` : 0,
- } :
- {
- height: range ? `${(maxPercent - minPercent) * 100}%` : `${minPercent * 100}%`,
- top: range ? `${minPercent * 100}%` : 0,
- };
- trackStyle = included ? trackStyle : {};
- return (// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
- <div className={cssClasses.TRACK} style={trackStyle} onClick={e => this.foundation.handleWrapClick(e)}>
- {/* {this.renderTrack} */}
- </div>
- );
- };
- renderStepDot = () => {
- const { min, max, vertical, marks } = this.props;
- const stylePos = vertical ? 'top' : 'left';
- const labelContent =
- marks && Object.keys(marks).length > 0 ? (
- <div className={cssClasses.DOTS}>
- {Object.keys(marks).map(mark => {
- const activeResult = this.foundation.isMarkActive(Number(mark));
- const markClass = cls(`${prefixCls}-dot`, {
- [`${prefixCls}-dot-active`]: this.foundation.isMarkActive(Number(mark)) === 'active',
- });
- const markPercent = (Number(mark) - min) / (max - min);
- return activeResult ? (
- <span
- key={mark}
- onClick={e => this.foundation.handleWrapClick(e)}
- className={markClass}
- style={{ [stylePos]: `calc(${markPercent * 100}% - 2px)` }}
- />
- ) : null;
- })}
- </div>
- ) : null;
- return labelContent;
- };
- renderLabel = () => {
- const { min, max, vertical, marks, verticalReverse } = this.props;
- const stylePos = vertical ? 'top' : 'left';
- const labelContent =
- marks && Object.keys(marks).length > 0 ? (
- <div className={cssClasses.MARKS + ((vertical && verticalReverse) ? '-reverse' : '')}>
- {Object.keys(marks).map(mark => {
- const activeResult = this.foundation.isMarkActive(Number(mark));
- const markPercent = (Number(mark) - min) / (max - min);
- return activeResult ? (
- <span
- key={mark}
- className={cls(`${prefixCls}-mark${(vertical && verticalReverse) ? '-reverse' : ''}`)}
- style={{ [stylePos]: `${markPercent * 100}%` }}
- >
- {marks[mark]}
- </span>
- ) : null;
- })}
- </div>
- ) : null;
- return labelContent;
- };
- render() {
- const wrapperClass = cls(
- `${prefixCls}-wrapper`,
- {
- [`${prefixCls}-disabled`]: this.state.disabled,
- [`${cssClasses.VERTICAL}-wrapper`]: this.props.vertical,
- [`${prefixCls}-reverse`]: this.props.vertical && this.props.verticalReverse
- },
- this.props.className
- );
- const boundaryClass = cls(`${prefixCls}-boundary`, {
- [`${prefixCls}-boundary-show`]: this.props.showBoundary && this.state.showBoundary,
- });
- const sliderCls = cls({
- [`${prefixCls}`]: !this.props.vertical,
- [cssClasses.VERTICAL]: this.props.vertical,
- });
- const slider = (
- <div
- className={wrapperClass}
- style={this.props.style}
- ref={this.sliderEl}
- onMouseEnter={() => this.foundation.handleWrapperEnter()}
- onMouseLeave={() => this.foundation.handleWrapperLeave()}
- >
- {// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
- <div
- className={`${prefixCls}-rail`}
- onClick={e => this.foundation.handleWrapClick(e)}
- style={this.props.railStyle}
- />
- }
- {this.renderTrack()}
- {this.renderStepDot()}
- <div>{this.renderHandle()}</div>
- {this.renderLabel()}
- <div className={boundaryClass}>
- <span className={`${prefixCls}-boundary-min`}>{this.state.min}</span>
- <span className={`${prefixCls}-boundary-max`}>{this.state.max}</span>
- </div>
- </div>
- );
- if (!this.props.vertical) {
- return <div className={sliderCls}>{slider}</div>;
- }
- return slider;
- }
- private _addEventListener<T extends keyof HTMLElementEventMap>(target: HTMLElement, eventName: T, callback: (e: HTMLElementEventMap[T]) => void, ...rests: any) {
- if (target.addEventListener) {
- target.addEventListener(eventName, callback, ...rests);
- const clearSelf = () => {
- target?.removeEventListener(eventName, callback);
- Promise.resolve().then(() => {
- this.eventListenerSet.delete(clearSelf);
- });
- };
- this.eventListenerSet.add(clearSelf);
- return clearSelf;
- } else {
- return noop;
- }
- }
- }
|