ant-design/components/badge/ScrollNumber.tsx

154 lines
4.1 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
2016-07-14 13:29:50 +08:00
import { createElement, Component } from 'react';
import omit from 'omit.js';
import classNames from 'classnames';
2015-11-23 22:58:11 +08:00
2017-11-22 11:25:05 +08:00
function getNumberArray(num: string | number | undefined) {
2015-11-23 22:58:11 +08:00
return num ?
num.toString()
.split('')
.reverse()
.map(i => Number(i)) : [];
2015-11-23 22:58:11 +08:00
}
export interface ScrollNumberProps {
prefixCls?: string;
className?: string;
count?: string | number;
component?: string;
onAnimated?: Function;
2016-12-19 15:19:15 +08:00
style?: React.CSSProperties;
2017-08-31 10:55:25 +08:00
title?: string | number;
}
2017-11-22 11:25:05 +08:00
export interface ScrollNumberState {
animateStarted?: boolean;
count?: string | number;
}
export default class ScrollNumber extends Component<ScrollNumberProps, ScrollNumberState> {
static defaultProps = {
prefixCls: 'ant-scroll-number',
count: null,
2016-06-22 13:18:43 +08:00
onAnimated() {
},
2016-07-13 11:14:24 +08:00
};
2016-07-14 13:29:50 +08:00
lastCount: any;
2017-11-22 11:25:05 +08:00
constructor(props: ScrollNumberProps) {
2015-11-23 22:58:11 +08:00
super(props);
this.state = {
2015-11-24 15:29:57 +08:00
animateStarted: true,
2016-05-11 09:32:33 +08:00
count: props.count,
2015-11-23 22:58:11 +08:00
};
}
2017-11-22 11:25:05 +08:00
getPositionByNum(num: number, i: number) {
2015-11-24 15:29:57 +08:00
if (this.state.animateStarted) {
2015-11-23 22:58:11 +08:00
return 10 + num;
}
2015-11-24 15:29:57 +08:00
const currentDigit = getNumberArray(this.state.count)[i];
2015-11-23 22:58:11 +08:00
const lastDigit = getNumberArray(this.lastCount)[i];
// 同方向则在同一侧切换数字
2017-11-22 11:25:05 +08:00
if (this.state.count! > this.lastCount) {
2015-11-23 22:58:11 +08:00
if (currentDigit >= lastDigit) {
return 10 + num;
}
return 20 + num;
}
if (currentDigit <= lastDigit) {
return 10 + num;
2015-11-23 22:58:11 +08:00
}
return num;
2015-11-23 22:58:11 +08:00
}
2017-11-22 11:25:05 +08:00
componentWillReceiveProps(nextProps: ScrollNumberProps) {
if ('count' in nextProps) {
2016-02-02 18:23:00 +08:00
if (this.state.count === nextProps.count) {
return;
}
2015-11-24 15:29:57 +08:00
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();
}
2015-11-24 15:29:57 +08:00
});
}, 5);
});
2015-11-23 22:58:11 +08:00
}
}
2017-11-22 11:25:05 +08:00
renderNumberList(position: number) {
2016-10-24 12:04:26 +08:00
const childrenToReturn: React.ReactElement<any>[] = [];
2015-11-23 22:58:11 +08:00
for (let i = 0; i < 30; i++) {
2016-10-24 12:04:26 +08:00
const currentClassName = (position === i) ? 'current' : '';
2016-10-24 11:48:25 +08:00
childrenToReturn.push(<p key={i.toString()} className={currentClassName}>{i % 10}</p>);
2015-11-23 22:58:11 +08:00
}
return childrenToReturn;
}
2017-11-22 11:25:05 +08:00
renderCurrentNumber(num: number, i: number) {
2015-11-23 22:58:11 +08:00
const position = this.getPositionByNum(num, i);
2015-11-24 15:29:57 +08:00
const removeTransition = this.state.animateStarted ||
(getNumberArray(this.lastCount)[i] === undefined);
2015-11-23 22:58:11 +08:00
return createElement('span', {
className: `${this.props.prefixCls}-only`,
style: {
2015-11-24 15:29:57 +08:00
transition: removeTransition && 'none',
msTransform: `translateY(${-position * 100}%)`,
WebkitTransform: `translateY(${-position * 100}%)`,
transform: `translateY(${-position * 100}%)`,
2015-11-23 22:58:11 +08:00
},
key: i,
}, this.renderNumberList(position));
2015-11-23 22:58:11 +08:00
}
renderNumberElement() {
2015-11-24 15:29:57 +08:00
const state = this.state;
2017-11-22 11:25:05 +08:00
if (!state.count || isNaN(state.count as number)) {
2015-11-24 15:29:57 +08:00
return state.count;
2015-11-23 22:58:11 +08:00
}
2015-11-24 15:29:57 +08:00
return getNumberArray(state.count)
.map((num, i) => this.renderCurrentNumber(num, i)).reverse();
2015-11-23 22:58:11 +08:00
}
render() {
2017-08-31 10:55:25 +08:00
const { prefixCls, className, style, title, component = 'sup' } = this.props;
2016-07-08 10:14:45 +08:00
// fix https://fb.me/react-unknown-prop
const restProps = omit(this.props, [
2016-07-08 10:14:45 +08:00
'count',
'onAnimated',
2016-07-08 16:34:02 +08:00
'component',
'prefixCls',
]);
const newProps = {
...restProps,
2017-08-31 10:55:25 +08:00
className: classNames(prefixCls, className),
title: title as string,
};
// allow specify the border
// mock border-color by box-shadow for compatible with old usage:
// <Badge count={4} style={{ backgroundColor: '#fff', color: '#999', borderColor: '#d9d9d9' }} />
if (style && style.borderColor) {
newProps.style.boxShadow = `0 0 0 1px ${style.borderColor} inset`;
}
return createElement(
component as any,
newProps,
this.renderNumberElement(),
);
2015-11-23 22:58:11 +08:00
}
}