{"version":3,"sources":["components/category/nav/_std/category-nav.js"],"names":["CategoryNav","Component","constructor","el","opener","$find","openedClass","type","$el","dataset","addEventListeners","deviceOpenedCheck","windowWidth","window","innerWidth","toggleNav","e","preventDefault","classList","toggle","openNav","add","closeNav","remove","addEventListener"],"mappings":"aAAA,KAAMA,CAAAA,WAAN,QAA0BC,CAAAA,SAAU,CACnCC,WAAW,CAACC,EAAD,CAAK,CACf,MAAMA,EAAN,EACA,KAAKC,MAAL,CAAc,KAAKC,KAAL,CAAW,mBAAX,CAAd,CACA,KAAKC,WAAL,CAAmB,WAAnB,CACA,KAAKC,IAAL,CAAY,KAAKC,GAAL,CAASC,OAAT,CAAiBF,IAA7B,CACA,KAAKG,iBAAL,GACA,KAAKC,iBAAL,GACA,KAAKC,WAAL,CAAmBC,MAAM,CAACC,UAC1B,CAEDC,SAAS,CAACC,CAAD,CAAI,CACZA,CAAC,CAACC,cAAF,GACA,KAAKT,GAAL,CAASU,SAAT,CAAmBC,MAAnB,CAA0B,KAAKb,WAA/B,CACA,CAEDc,OAAO,EAAG,CACT,KAAKZ,GAAL,CAASU,SAAT,CAAmBG,GAAnB,CAAuB,KAAKf,WAA5B,CACA,CAEDgB,QAAQ,EAAG,CACV,KAAKd,GAAL,CAASU,SAAT,CAAmBK,MAAnB,CAA0B,KAAKjB,WAA/B,CACA,CAEDK,iBAAiB,EAAG,CACnB,GAAG,KAAKJ,IAAL,GAAc,UAAjB,CAA6B,CAC5B,GAAGM,MAAM,CAACC,UAAP,CAAoB,GAAvB,CAA4B,CAC3B,GAAGD,MAAM,CAACC,UAAP,GAAsB,KAAKF,WAA9B,CACC,OAED,KAAKU,QAAL,GACA,KAAKV,WAAL,CAAmBC,MAAM,CAACC,UAC1B,CAND,IAMO,CACN,KAAKM,OAAL,EACA,CACD,CACD,CAEDV,iBAAiB,EAAG,CACnB,KAAKN,MAAL,CAAYoB,gBAAZ,CAA6B,OAA7B,CAAsCR,CAAC,EAAI,KAAKD,SAAL,CAAeC,CAAf,CAA3C,EACAH,MAAM,CAACW,gBAAP,CAAwB,QAAxB,CAAkC,IAAM,KAAKb,iBAAL,EAAxC,CACA,CAzCkC","sourcesContent":["class CategoryNav extends Component {\r\n\tconstructor(el) {\r\n\t\tsuper(el);\r\n\t\tthis.opener = this.$find('[data-nav-opener]');\r\n\t\tthis.openedClass = 'is-opened';\r\n\t\tthis.type = this.$el.dataset.type;\r\n\t\tthis.addEventListeners();\r\n\t\tthis.deviceOpenedCheck();\r\n\t\tthis.windowWidth = window.innerWidth;\r\n\t}\r\n\r\n\ttoggleNav(e) {\r\n\t\te.preventDefault();\r\n\t\tthis.$el.classList.toggle(this.openedClass);\r\n\t}\r\n\r\n\topenNav() {\r\n\t\tthis.$el.classList.add(this.openedClass);\r\n\t}\r\n\r\n\tcloseNav() {\r\n\t\tthis.$el.classList.remove(this.openedClass);\r\n\t}\r\n\t\r\n\tdeviceOpenedCheck() {\r\n\t\tif(this.type !== 'absolute') {\r\n\t\t\tif(window.innerWidth < 769) {\r\n\t\t\t\tif(window.innerWidth === this.windowWidth)\r\n\t\t\t\t\treturn;\r\n\r\n\t\t\t\tthis.closeNav();\r\n\t\t\t\tthis.windowWidth = window.innerWidth;\r\n\t\t\t} else {\r\n\t\t\t\tthis.openNav();\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\taddEventListeners() {\r\n\t\tthis.opener.addEventListener('click', e => this.toggleNav(e));\r\n\t\twindow.addEventListener('resize', () => this.deviceOpenedCheck());\r\n\t}\r\n}"],"file":"category-nav.min.js"}