90 lines
2.3 KiB
JavaScript
90 lines
2.3 KiB
JavaScript
import { hexToHSL } from './hexToHSL'
|
|
|
|
const script = document.currentScript
|
|
const moduleName = script.dataset.module || 'simulateur-embauche'
|
|
const couleur =
|
|
script.dataset.couleur &&
|
|
encodeURIComponent(
|
|
JSON.stringify(hexToHSL(script.dataset.couleur.toUpperCase()))
|
|
)
|
|
|
|
const lang = script.dataset.lang || 'fr'
|
|
|
|
const src = new URL(
|
|
(lang === 'fr'
|
|
? import.meta.env.VITE_FR_BASE_URL
|
|
: import.meta.env.VITE_EN_BASE_URL) +
|
|
'/iframes/' +
|
|
moduleName
|
|
)
|
|
|
|
src.searchParams.set('iframe', true)
|
|
src.searchParams.set(
|
|
'integratorUrl',
|
|
encodeURIComponent(window.location.href.toString())
|
|
)
|
|
src.searchParams.set('lang', lang)
|
|
if (couleur) {
|
|
src.searchParams.set('couleur', couleur)
|
|
}
|
|
|
|
const iframe = document.createElement('iframe')
|
|
const iframeAttributes = {
|
|
id: 'simulateurEmbauche',
|
|
src: src.toString(),
|
|
style: 'border: none; width: 100%; display: block; height: 700px',
|
|
allow: 'clipboard-write',
|
|
allowfullscreen: true,
|
|
webkitallowfullscreen: true,
|
|
mozallowfullscreen: true,
|
|
}
|
|
for (var key in iframeAttributes) {
|
|
iframe.setAttribute(key, iframeAttributes[key])
|
|
}
|
|
|
|
const links = document.createElement('div')
|
|
const moduleToSitePath = {
|
|
'simulateur-embauche': '/simulateurs/salarié',
|
|
'simulateur-autoentrepreneur': '/simulateurs/auto-entrepreneur',
|
|
'simulateur-independant': '/simulateurs/indépendant',
|
|
'simulateur-dirigeantsasu': '/simulateurs/dirigeant-sasu',
|
|
}
|
|
|
|
const simulateurLink =
|
|
import.meta.env.VITE_FR_BASE_URL + (moduleToSitePath[moduleName] ?? '/')
|
|
|
|
const url = new URL(simulateurLink)
|
|
|
|
const params = new URLSearchParams(url.search)
|
|
|
|
params.append('utm_source', 'iframe')
|
|
params.append('utm_medium', 'iframe')
|
|
params.append('utm_campaign', 'newtext')
|
|
url.search = params.toString()
|
|
const simulateurURL = url.toString()
|
|
|
|
links.innerHTML = `
|
|
<div style="text-align: center; margin-bottom: 2rem; font-size: 80%">
|
|
Retrouvez ce simulateur et bien d'autres sur
|
|
<a href="${simulateurURL}">
|
|
mon-entreprise.urssaf.fr
|
|
</a>
|
|
</div>
|
|
`
|
|
|
|
script.before(iframe)
|
|
script.before(links)
|
|
|
|
window.addEventListener('message', function (evt) {
|
|
if (evt.data.kind === 'resize-height') {
|
|
iframe.style.height = evt.data.value + 'px'
|
|
}
|
|
if (evt.data.kind === 'get-offset') {
|
|
const iframePosition = iframe.getBoundingClientRect()
|
|
iframe.contentWindow?.postMessage(
|
|
{ kind: 'offset', value: Math.max(iframePosition.top * -1, 0) },
|
|
'*'
|
|
)
|
|
}
|
|
})
|