{"version":3,"sources":["webpack:///./Scripts/Components/ButtonPdf.js"],"names":["variantId","loading","setLoading","useState","errorMsg","setErrorMsg","className","onClick","async","get","then","resp","blob","myBlob","a","document","createElement","url","URL","createObjectURL","href","download","click","revokeObjectURL","window","open","error","response","text","x","translate"],"mappings":"mJAIA,MAsDA,EAtDyB,EAAGA,gBACxB,MAAOC,EAASC,IAAcC,eAAS,IAChCC,EAAUC,IAAeF,gBAwBhC,OACI,gCACI,0BAAQG,UAAU,uBAAuBC,QAAS,IAxB1CC,WACZN,GAAW,GACX,UACUO,QAAI,wBAA0BT,GAC/BU,MAAMC,GAASA,EAAKC,SACpBF,MAAMG,IACH,MAAMC,EAAIC,SAASC,cAAc,KAC3BC,EAAMC,IAAIC,gBAAgBN,GAChCC,EAAEM,KAAOH,EACTH,EAAEO,SAAWrB,EACbc,EAAEQ,QACFJ,IAAIK,gBAAgBN,GACpBO,OAAOC,KAAKP,IAAIC,gBAAgBN,OAExCX,GAAW,GACXG,EAAY,MACd,MAAOqB,GACLA,EAAMC,SAASC,OAAOlB,MAAMmB,GAAMxB,EAAYwB,KAC9C3B,GAAW,KAM6CK,IACnDN,EACG,uBAAKK,UAAU,YACX,4BACA,4BACA,4BACA,6BAGJ,gCACI,qBAAGA,UAAU,oCACb,wBAAMA,UAAU,mCACX,KACAwB,OAAU,8BAA+B,OAKzD1B,GACG,qBAAGE,UAAU,0CACRwB,OAAU","file":"692.791b34c35c35955ac25a.js","sourcesContent":["import React, { useState } from 'react';\r\nimport { translate } from '../Services/translation';\r\nimport { get } from '../Services/http';\r\n\r\nconst ProductPdfButton = ({ variantId }) => {\r\n const [loading, setLoading] = useState(false);\r\n const [errorMsg, setErrorMsg] = useState();\r\n\r\n const onClick = async () => {\r\n setLoading(true);\r\n try {\r\n await get('/api/pdfGenerator?id=' + variantId)\r\n .then((resp) => resp.blob())\r\n .then((myBlob) => {\r\n const a = document.createElement('a');\r\n const url = URL.createObjectURL(myBlob);\r\n a.href = url;\r\n a.download = variantId;\r\n a.click();\r\n URL.revokeObjectURL(url);\r\n window.open(URL.createObjectURL(myBlob));\r\n });\r\n setLoading(false);\r\n setErrorMsg(null);\r\n } catch (error) {\r\n error.response.text().then((x) => setErrorMsg(x));\r\n setLoading(false);\r\n }\r\n };\r\n\r\n return (\r\n <>\r\n <button className=\"product-info__button\" onClick={() => onClick()}>\r\n {loading ? (\r\n <div className=\"lds-ring\">\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n </div>\r\n ) : (\r\n <>\r\n <i className=\"product-info__button__pdf__icon\"></i>\r\n <span className=\"product-info__button__pdf__text\">\r\n {' '}\r\n {translate('product.downloadButtonText')}{' '}\r\n </span>\r\n </>\r\n )}\r\n </button>\r\n {errorMsg && (\r\n <p className=\"product-info__button__pdf__error-text\">\r\n {translate('product.action.pdf.error')}\r\n </p>\r\n )}\r\n </>\r\n );\r\n};\r\nexport default ProductPdfButton;\r\n"],"sourceRoot":""}