{"version":3,"sources":["hotspot.js"],"names":["$","jQuery","Hotspot","_ref","element","container","_classCallCheck","this","_classPrivateFieldInitSpec","_label","writable","value","_description","_tooltip","hotspot","_classPrivateFieldSet","attr","x","parseFloat","y","init","appendTo","css","concat","generateTooltip","on","_this","showTooltip","e","checkIfFocusWithin","event","nextTarget","find","relatedTarget","length","removeTooltip","tooltip","label","html","_classPrivateFieldGet","description","append","hide","fadeIn","fadeOut","HotspotContainer","_ref2","id","hotspots","_this2","each","_i","push"],"mappings":"uwCAAA,IAAMA,EAAIC,O,iEAEJC,Q,WASL,SAAAA,EAAAC,GAAoC,IAAtBC,EAAsBD,EAAtBC,QAASC,EAAaF,EAAbE,UAAaC,gBAAAC,KAAAL,GAAAM,2BAAAD,KAAAE,OAAA,CAAAC,UAAA,EAAAC,WAAA,IAAAH,2BAAAD,KAAAK,aAAA,CAAAF,UAAA,EAAAC,WAAA,IAAAH,2BAAAD,KAAAM,SAAA,CAAAH,UAAA,EAAAC,WAAA,IACnCJ,KAAKO,QAAUd,EAAEI,GACjBG,KAAKF,UAAYA,EACjBU,sBAAAR,KAAAE,OAAcF,KAAKO,QAAQE,KAAK,uBAChCD,sBAAAR,KAAAK,aAAoBL,KAAKO,QAAQE,KAAK,6BACtCD,sBAAAR,KAAAM,SAAgB,IAChBN,KAAKU,EAAIC,WAAWX,KAAKO,QAAQE,KAAK,mBACtCT,KAAKY,EAAID,WAAWX,KAAKO,QAAQE,KAAK,mBACtCT,KAAKa,O,yCAnBP,WAAUnB,IAAAA,EAAAA,KAuBRM,KAAKO,QAAQO,SAASd,KAAKF,UAAUA,WAErCE,KAAKO,QAAQQ,IAAI,WAAjB,YACAf,KAAKO,QAAQQ,IAAI,OAAjB,GAAAC,OAA4BhB,KAAKU,EAAjC,MACAV,KAAKO,QAAQQ,IAAI,MAAjB,GAAAC,OAA2BhB,KAAKY,EAAhC,MAEAZ,KAAKiB,kBAvBPjB,KAAAO,QAAAW,GAAA,YAAA,WAKCC,EAAAC,gBAAoCpB,KAAAO,QAAAW,GAAA,aAAA,SAAAG,IAAA,SAAAC,EAAAC,GAAAC,EAAAL,EAAAZ,QAAAkB,KAAAF,EAAAG,eAkCT,EAApBF,EAAWG,OAlCkBlC,EAAA+B,GAAAN,GAAA,OAAAI,GAAAH,EAAAS,iBAAAN,CAAAD,KA4CnCrB,KAAKO,QAAQE,KAAK,wBAAyB,M,6BAxC3C,WA+CA,IAAMoB,EAAUpC,EAAE,iCAEZqC,GAhDND,EAAApB,KAAA,sBAAA,GAAAT,KAAgBU,EAAhB,OAAA,SAgDcjB,EAAE,gDAAgDsC,KAAlDC,sBA/CdhC,KA+CcE,UA7Cd+B,EAAAxC,EACA,oDAiDEsC,KAlDFC,sBAkDOhC,KAlDPK,eAoDAwB,EAAQK,OAAOJ,GACfD,EAAQK,OAlDTD,GAAOJ,EAAAM,OACN3B,sBAAAR,KAAAM,SAAAuB,GAEA7B,KAAAO,QAAKA,OAALyB,sBAAAhC,KAAAM,a,yBAQF,WAkDE0B,sBAAAhC,KAAAM,UAAc8B,W,2BA3ChB,WAkDEJ,sBAAAhC,KAAAM,UAAc+B,c,KA9CZC,iB,WAmDH,SAAAA,EAAAC,GAA+B,IAAjBzC,EAAiByC,EAAjBzC,UAAW0C,EAAMD,EAANC,GAAMzC,gBAAAC,KAAAsC,GAlD5BtC,KAAAF,UAAI0B,EAAAA,GACH/B,KAAAA,GAAAA,EACAO,KAAAyC,SAAM,GACNzC,KAAAa,O,yCAsDJ,WAAO,IAAA6B,EAAA1C,KAlDLsB,KAAAA,UAAAA,IAAAA,WAAA,YACAtB,KAZDF,UAAAiB,IAAA,QAAA,QAmBFtB,EAAA,0BAAAuB,OAAAhB,KAAAwC,GAAA,OAAAG,KAAA,SAAAC,EAAArC,GAkDGmC,EAAKD,SAASI,KACb,IAAIlD,QAAQ,CACXE,QAASU,EACTT,UApDJ4C,W,KA8DKD,SAAW,GA/CfhD,EAAA,4BAAAkD,KAAA,WACA,IAAAH,EAAA/C,EAAAO,MAAAS,KAAA,0BAEDgC,SAAAD,GAAA,IAAAF,iBAAA,CACDE,GAAAA,EACA1C,UAAAL,EAAAO","file":"hotspot.js","sourcesContent":["const $ = jQuery;\n\nclass Hotspot {\n\t/**\n\t *\n\t * @param {{element: DOM, container: HotspotContainer}}\n\t */\n\t#label;\n\t#description;\n\t#tooltip;\n\n\tconstructor({ element, container }) {\n\t\tthis.hotspot = $(element);\n\t\tthis.container = container;\n\t\tthis.#label = this.hotspot.attr(\"data-hotspot-label\");\n\t\tthis.#description = this.hotspot.attr(\"data-hotspot-description\");\n\t\tthis.#tooltip = \"\";\n\t\tthis.x = parseFloat(this.hotspot.attr(\"data-hotspot-x\"));\n\t\tthis.y = parseFloat(this.hotspot.attr(\"data-hotspot-y\"));\n\t\tthis.init();\n\t}\n\n\tinit() {\n\t\tthis.hotspot.appendTo(this.container.container);\n\n\t\tthis.hotspot.css(\"position\", `absolute`);\n\t\tthis.hotspot.css(\"left\", `${this.x}%`);\n\t\tthis.hotspot.css(\"top\", `${this.y}%`);\n\n\t\tthis.generateTooltip();\n\n\t\t/**\n\t\t * Handle the hotspot when it gets focus\n\t\t */\n\t\tthis.hotspot.on(\"mouseover\", () => {\n\t\t\tthis.showTooltip();\n\t\t});\n\n\t\t/**\n\t\t * Handle the hotspot when it loses focus\n\t\t */\n\t\tthis.hotspot.on(\"mouseleave\", (e) => {\n\t\t\t// Checks if the next target is a child of this hotspot\n\t\t\tconst checkIfFocusWithin = (event) => {\n\t\t\t\tconst nextTarget = this.hotspot.find(event.relatedTarget);\n\t\t\t\tif (nextTarget.length > 0) {\n\t\t\t\t\t$(nextTarget).on(\"blur\", checkIfFocusWithin);\n\t\t\t\t} else {\n\t\t\t\t\tthis.removeTooltip();\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tcheckIfFocusWithin(e);\n\t\t});\n\n\t\tthis.hotspot.attr(\"data-hotspot-rendered\", \"\");\n\t}\n\n\t/**\n\t * Generates the tooltip box\n\t */\n\tgenerateTooltip() {\n\t\tconst tooltip = $(\"