ant-design/components/badge/ScrollNumber.tsx

211 lines
5.5 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import omit from 'omit.js';
import classNames from 'classnames';
2019-08-05 18:38:10 +08:00
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
2015-11-23 22:58:11 +08:00
2018-07-23 23:16:19 +08:00
function getNumberArray(num: string | number | undefined | null) {
2018-12-07 20:02:01 +08:00
return num
? num
.toString()
.split('')
.reverse()
.map(i => {
const current = Number(i);
return isNaN(current) ? i : current;
})
2018-12-07 20:02:01 +08:00
: [];
2015-11-23 22:58:11 +08:00
}
2019-08-05 18:38:10 +08:00
function renderNumberList(position: number) {
const childrenToReturn: React.ReactElement<any>[] = [];
for (let i = 0; i < 30; i++) {
const currentClassName = position === i ? 'current' : '';
childrenToReturn.push(
<p key={i.toString()} className={currentClassName}>
{i % 10}
</p>,
);
}
return childrenToReturn;
}
export interface ScrollNumberProps {
prefixCls?: string;
className?: string;
2018-07-23 23:16:19 +08:00
count?: string | number | null;
displayComponent?: React.ReactElement<HTMLElement>;
component?: string;
onAnimated?: Function;
2016-12-19 15:19:15 +08:00
style?: React.CSSProperties;
2018-07-23 23:16:19 +08:00
title?: string | number | null;
}
2017-11-22 11:25:05 +08:00
export interface ScrollNumberState {
animateStarted?: boolean;
2018-07-23 23:16:19 +08:00
count?: string | number | null;
2017-11-22 11:25:05 +08:00
}
2019-08-15 09:47:04 +08:00
class ScrollNumber extends React.Component<ScrollNumberProps, ScrollNumberState> {
static defaultProps = {
count: null,
2018-12-07 20:02:01 +08:00
onAnimated() {},
2016-07-13 11:14:24 +08:00
};
static getDerivedStateFromProps(nextProps: ScrollNumberProps, nextState: ScrollNumberState) {
if ('count' in nextProps) {
if (nextState.count === nextProps.count) {
return null;
}
2019-03-11 16:54:29 +08:00
return {
animateStarted: true,
};
}
return null;
}
2016-07-14 13:29:50 +08:00
2019-03-08 15:34:29 +08:00
lastCount?: string | number | null;
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
};
}
2019-08-05 18:38:10 +08:00
componentDidUpdate(_: any, prevState: ScrollNumberState) {
this.lastCount = prevState.count;
const { animateStarted } = this.state;
if (animateStarted) {
// eslint-disable-next-line react/no-did-update-set-state
2019-08-05 18:38:10 +08:00
this.setState(
(__, props) => ({
animateStarted: false,
count: props.count,
}),
this.onAnimated,
);
}
}
2017-11-22 11:25:05 +08:00
getPositionByNum(num: number, i: number) {
const { count } = this.state;
const currentCount = Math.abs(Number(count));
const lastCount = Math.abs(Number(this.lastCount));
const currentDigit = Math.abs(getNumberArray(this.state.count)[i] as number);
const lastDigit = Math.abs(getNumberArray(this.lastCount)[i] as 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-23 22:58:11 +08:00
// 同方向则在同一侧切换数字
if (currentCount > 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
}
onAnimated = () => {
const { onAnimated } = this.props;
if (onAnimated) {
onAnimated();
}
2019-06-19 19:09:08 +08:00
};
renderCurrentNumber(prefixCls: string, num: number | string, i: number) {
if (typeof num === 'number') {
const position = this.getPositionByNum(num, i);
const removeTransition =
this.state.animateStarted || getNumberArray(this.lastCount)[i] === undefined;
2019-08-15 09:47:04 +08:00
return React.createElement(
'span',
{
className: `${prefixCls}-only`,
style: {
transition: removeTransition ? 'none' : undefined,
msTransform: `translateY(${-position * 100}%)`,
WebkitTransform: `translateY(${-position * 100}%)`,
transform: `translateY(${-position * 100}%)`,
},
key: i,
2018-12-07 20:02:01 +08:00
},
2019-08-05 18:38:10 +08:00
renderNumberList(position),
);
}
return (
<span key="symbol" className={`${prefixCls}-symbol`}>
{num}
</span>
2018-12-07 20:02:01 +08:00
);
2015-11-23 22:58:11 +08:00
}
renderNumberElement(prefixCls: string) {
const { count } = this.state;
if (count && Number(count) % 1 === 0) {
return getNumberArray(count)
.map((num, i) => this.renderCurrentNumber(prefixCls, num, i))
.reverse();
2015-11-23 22:58:11 +08:00
}
return count;
2015-11-23 22:58:11 +08:00
}
renderScrollNumber = ({ getPrefixCls }: ConfigConsumerProps) => {
const {
prefixCls: customizePrefixCls,
2018-12-07 20:02:01 +08:00
className,
style,
title,
component = 'sup',
displayComponent,
} = 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',
'displayComponent',
]);
const prefixCls = getPrefixCls('scroll-number', customizePrefixCls);
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 = {
...style,
boxShadow: `0 0 0 1px ${style.borderColor} inset`,
};
}
if (displayComponent) {
return React.cloneElement(displayComponent, {
className: classNames(
`${prefixCls}-custom-component`,
displayComponent.props && displayComponent.props.className,
),
});
}
2019-08-15 09:47:04 +08:00
return React.createElement(component as any, newProps, this.renderNumberElement(prefixCls));
2018-12-07 20:02:01 +08:00
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderScrollNumber}</ConfigConsumer>;
2015-11-23 22:58:11 +08:00
}
}
export default ScrollNumber;