109 lines
4.6 KiB
JavaScript
109 lines
4.6 KiB
JavaScript
"use strict";
|
|
"use client";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _react = _interopRequireWildcard(require("react"));
|
|
var _qrcode = require("@rc-component/qrcode");
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
var _warning = require("../_util/warning");
|
|
var _configProvider = require("../config-provider");
|
|
var _locale = require("../locale");
|
|
var _internal = require("../theme/internal");
|
|
var _index = _interopRequireDefault(require("./style/index"));
|
|
var _QrcodeStatus = _interopRequireDefault(require("./QrcodeStatus"));
|
|
var __rest = void 0 && (void 0).__rest || function (s, e) {
|
|
var t = {};
|
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
const QRCode = props => {
|
|
var _a, _b, _c, _d;
|
|
const [, token] = (0, _internal.useToken)();
|
|
const {
|
|
value,
|
|
type = 'canvas',
|
|
icon = '',
|
|
size = 160,
|
|
iconSize,
|
|
color = token.colorText,
|
|
errorLevel = 'M',
|
|
status = 'active',
|
|
bordered = true,
|
|
onRefresh,
|
|
style,
|
|
className,
|
|
rootClassName,
|
|
prefixCls: customizePrefixCls,
|
|
bgColor = 'transparent',
|
|
statusRender
|
|
} = props,
|
|
rest = __rest(props, ["value", "type", "icon", "size", "iconSize", "color", "errorLevel", "status", "bordered", "onRefresh", "style", "className", "rootClassName", "prefixCls", "bgColor", "statusRender"]);
|
|
const {
|
|
getPrefixCls
|
|
} = (0, _react.useContext)(_configProvider.ConfigContext);
|
|
const prefixCls = getPrefixCls('qrcode', customizePrefixCls);
|
|
const [wrapCSSVar, hashId, cssVarCls] = (0, _index.default)(prefixCls);
|
|
const imageSettings = {
|
|
src: icon,
|
|
x: undefined,
|
|
y: undefined,
|
|
height: typeof iconSize === 'number' ? iconSize : (_a = iconSize === null || iconSize === void 0 ? void 0 : iconSize.height) !== null && _a !== void 0 ? _a : 40,
|
|
width: typeof iconSize === 'number' ? iconSize : (_b = iconSize === null || iconSize === void 0 ? void 0 : iconSize.width) !== null && _b !== void 0 ? _b : 40,
|
|
excavate: true,
|
|
crossOrigin: 'anonymous'
|
|
};
|
|
const qrCodeProps = {
|
|
value,
|
|
size,
|
|
level: errorLevel,
|
|
bgColor,
|
|
fgColor: color,
|
|
style: {
|
|
width: style === null || style === void 0 ? void 0 : style.width,
|
|
height: style === null || style === void 0 ? void 0 : style.height
|
|
},
|
|
imageSettings: icon ? imageSettings : undefined
|
|
};
|
|
const [locale] = (0, _locale.useLocale)('QRCode');
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const warning = (0, _warning.devUseWarning)('QRCode');
|
|
process.env.NODE_ENV !== "production" ? warning(!!value, 'usage', 'need to receive `value` props') : void 0;
|
|
process.env.NODE_ENV !== "production" ? warning(!(icon && errorLevel === 'L'), 'usage', 'ErrorLevel `L` is not recommended to be used with `icon`, for scanning result would be affected by low level.') : void 0;
|
|
}
|
|
if (!value) {
|
|
return null;
|
|
}
|
|
const mergedCls = (0, _classnames.default)(prefixCls, className, rootClassName, hashId, cssVarCls, {
|
|
[`${prefixCls}-borderless`]: !bordered
|
|
});
|
|
const mergedStyle = Object.assign(Object.assign({
|
|
backgroundColor: bgColor
|
|
}, style), {
|
|
width: (_c = style === null || style === void 0 ? void 0 : style.width) !== null && _c !== void 0 ? _c : size,
|
|
height: (_d = style === null || style === void 0 ? void 0 : style.height) !== null && _d !== void 0 ? _d : size
|
|
});
|
|
return wrapCSSVar( /*#__PURE__*/_react.default.createElement("div", Object.assign({}, rest, {
|
|
className: mergedCls,
|
|
style: mergedStyle
|
|
}), status !== 'active' && ( /*#__PURE__*/_react.default.createElement("div", {
|
|
className: `${prefixCls}-mask`
|
|
}, /*#__PURE__*/_react.default.createElement(_QrcodeStatus.default, {
|
|
prefixCls: prefixCls,
|
|
locale: locale,
|
|
status: status,
|
|
onRefresh: onRefresh,
|
|
statusRender: statusRender
|
|
}))), type === 'canvas' ? /*#__PURE__*/_react.default.createElement(_qrcode.QRCodeCanvas, Object.assign({}, qrCodeProps)) : /*#__PURE__*/_react.default.createElement(_qrcode.QRCodeSVG, Object.assign({}, qrCodeProps))));
|
|
};
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
QRCode.displayName = 'QRCode';
|
|
}
|
|
var _default = exports.default = QRCode; |