import React from 'react'; import { createElement, Component } from 'react'; import omit from 'omit.js'; import classNames from 'classnames'; function getNumberArray(num) { return num ? num.toString() .split('') .reverse() .map(i => Number(i)) : []; } export interface ScrollNumberProps { prefixCls?: string; className?: string; count?: string | number; component?: string; onAnimated?: Function; style?: React.CSSProperties; title?: string | number; } export default class ScrollNumber extends Component { static defaultProps = { prefixCls: 'ant-scroll-number', count: null, onAnimated() { }, }; lastCount: any; constructor(props) { super(props); this.state = { animateStarted: true, count: props.count, }; } getPositionByNum(num, i) { if (this.state.animateStarted) { return 10 + num; } const currentDigit = getNumberArray(this.state.count)[i]; const lastDigit = getNumberArray(this.lastCount)[i]; // 同方向则在同一侧切换数字 if (this.state.count > this.lastCount) { if (currentDigit >= lastDigit) { return 10 + num; } return 20 + num; } if (currentDigit <= lastDigit) { return 10 + num; } return num; } componentWillReceiveProps(nextProps) { if ('count' in nextProps) { if (this.state.count === nextProps.count) { return; } this.lastCount = this.state.count; // 复原数字初始位置 this.setState({ animateStarted: true, }, () => { // 等待数字位置复原完毕 // 开始设置完整的数字 setTimeout(() => { this.setState({ animateStarted: false, count: nextProps.count, }, () => { const onAnimated = this.props.onAnimated; if (onAnimated) { onAnimated(); } }); }, 5); }); } } renderNumberList(position) { const childrenToReturn: React.ReactElement[] = []; for (let i = 0; i < 30; i++) { const currentClassName = (position === i) ? 'current' : ''; childrenToReturn.push(

{i % 10}

); } return childrenToReturn; } renderCurrentNumber(num, i) { const position = this.getPositionByNum(num, i); const removeTransition = this.state.animateStarted || (getNumberArray(this.lastCount)[i] === undefined); return createElement('span', { className: `${this.props.prefixCls}-only`, style: { transition: removeTransition && 'none', msTransform: `translateY(${-position * 100}%)`, WebkitTransform: `translateY(${-position * 100}%)`, transform: `translateY(${-position * 100}%)`, }, key: i, }, this.renderNumberList(position)); } renderNumberElement() { const state = this.state; if (!state.count || isNaN(state.count)) { return state.count; } return getNumberArray(state.count) .map((num, i) => this.renderCurrentNumber(num, i)).reverse(); } render() { const { prefixCls, className, style, title, component = 'sup' } = this.props; // fix https://fb.me/react-unknown-prop const restProps = omit(this.props, [ 'count', 'onAnimated', 'component', 'prefixCls', ]); const newProps = { ...restProps, className: classNames(prefixCls, className), title: title as string, }; // allow specify the border // mock border-color by box-shadow for compatible with old usage: // if (style && style.borderColor) { newProps.style.boxShadow = `0 0 0 1px ${style.borderColor} inset`; } return createElement( component as any, newProps, this.renderNumberElement(), ); } }