import { ReloadOutlined } from '@ant-design/icons'; import classNames from 'classnames'; import { QRCodeCanvas } from 'qrcode.react'; import React, { useContext, useMemo } from 'react'; import warning from '../_util/warning'; import Button from '../button'; import type { ConfigConsumerProps } from '../config-provider'; import { ConfigContext } from '../config-provider'; import { useLocale } from '../locale'; import Spin from '../spin'; import theme from '../theme'; import type { QRCodeProps, QRPropsCanvas } from './interface'; import useStyle from './style/index'; const { useToken } = theme; const QRCode: React.FC = (props) => { const { value, icon = '', size = 160, iconSize = 40, color = '#000', errorLevel = 'M', status = 'active', bordered = true, onRefresh, style, className, rootClassName, prefixCls: customizePrefixCls, bgColor = 'transparent', } = props; const { getPrefixCls } = useContext(ConfigContext); const prefixCls = getPrefixCls('qrcode', customizePrefixCls); const [wrapSSR, hashId] = useStyle(prefixCls); const { token } = useToken(); const qrCodeProps = useMemo(() => { const imageSettings: QRCodeProps['imageSettings'] = { src: icon, x: undefined, y: undefined, height: iconSize, width: iconSize, excavate: true, }; return { value, size: size - (token.paddingSM + token.lineWidth) * 2, level: errorLevel, bgColor, fgColor: color, imageSettings: icon ? imageSettings : undefined, }; }, [errorLevel, color, icon, iconSize, size, value, bgColor]); const [locale] = useLocale('QRCode'); if (!value) { if (process.env.NODE_ENV !== 'production') { warning(false, 'QRCode', 'need to receive `value` props'); } return null; } if (process.env.NODE_ENV !== 'production') { warning( !(icon && errorLevel === 'L'), 'QRCode', 'ErrorLevel `L` is not recommended to be used with `icon`, for scanning result would be affected by low level.', ); } const cls = classNames(prefixCls, className, rootClassName, hashId, { [`${prefixCls}-borderless`]: !bordered, }); return wrapSSR(
{status !== 'active' && (
{status === 'loading' && } {status === 'expired' && ( <>

{locale?.expired}

{onRefresh && ( )} )}
)}
, ); }; if (process.env.NODE_ENV !== 'production') { QRCode.displayName = 'QRCode'; } export default QRCode;