File size: 850 Bytes
b1324bf 7fe6a68 b1324bf 7fe6a68 b1324bf 7fe6a68 b1324bf 7fe6a68 b1324bf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /**
* Client-side embed snippets (updates instantly while editing).
* Sizing is responsive — no manual width/height needed.
*/
export function buildCtaEmbedCodes({ publicId, name, origin }) {
if (!publicId) {
return { embed_iframe: '', embed_script: '' };
}
const base =
origin || (typeof window !== 'undefined' ? window.location.origin : '');
const title = (name || 'Form').replace(/"/g, '"');
const iframeStyle =
'width:100%;max-width:100%;border:none;border-radius:12px;display:block;min-height:280px;';
return {
embed_iframe: `<iframe src="${base}/embed/cta/${publicId}" title="${title}" style="${iframeStyle}" loading="lazy"></iframe>`,
embed_script: `<div id="ezofis-cta-${publicId}"></div>\n<script src="${base}/api/embed/cta/${publicId}.js" async></script>`,
};
}
|