mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
338ec7dad7
* pref: better code style for production * refactor `devWarning` * don't use `useEffect` only wrap `devWarning` * chore: add 'noop' to coverage * chore: add test cases for devWarning * chore: add test case * chore: update test cases for devWarning * chore: restore test script command * fix: remove 'throw new Error' * should not use `throw` for browser * chore: update test case for AutoComplete * perf: add prefix for `devWarning` * update RegExp for UMD * add prefix for ES and CJS * chore: better code style * perf: * upgrade antd-tools * remove `injectWarningCondition` * rename `devWarning` to `warning` * chore: better code style * chore: better code style * chore: restore hasValidName
36 lines
949 B
TypeScript
36 lines
949 B
TypeScript
import * as React from 'react';
|
|
import warning from '../_util/warning';
|
|
import type { BlockProps } from './Base';
|
|
import Base from './Base';
|
|
import { tupleNum } from '../_util/type';
|
|
|
|
const TITLE_ELE_LIST = tupleNum(1, 2, 3, 4, 5);
|
|
|
|
export type TitleProps = Omit<
|
|
BlockProps & {
|
|
level?: typeof TITLE_ELE_LIST[number];
|
|
onClick?: (e?: React.MouseEvent<HTMLDivElement>) => void;
|
|
},
|
|
'strong'
|
|
>;
|
|
|
|
const Title: React.ForwardRefRenderFunction<HTMLHeadingElement, TitleProps> = (props, ref) => {
|
|
const { level = 1, ...restProps } = props;
|
|
let component: string;
|
|
|
|
if (TITLE_ELE_LIST.indexOf(level) !== -1) {
|
|
component = `h${level}`;
|
|
} else {
|
|
warning(
|
|
false,
|
|
'Typography.Title',
|
|
'Title only accept `1 | 2 | 3 | 4 | 5` as `level` value. And `5` need 4.6.0+ version.',
|
|
);
|
|
component = 'h1';
|
|
}
|
|
|
|
return <Base ref={ref} {...restProps} component={component} />;
|
|
};
|
|
|
|
export default React.forwardRef(Title);
|