import wixWindow from 'wix-window'; import wixLocation from 'wix-location'; $w.onReady(function () { let rateGuideEmbed; let siteFooter; try { rateGuideEmbed = $w('#html1'); } catch (error) {} try { siteFooter = $w('#footer1'); } catch (error) {} const currentPath = Array.isArray(wixLocation.path) ? wixLocation.path.join('/') : ''; const isRateGuidePage = currentPath === 'rate-guide'; if (!isRateGuidePage) { if (rateGuideEmbed && typeof rateGuideEmbed.collapse === 'function') { rateGuideEmbed.collapse(); } else if (rateGuideEmbed && typeof rateGuideEmbed.hide === 'function') { rateGuideEmbed.hide(); } return; } if (siteFooter && typeof siteFooter.expand === 'function') { siteFooter.expand(); } if (siteFooter && typeof siteFooter.show === 'function') { siteFooter.show(); } if (rateGuideEmbed && typeof rateGuideEmbed.expand === 'function') { rateGuideEmbed.expand(); } if (rateGuideEmbed && typeof rateGuideEmbed.show === 'function') { rateGuideEmbed.show(); } if (rateGuideEmbed && typeof rateGuideEmbed.onMessage === 'function') { rateGuideEmbed.onMessage(function (event) { const data = event.data || {}; if (data.type === 'carevista-quote') { const destination = typeof data.url === 'string' && data.url ? data.url : '/contact'; wixLocation.to(destination); return; } if (data.type !== 'carevista-scroll-estimate') { return; } const offsetTop = typeof data.offsetTop === 'number' ? data.offsetTop : 650; wixWindow.scrollTo(0, Math.max(0, offsetTop - 96)); }); } });
