mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
59ad48476b
* chore: add boime lint * fix lint * use files ignore * revert change * ignore clarity.js * fix some errors * fix some errors * fix some errors * fix some errors * add yml file * Update clarity.js Signed-off-by: afc163 <afc163@gmail.com> * add npm run lint:biome * add npm run lint:biome * fix test case * fix ts errors * fix ts errors * fix lint and add .lintstagedrc * shorten prop name * chore: update package.json * update biome.json * chore: remove stylelint * chore: useOptionalChain * fix lint * biome format * prettier all code * prettier all code * fix site test --------- Signed-off-by: afc163 <afc163@gmail.com>
93 lines
2.4 KiB
TypeScript
93 lines
2.4 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { cloneElement } from '../_util/reactNode';
|
|
import { ConfigContext } from '../config-provider';
|
|
import SingleNumber from './SingleNumber';
|
|
|
|
export interface ScrollNumberProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
motionClassName?: string;
|
|
count?: string | number | null;
|
|
children?: React.ReactElement<HTMLElement>;
|
|
component?: React.ComponentType<any>;
|
|
style?: React.CSSProperties;
|
|
title?: string | number | null;
|
|
show: boolean;
|
|
}
|
|
|
|
export interface ScrollNumberState {
|
|
animateStarted?: boolean;
|
|
count?: string | number | null;
|
|
}
|
|
|
|
const ScrollNumber = React.forwardRef<HTMLElement, ScrollNumberProps>((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
count,
|
|
className,
|
|
motionClassName,
|
|
style,
|
|
title,
|
|
show,
|
|
component: Component = 'sup',
|
|
children,
|
|
...restProps
|
|
} = props;
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('scroll-number', customizePrefixCls);
|
|
|
|
// ============================ Render ============================
|
|
const newProps = {
|
|
...restProps,
|
|
'data-show': show,
|
|
style,
|
|
className: classNames(prefixCls, className, motionClassName),
|
|
title: title as string,
|
|
};
|
|
|
|
// Only integer need motion
|
|
let numberNodes: React.ReactNode = count;
|
|
if (count && Number(count) % 1 === 0) {
|
|
const numberList = String(count).split('');
|
|
|
|
numberNodes = (
|
|
<bdi>
|
|
{numberList.map((num, i) => (
|
|
<SingleNumber
|
|
prefixCls={prefixCls}
|
|
count={Number(count)}
|
|
value={num}
|
|
// eslint-disable-next-line react/no-array-index-key
|
|
key={numberList.length - i}
|
|
/>
|
|
))}
|
|
</bdi>
|
|
);
|
|
}
|
|
|
|
// 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?.borderColor) {
|
|
newProps.style = {
|
|
...style,
|
|
boxShadow: `0 0 0 1px ${style.borderColor} inset`,
|
|
};
|
|
}
|
|
if (children) {
|
|
return cloneElement(children, (oriProps) => ({
|
|
className: classNames(`${prefixCls}-custom-component`, oriProps?.className, motionClassName),
|
|
}));
|
|
}
|
|
|
|
return (
|
|
<Component {...newProps} ref={ref}>
|
|
{numberNodes}
|
|
</Component>
|
|
);
|
|
});
|
|
|
|
export default ScrollNumber;
|