import React, { useMemo, useContext } from 'react'; import { QRCodeCanvas } from 'qrcode.react'; import classNames from 'classnames'; import { ReloadOutlined } from '@ant-design/icons'; import { ConfigContext } from '../config-provider'; import LocaleReceiver from '../locale/LocaleReceiver'; import type { ConfigConsumerProps } from '../config-provider'; import type { QRCodeProps, QRPropsCanvas } from './interface'; import warning from '../_util/warning'; import useStyle from './style/index'; import Spin from '../spin'; import Button from '../button'; import theme from '../theme'; 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, prefixCls: customizePrefixCls, } = 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: 'transparent', fgColor: color, imageSettings: icon ? imageSettings : undefined, }; }, [errorLevel, color, icon, iconSize, size, value]); 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, hashId, { [`${prefixCls}-borderless`]: !bordered, }); return wrapSSR( {(locale) => (
{status !== 'active' && (
{status === 'loading' && } {status === 'expired' && ( <>

{locale.expired}

{typeof onRefresh === 'function' && ( )} )}
)}
)}
, ); }; export default QRCode;