Fix linting

pull/2069/head
Johan Girod 2022-03-24 17:06:41 +01:00
parent cbd60c44dc
commit 7024473acd
1 changed files with 14 additions and 10 deletions

View File

@ -1,29 +1,33 @@
import { hexToHSL } from './hexToHSL'
const script = document.currentScript;
const moduleName = script.dataset.module || 'simulateur-embauche';
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 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)
(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(
'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',