{"version":3,"file":"script.min.js","sources":["../../../../block-editor/blocks/media-text-dynamic/script.js"],"sourcesContent":["export function init( node ) {\n\n\tif ( ! node ) {\n\t\treturn;\n\t}\n\n\tlet blockStyle = node.currentStyle || window.getComputedStyle(node);\n\n\t//gutterHeight should equal double the padding of the nextBlock if padding exists OR set to 3.5rem - this is double the gutter\n\tlet gutterHeight;\n\n\t//use gutter css variable if padding doesn't exist on element\n\tconst defaultGutter = parseFloat(window.getComputedStyle(document.body).getPropertyValue('--wp--custom--gutter')) * parseFloat(window.getComputedStyle(document.documentElement).fontSize);\n\tlet topPadding = parseInt(blockStyle.paddingTop);\n\tlet bottomPadding = parseInt(blockStyle.paddingBottom);\n\n\tif(topPadding > 0 || bottomPadding > 0) {\n\t\tgutterHeight = topPadding + bottomPadding;\n\t} else {\n\t\tgutterHeight = defaultGutter;\n\t}\n\n\tlet isGreater768 = document.body.clientWidth >= 768;\n\tconst matchMedia = window.matchMedia(\"(min-width: 768px)\");\n\n\tmatchMedia.addEventListener('change', ()=> {\n\t\tisGreater768 = document.body.clientWidth >= 768;\n\t\tblockSettings();\n\t});\n\n\tconst blockSettings = () => {\n\t\tif(isGreater768) {\n\t\t\t//add gutterHeight margin bottom to nextBlock\n\t\t\tnode.style.marginBottom = (gutterHeight * -1) + 'px';\n\t\t} else {\n\t\t\tnode.removeAttribute('style');\n\t\t}\n\t}\n\n\tblockSettings();\n\n\treturn node;\n\n}\n\n\nexport const instances = Array.from( document.querySelectorAll( '.media-text-dynamic.has-overlap' ) ).map( init );\n"],"names":["init","node","gutterHeight","blockStyle","currentStyle","window","getComputedStyle","defaultGutter","parseFloat","document","body","getPropertyValue","documentElement","fontSize","topPadding","parseInt","paddingTop","bottomPadding","paddingBottom","isGreater768","clientWidth","matchMedia","addEventListener","blockSettings","style","marginBottom","removeAttribute","instances","Array","from","querySelectorAll","map"],"mappings":"oHAAO,SAASA,EAAMC,GAErB,GAAOA,EAAP,CAIA,IAGIC,EAHAC,EAAaF,EAAKG,cAAgBC,OAAOC,iBAAiBL,GAMxDM,EAAgBC,WAAWH,OAAOC,iBAAiBG,SAASC,MAAMC,iBAAiB,yBAA2BH,WAAWH,OAAOC,iBAAiBG,SAASG,iBAAiBC,UAC7KC,EAAaC,SAASZ,EAAWa,YACjCC,EAAgBF,SAASZ,EAAWe,eAGvChB,EADEY,EAAa,GAAKG,EAAgB,EACrBH,EAAaG,EAEbV,EAGhB,IAAIY,EAAeV,SAASC,KAAKU,aAAe,IAC7Bf,OAAOgB,WAAW,sBAE1BC,iBAAiB,UAAU,WACrCH,EAAeV,SAASC,KAAKU,aAAe,IAC5CG,OAGD,IAAMA,EAAgB,WAClBJ,EAEFlB,EAAKuB,MAAMC,cAAgC,EAAhBvB,EAAqB,KAEhDD,EAAKyB,gBAAgB,UAMvB,OAFAH,IAEOtB,OAKK0B,EAAYC,MAAMC,KAAMpB,SAASqB,iBAAkB,oCAAsCC,IAAK/B"}