PromoCursed/node_modules/.cache/babel-loader/f7352434f61073450f45fec0d764500dd4cfd93c9c4a58f3c3635eda83658041.json
2024-08-20 23:25:37 +04:00

1 line
17 KiB
JSON

{"ast":null,"code":"import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectSpread from \"@babel/runtime/helpers/esm/objectSpread2\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nvar _excluded = [\"value\", \"size\", \"level\", \"bgColor\", \"fgColor\", \"includeMargin\", \"minVersion\", \"marginSize\", \"style\", \"imageSettings\"];\nimport React, { useCallback, useEffect, useRef, useState } from 'react';\nimport { useQRCode } from \"./hooks/useQRCode\";\nimport { DEFAULT_BACKGROUND_COLOR, DEFAULT_FRONT_COLOR, DEFAULT_NEED_MARGIN, DEFAULT_LEVEL, DEFAULT_MINVERSION, DEFAULT_SIZE, isSupportPath2d, excavateModules, generatePath } from \"./utils\";\nvar QRCodeCanvas = /*#__PURE__*/React.forwardRef(function QRCodeCanvas(props, forwardedRef) {\n var value = props.value,\n _props$size = props.size,\n size = _props$size === void 0 ? DEFAULT_SIZE : _props$size,\n _props$level = props.level,\n level = _props$level === void 0 ? DEFAULT_LEVEL : _props$level,\n _props$bgColor = props.bgColor,\n bgColor = _props$bgColor === void 0 ? DEFAULT_BACKGROUND_COLOR : _props$bgColor,\n _props$fgColor = props.fgColor,\n fgColor = _props$fgColor === void 0 ? DEFAULT_FRONT_COLOR : _props$fgColor,\n _props$includeMargin = props.includeMargin,\n includeMargin = _props$includeMargin === void 0 ? DEFAULT_NEED_MARGIN : _props$includeMargin,\n _props$minVersion = props.minVersion,\n minVersion = _props$minVersion === void 0 ? DEFAULT_MINVERSION : _props$minVersion,\n marginSize = props.marginSize,\n style = props.style,\n imageSettings = props.imageSettings,\n otherProps = _objectWithoutProperties(props, _excluded);\n var imgSrc = imageSettings === null || imageSettings === void 0 ? void 0 : imageSettings.src;\n var _canvas = useRef(null);\n var _image = useRef(null);\n var setCanvasRef = useCallback(function (node) {\n _canvas.current = node;\n if (typeof forwardedRef === 'function') {\n forwardedRef(node);\n } else if (forwardedRef) {\n forwardedRef.current = node;\n }\n }, [forwardedRef]);\n var _useState = useState(false),\n _useState2 = _slicedToArray(_useState, 2),\n setIsImageLoaded = _useState2[1];\n var _useQRCode = useQRCode({\n value: value,\n level: level,\n minVersion: minVersion,\n includeMargin: includeMargin,\n marginSize: marginSize,\n imageSettings: imageSettings,\n size: size\n }),\n margin = _useQRCode.margin,\n cells = _useQRCode.cells,\n numCells = _useQRCode.numCells,\n calculatedImageSettings = _useQRCode.calculatedImageSettings;\n useEffect(function () {\n if (_canvas.current != null) {\n var canvas = _canvas.current;\n var ctx = canvas.getContext('2d');\n if (!ctx) {\n return;\n }\n var cellsToDraw = cells;\n var image = _image.current;\n var haveImageToRender = calculatedImageSettings != null && image !== null && image.complete && image.naturalHeight !== 0 && image.naturalWidth !== 0;\n if (haveImageToRender) {\n if (calculatedImageSettings.excavation != null) {\n cellsToDraw = excavateModules(cells, calculatedImageSettings.excavation);\n }\n }\n var pixelRatio = window.devicePixelRatio || 1;\n canvas.height = canvas.width = size * pixelRatio;\n var scale = size / numCells * pixelRatio;\n ctx.scale(scale, scale);\n ctx.fillStyle = bgColor;\n ctx.fillRect(0, 0, numCells, numCells);\n ctx.fillStyle = fgColor;\n if (isSupportPath2d) {\n ctx.fill(new Path2D(generatePath(cellsToDraw, margin)));\n } else {\n cells.forEach(function (row, rdx) {\n row.forEach(function (cell, cdx) {\n if (cell) {\n ctx.fillRect(cdx + margin, rdx + margin, 1, 1);\n }\n });\n });\n }\n if (calculatedImageSettings) {\n ctx.globalAlpha = calculatedImageSettings.opacity;\n }\n if (haveImageToRender) {\n ctx.drawImage(image, calculatedImageSettings.x + margin, calculatedImageSettings.y + margin, calculatedImageSettings.w, calculatedImageSettings.h);\n }\n }\n });\n useEffect(function () {\n setIsImageLoaded(false);\n }, [imgSrc]);\n var canvasStyle = _objectSpread({\n height: size,\n width: size\n }, style);\n var img = null;\n if (imgSrc != null) {\n img = /*#__PURE__*/React.createElement(\"img\", {\n src: imgSrc,\n key: imgSrc,\n style: {\n display: 'none'\n },\n onLoad: function onLoad() {\n setIsImageLoaded(true);\n },\n ref: _image\n // when crossOrigin is not set, the image will be tainted\n // and the canvas cannot be exported to an image\n ,\n\n crossOrigin: calculatedImageSettings === null || calculatedImageSettings === void 0 ? void 0 : calculatedImageSettings.crossOrigin\n });\n }\n return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(\"canvas\", _extends({\n style: canvasStyle,\n height: size,\n width: size,\n ref: setCanvasRef,\n role: \"img\"\n }, otherProps)), img);\n});\nQRCodeCanvas.displayName = 'QRCodeCanvas';\nexport { QRCodeCanvas };","map":{"version":3,"names":["_extends","_objectSpread","_slicedToArray","_objectWithoutProperties","_excluded","React","useCallback","useEffect","useRef","useState","useQRCode","DEFAULT_BACKGROUND_COLOR","DEFAULT_FRONT_COLOR","DEFAULT_NEED_MARGIN","DEFAULT_LEVEL","DEFAULT_MINVERSION","DEFAULT_SIZE","isSupportPath2d","excavateModules","generatePath","QRCodeCanvas","forwardRef","props","forwardedRef","value","_props$size","size","_props$level","level","_props$bgColor","bgColor","_props$fgColor","fgColor","_props$includeMargin","includeMargin","_props$minVersion","minVersion","marginSize","style","imageSettings","otherProps","imgSrc","src","_canvas","_image","setCanvasRef","node","current","_useState","_useState2","setIsImageLoaded","_useQRCode","margin","cells","numCells","calculatedImageSettings","canvas","ctx","getContext","cellsToDraw","image","haveImageToRender","complete","naturalHeight","naturalWidth","excavation","pixelRatio","window","devicePixelRatio","height","width","scale","fillStyle","fillRect","fill","Path2D","forEach","row","rdx","cell","cdx","globalAlpha","opacity","drawImage","x","y","w","h","canvasStyle","img","createElement","key","display","onLoad","ref","crossOrigin","Fragment","role","displayName"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/@rc-component/qrcode/es/QRCodeCanvas.js"],"sourcesContent":["import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectSpread from \"@babel/runtime/helpers/esm/objectSpread2\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nvar _excluded = [\"value\", \"size\", \"level\", \"bgColor\", \"fgColor\", \"includeMargin\", \"minVersion\", \"marginSize\", \"style\", \"imageSettings\"];\nimport React, { useCallback, useEffect, useRef, useState } from 'react';\nimport { useQRCode } from \"./hooks/useQRCode\";\nimport { DEFAULT_BACKGROUND_COLOR, DEFAULT_FRONT_COLOR, DEFAULT_NEED_MARGIN, DEFAULT_LEVEL, DEFAULT_MINVERSION, DEFAULT_SIZE, isSupportPath2d, excavateModules, generatePath } from \"./utils\";\nvar QRCodeCanvas = /*#__PURE__*/React.forwardRef(function QRCodeCanvas(props, forwardedRef) {\n var value = props.value,\n _props$size = props.size,\n size = _props$size === void 0 ? DEFAULT_SIZE : _props$size,\n _props$level = props.level,\n level = _props$level === void 0 ? DEFAULT_LEVEL : _props$level,\n _props$bgColor = props.bgColor,\n bgColor = _props$bgColor === void 0 ? DEFAULT_BACKGROUND_COLOR : _props$bgColor,\n _props$fgColor = props.fgColor,\n fgColor = _props$fgColor === void 0 ? DEFAULT_FRONT_COLOR : _props$fgColor,\n _props$includeMargin = props.includeMargin,\n includeMargin = _props$includeMargin === void 0 ? DEFAULT_NEED_MARGIN : _props$includeMargin,\n _props$minVersion = props.minVersion,\n minVersion = _props$minVersion === void 0 ? DEFAULT_MINVERSION : _props$minVersion,\n marginSize = props.marginSize,\n style = props.style,\n imageSettings = props.imageSettings,\n otherProps = _objectWithoutProperties(props, _excluded);\n var imgSrc = imageSettings === null || imageSettings === void 0 ? void 0 : imageSettings.src;\n var _canvas = useRef(null);\n var _image = useRef(null);\n var setCanvasRef = useCallback(function (node) {\n _canvas.current = node;\n if (typeof forwardedRef === 'function') {\n forwardedRef(node);\n } else if (forwardedRef) {\n forwardedRef.current = node;\n }\n }, [forwardedRef]);\n var _useState = useState(false),\n _useState2 = _slicedToArray(_useState, 2),\n setIsImageLoaded = _useState2[1];\n var _useQRCode = useQRCode({\n value: value,\n level: level,\n minVersion: minVersion,\n includeMargin: includeMargin,\n marginSize: marginSize,\n imageSettings: imageSettings,\n size: size\n }),\n margin = _useQRCode.margin,\n cells = _useQRCode.cells,\n numCells = _useQRCode.numCells,\n calculatedImageSettings = _useQRCode.calculatedImageSettings;\n useEffect(function () {\n if (_canvas.current != null) {\n var canvas = _canvas.current;\n var ctx = canvas.getContext('2d');\n if (!ctx) {\n return;\n }\n var cellsToDraw = cells;\n var image = _image.current;\n var haveImageToRender = calculatedImageSettings != null && image !== null && image.complete && image.naturalHeight !== 0 && image.naturalWidth !== 0;\n if (haveImageToRender) {\n if (calculatedImageSettings.excavation != null) {\n cellsToDraw = excavateModules(cells, calculatedImageSettings.excavation);\n }\n }\n var pixelRatio = window.devicePixelRatio || 1;\n canvas.height = canvas.width = size * pixelRatio;\n var scale = size / numCells * pixelRatio;\n ctx.scale(scale, scale);\n ctx.fillStyle = bgColor;\n ctx.fillRect(0, 0, numCells, numCells);\n ctx.fillStyle = fgColor;\n if (isSupportPath2d) {\n ctx.fill(new Path2D(generatePath(cellsToDraw, margin)));\n } else {\n cells.forEach(function (row, rdx) {\n row.forEach(function (cell, cdx) {\n if (cell) {\n ctx.fillRect(cdx + margin, rdx + margin, 1, 1);\n }\n });\n });\n }\n if (calculatedImageSettings) {\n ctx.globalAlpha = calculatedImageSettings.opacity;\n }\n if (haveImageToRender) {\n ctx.drawImage(image, calculatedImageSettings.x + margin, calculatedImageSettings.y + margin, calculatedImageSettings.w, calculatedImageSettings.h);\n }\n }\n });\n useEffect(function () {\n setIsImageLoaded(false);\n }, [imgSrc]);\n var canvasStyle = _objectSpread({\n height: size,\n width: size\n }, style);\n var img = null;\n if (imgSrc != null) {\n img = /*#__PURE__*/React.createElement(\"img\", {\n src: imgSrc,\n key: imgSrc,\n style: {\n display: 'none'\n },\n onLoad: function onLoad() {\n setIsImageLoaded(true);\n },\n ref: _image\n // when crossOrigin is not set, the image will be tainted\n // and the canvas cannot be exported to an image\n ,\n crossOrigin: calculatedImageSettings === null || calculatedImageSettings === void 0 ? void 0 : calculatedImageSettings.crossOrigin\n });\n }\n return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(\"canvas\", _extends({\n style: canvasStyle,\n height: size,\n width: size,\n ref: setCanvasRef,\n role: \"img\"\n }, otherProps)), img);\n});\nQRCodeCanvas.displayName = 'QRCodeCanvas';\nexport { QRCodeCanvas };"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}