{"version":3,"sources":["paragraph.icon_text_cards.js"],"names":["document","addEventListener","domE","loadHeightAdjustment","heights","grids","querySelectorAll","length","i","largestHeight","iconTextParagraphs","myHeight","j","getBoundingClientRect","height","css","getAttribute","Math","createElement","thisStyle","classList","querySelector","appendChild","setInterval","checks","push","pass","iconSet","filter","iconCard","failed","clearInterval"],"mappings":"aAAAA,SAASC,iBAAiB,mBAAoB,SAACC,GAC7C,IA+BUC,EAATC,EACKA,EAhCAC,EAAQL,SAASM,iBAAiB,0BA+B9BH,EA5BmB,WAC3B,IADF,IAkBUI,EAlBJJ,EAAAA,GACGK,EAAP,EAAAA,EAAAH,EAAAE,OAAAC,IAAA,CAGE,IADA,IAAIC,EAAgB,EADjBC,EAAqBH,EAASC,GAAnCF,iBAAuC,mEAE/BI,EAAAA,EAAAA,EAAAA,EAA8BJ,OAAAA,IAGlC,IAAIK,EAAWD,EAAmBE,GAAGC,wBAAwBC,OAD/DL,EAAoBC,EAAHC,EAA8BC,EAAKH,EAMhC,EAAhBA,IAAJM,GAAIN,IAAAA,EAAJD,GAAuBQ,aAAA,MAAA,oCACrBD,GAAO,YAAME,KAASD,KAAAA,GAAqB,WAK9B,EAAbD,EAAIR,UAAAA,EAAYP,SAAAkB,cAAA,UACZC,UAAYnB,IAAQ,sCAC1BmB,EAAUC,YAAcL,EACxBI,SAASE,cAAT,QAAAC,YAAAH,KAOHf,EAASD,GACJC,EAAUmB,YAAd,WACA,IAAMC,IAAMhB,EAAGe,EAAAA,EAAAA,EAAYhB,OAAAC,IAAU,CAC9BJ,EAALG,OAAoBF,EAAME,GAA1BH,EAAuCqB,KAAA,IACY,IAAjD,IAAIrB,EAAJC,EAA4BG,GAAAF,iBAAA,mEAAqBM,EAAA,EAAAA,EAAAF,EAAAH,OAAAK,IAAA,CAI/C,IAAID,EAAWD,EAAmBE,GAAGC,wBAAwBC,OAHzDJ,EAAAA,GAAAA,OAAqBL,EAAAA,EAKvBD,EAAQI,GAAGiB,KAAK,CAAEX,OAAQH,EAAUe,MAAM,IAF7BhB,GAAXC,GAAWD,EAAmBE,GAAGC,GAAAA,QAAAA,GAKnCT,EAAQI,GAAGI,GAAGE,OAASH,EAJzBP,EAAIA,GAAOQ,GAAIL,MAAX,GACkCmB,EAAMlB,GAAAI,GAAAc,MAAA,GAc/BC,GAPJvB,EAAOsB,OAAO,SAArBC,GAUJ,OAAuB,EATpBA,EAAAC,OAAA,SAAAC,GACF,OAAAA,EAAAH,OAQanB,SAHRuB,QAAiBF,IACrBG,cAAQF,GACT1B,MAHY","file":"paragraph.icon_text_cards.js","sourcesContent":["document.addEventListener('DOMContentLoaded', (domE) => {\n const grids = document.querySelectorAll('.paragraph--type--grid');\n\n // Now we actually adjust the height\n const loadHeightAdjustment = () => {\n let css = '';\n for (let i = 0; i < grids.length; i++) {\n let largestHeight = 0;\n const iconTextParagraphs = grids[i].querySelectorAll('.paragraph--type--icon-text-card .field-name-field-icon-graphic');\n\n for (let j = 0; j < iconTextParagraphs.length; j++) {\n let myHeight = iconTextParagraphs[j].getBoundingClientRect().height; \n largestHeight = (myHeight > largestHeight) ? myHeight : largestHeight;\n }\n\n \n if (largestHeight > 0) {\n css += '#' + grids[i].getAttribute('id') + ' .field-name-field-icon-graphic {';\n css += ' height: ' + Math.ceil(largestHeight) + 'px; }' + \"\\n\";\n }\n }\n \n if (css.length > 0) {\n const thisStyle = document.createElement('style');\n thisStyle.classList.add('grid-image-text-cards-icons-height');\n thisStyle.textContent = css;\n document.querySelector('body').appendChild(thisStyle);\n }\n };\n\n // First lets verify we get consistent heights for each of the sets; ie images are loaded\n // let hasPassed = false;\n (function(loadHeightAdjustment) {\n let heights = [];\n const checks = setInterval(function(){\n for (let i = 0; i < grids.length; i++) {\n if (heights.length < (i+1)) { heights.push([]); }\n const iconTextParagraphs = grids[i].querySelectorAll('.paragraph--type--icon-text-card .field-name-field-icon-graphic');\n\n for (let j = 0; j < iconTextParagraphs.length; j++) {\n let myHeight = iconTextParagraphs[j].getBoundingClientRect().height;\n if (heights[i].length < (j+1)) {\n heights[i].push({ height: myHeight, pass: false });\n }\n else if (myHeight == 0 || heights[i][j].height != myHeight) {\n heights[i][j].height = myHeight;\n heights[i][j].pass = false;\n }\n else {\n heights[i][j].pass = true;\n }\n }\n }\n\n // Check if all passed\n const failed = heights.filter(function(iconSet) {\n const failed = iconSet.filter(function(iconCard) {\n return !iconCard.pass;\n });\n return failed.length > 0;\n });\n\n if (failed.length == 0 && loadHeightAdjustment) {\n clearInterval(checks);\n loadHeightAdjustment();\n }\n }, 300);\n })(loadHeightAdjustment);\n});"]}