{"version":3,"sources":["polyfills/index.ts","index.ts"],"names":["smoothScroll","polyfill","HTMLCanvasElement","prototype","toBlob","Object","defineProperty","value","callback","type","quality","binStr","atob","this","toDataURL","split","len","length","arr","Uint8Array","i","charCodeAt","Blob","API","process","fetch","then","response","json","data","window","LMS_CONFIG","app","loadingDiv","document","querySelector","parentNode","removeChild","default","catch","error","loadingHeader","style","display","errorDiv","console"],"mappings":"0NACAA,EAAaC,WAGRC,kBAAkBC,UAAUC,QAC/BC,OAAOC,eAAeJ,kBAAkBC,UAAW,SAAU,CAC3DI,MAAO,SAASC,EAAUC,EAAMC,GAK9B,IAJA,IAAMC,EAASC,KAAKC,KAAKC,UAAUL,EAAMC,GAASK,MAAM,KAAK,IACvDC,EAAML,EAAOM,OACbC,EAAM,IAAIC,WAAWH,GAElBI,EAAI,EAAGA,EAAIJ,EAAKI,IACvBF,EAAIE,GAAKT,EAAOU,WAAWD,GAG7BZ,EAAS,IAAIc,KAAK,CAACJ,GAAM,CAACT,KAAMA,GAAQ,eACzC,I,mBCHCc,EAAMC,iCAMZC,MAAM,GAAD,OAAIF,EAAJ,WACFG,MAAK,SAACC,GAAD,OAAcA,EAASC,MAAvB,IACLF,MAAK,SAACG,GAEJC,OAAeC,WAAaF,EAC5BC,OAAeC,WAAWR,IAAMA,EAKjC,uDAAgBG,MAAK,SAACM,GACpB,IAAMC,EAAaC,SAASC,cAAc,uBAEtCF,GAAcA,EAAWG,YAC3BH,EAAWG,WAAWC,YAAYJ,GAEpCD,EAAIM,SACL,GACF,IACAC,OAAM,SAACC,GACN,IAAMC,EACJP,SAASC,cAAc,eAErBM,IACFA,EAAcC,MAAMC,QAAU,QAGhC,IAAMC,EAAkCV,SAASC,cAC/C,6BAGES,IACFA,EAASF,MAAMC,QAAU,SAG3BE,QAAQL,MAAMA,EACf,G","file":"static/js/main.7dc4023f.chunk.js","sourcesContent":["import smoothScroll from 'smoothscroll-polyfill';\r\nsmoothScroll.polyfill();\r\n\r\n// CanvasToBlobPolyFill\r\nif (!HTMLCanvasElement.prototype.toBlob) {\r\n Object.defineProperty(HTMLCanvasElement.prototype, 'toBlob', {\r\n value: function(callback, type, quality) {\r\n const binStr = atob(this.toDataURL(type, quality).split(',')[1]);\r\n const len = binStr.length;\r\n const arr = new Uint8Array(len);\r\n\r\n for (let i = 0; i < len; i++) {\r\n arr[i] = binStr.charCodeAt(i);\r\n }\r\n\r\n callback(new Blob([arr], {type: type || 'image/jpeg'}));\r\n },\r\n });\r\n}\r\n\r\nexport default {};\r\n","// @flow\r\nimport 'babel-polyfill/dist/polyfill.js';\r\n\r\nimport 'bootstrap/dist/css/bootstrap.css';\r\nimport 'font-awesome/css/font-awesome.min.css';\r\nimport 'react-datetime/css/react-datetime.css';\r\n\r\nimport './polyfills';\r\n\r\nimport './styles/index.css';\r\nimport './styles/utility.css';\r\nimport './styles/components.css';\r\n\r\nconst API = process.env.REACT_APP_API;\r\n\r\nif (typeof API !== 'string') {\r\n throw new Error('API not defined');\r\n}\r\n\r\nfetch(`${API}config`)\r\n .then((response) => response.json())\r\n .then((data) => {\r\n // TODO: figure out how to type window with global\r\n (window as any).LMS_CONFIG = data;\r\n (window as any).LMS_CONFIG.API = API;\r\n\r\n // Uncomment to manually force a specific theme\r\n // (window as any).LMS_CONFIG.THEME = 'SAU';\r\n\r\n import('./app').then((app) => {\r\n const loadingDiv = document.querySelector('.cc-initial-loading');\r\n\r\n if (loadingDiv && loadingDiv.parentNode) {\r\n loadingDiv.parentNode.removeChild(loadingDiv);\r\n }\r\n app.default();\r\n });\r\n })\r\n .catch((error) => {\r\n const loadingHeader: null | HTMLHeadingElement =\r\n document.querySelector('.cc-loading');\r\n\r\n if (loadingHeader) {\r\n loadingHeader.style.display = 'none';\r\n }\r\n\r\n const errorDiv: null | HTMLDivElement = document.querySelector(\r\n '.cc-error-fetching-config'\r\n );\r\n\r\n if (errorDiv) {\r\n errorDiv.style.display = 'block';\r\n }\r\n\r\n console.error(error);\r\n });\r\n"],"sourceRoot":""}