{"version":3,"sources":["webpack:///./LeLab.Web/src/js/scroll-height.entry.js"],"names":["PageComponent","constructor","node","this","raf","updateHandler","update","bind","updateRafHandler","updateRaf","window","addEventListener","requestAnimationFrame","style","setProperty","scrollHeight","destroy","removeEventListener","cancelAnimationFrame"],"mappings":"4FAAA,kBAoCA,IAAIA,IAAc,uBAlClB,MACIC,aAAY,KAAEC,IACVC,KAAKD,KAAOA,EACZC,KAAKC,IAAM,KACXD,KAAKE,cAAgBF,KAAKG,OAAOC,KAAKJ,MACtCA,KAAKK,iBAAmBL,KAAKM,UAAUF,KAAKJ,MAC5CO,OAAOC,iBAAiB,SAAUR,KAAKE,eACvCF,KAAKG,SAGTA,SACIH,KAAKC,IAAMM,OAAOE,sBAAsBT,KAAKK,kBAGjDC,YACQN,KAAKD,MAAQC,KAAKD,KAAKW,OACvBV,KAAKD,KAAKW,MAAMC,YAAY,kBAA5B,UAAkDX,KAAKD,KAAKa,aAA5D,OAIRC,UACIN,OAAOO,oBAAoB,SAAUd,KAAKE,eAEtCF,KAAKC,KACLM,OAAOQ,qBAAqBf,KAAKC,YAG9BD,KAAKD,YACLC,KAAKC,WACLD,KAAKE,qBACLF,KAAKK,sB","file":"scroll-height.js","sourcesContent":["import { PageComponent } from \"barba\"\r\n\r\nclass ScrollHeight {\r\n constructor({ node }) {\r\n this.node = node\r\n this.raf = null\r\n this.updateHandler = this.update.bind(this)\r\n this.updateRafHandler = this.updateRaf.bind(this)\r\n window.addEventListener(\"resize\", this.updateHandler)\r\n this.update();\r\n }\r\n\r\n update() {\r\n this.raf = window.requestAnimationFrame(this.updateRafHandler)\r\n }\r\n\r\n updateRaf() {\r\n if (this.node && this.node.style) {\r\n this.node.style.setProperty('--scroll-height', `${this.node.scrollHeight}px`);\r\n }\r\n }\r\n\r\n destroy() {\r\n window.removeEventListener(\"resize\", this.updateHandler)\r\n\r\n if (this.raf) {\r\n window.cancelAnimationFrame(this.raf)\r\n }\r\n\r\n delete this.node\r\n delete this.raf\r\n delete this.updateHandler\r\n delete this.updateRafHandler\r\n }\r\n}\r\n\r\nnew PageComponent(\"[data-scroll-height]\", ScrollHeight)\r\n"],"sourceRoot":""}