mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +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
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { composeRef } from 'rc-util/lib/ref';
|
|
import { ConfigContext } from '../config-provider';
|
|
import warning from '../_util/warning';
|
|
|
|
export interface TypographyProps {
|
|
id?: string;
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
children?: React.ReactNode;
|
|
['aria-label']?: string;
|
|
}
|
|
|
|
interface InternalTypographyProps extends TypographyProps {
|
|
component?: string;
|
|
/** @deprecated Use `ref` directly if using React 16 */
|
|
setContentRef?: (node: HTMLElement) => void;
|
|
}
|
|
|
|
const Typography: React.ForwardRefRenderFunction<{}, InternalTypographyProps> = (
|
|
{
|
|
prefixCls: customizePrefixCls,
|
|
component = 'article',
|
|
className,
|
|
'aria-label': ariaLabel,
|
|
setContentRef,
|
|
children,
|
|
...restProps
|
|
},
|
|
ref,
|
|
) => {
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
|
|
let mergedRef = ref;
|
|
if (setContentRef) {
|
|
warning(false, 'Typography', '`setContentRef` is deprecated. Please use `ref` instead.');
|
|
mergedRef = composeRef(ref, setContentRef);
|
|
}
|
|
|
|
const Component = component as any;
|
|
const prefixCls = getPrefixCls('typography', customizePrefixCls);
|
|
const componentClassName = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
className,
|
|
);
|
|
return (
|
|
<Component className={componentClassName} aria-label={ariaLabel} ref={mergedRef} {...restProps}>
|
|
{children}
|
|
</Component>
|
|
);
|
|
};
|
|
|
|
const RefTypography = React.forwardRef(Typography);
|
|
|
|
RefTypography.displayName = 'Typography';
|
|
|
|
// es default export should use const instead of let
|
|
const ExportTypography = RefTypography as unknown as React.FC<TypographyProps>;
|
|
|
|
export default ExportTypography;
|