{"version":3,"sources":["webpack:///./widgets/hubHero.js"],"names":["WG","concat","HubHero","$el","_classCallCheck","this","key","value","querySelector","classList","add","playVideo","$","document","on","$video","length","youTubePlayers","attr","setVolume"],"mappings":"21BACA,IAEMA,EAAK,IAAHC,OADI,UACM,KAOLC,EAAO,WAKlB,O,EAHD,SAAAA,EAAYC,I,4FAAKC,CAAA,KAAAF,GAEhBG,KAAKF,IAAMA,I,EACX,EAAAG,IAAA,OAAAC,MAED,WAEIF,KAAKF,IAAIK,cAAc,QAAQR,EAAG,SAAUK,KAAKF,IAAIM,UAAUC,IAAI,aAC9DL,KAAKF,IAAIK,cAAc,kBAAkBR,EAAG,UAAUK,KAAKF,IAAIM,UAAUC,IAAI,eAErFL,KAAKM,cACL,CAAAL,IAAA,YAAAC,MAED,WACCK,EAAEC,UAAUC,GAAG,qBAAqB,WACnC,IAAIC,EAASH,EAAE,GAADX,OAAID,EAAE,UAChBe,EAAOC,OAAS,GACnBC,eAAeF,EAAOG,KAAK,qBAAqBC,UAAU,W,0FAnB1C,I","file":"41.js","sourcesContent":["// CONSTANTS are all caps.\nconst NS = \"HubHero\";\nconst CLS = \"hubHero\";\nconst WG = `.${CLS}-`;\n\n// Import stuff here if you need to or even better to import them dynamically\n// for ex. of dynamic import check out src/scripts/loadWg/hubHero.js using Webpack dynamic imports as chunks.\n// import $ from 'jquery'\n\n\nexport class HubHero {\n\n\tconstructor($el) {\n\t\t// $el is the widget node return by the loadHubHero function\n\t\tthis.$el = $el;\n\t}\n\n\tinit() {\n\t\t// added classes here instead of template because easier to maintain\n\t\tif(this.$el.querySelector(\"video\"+WG+\"video\")) this.$el.classList.add(\"has-video\");\n\t\telse if(this.$el.querySelector(\".youtube-player\"+WG+\"video\")) this.$el.classList.add(\"has-videoYT\");\n\n\t\tthis.playVideo();\n\t}\n\n\tplayVideo() {\n\t\t$(document).on(\"youtubeVideoReady\", () => {\n\t\t\tlet $video = $(`${WG}video`);\n\t\t\tif ($video.length > 0) {\n\t\t\t\tyouTubePlayers[$video.attr(\"data-array-index\")].setVolume(0);\n\t\t\t}\n\t\t});\n\t}\n\n\t//Add more functions like on above here\n\n}\n"],"sourceRoot":""}