1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-17 12:06:34 +02:00

Update Layout.js

This commit is contained in:
Anton Titovets 2024-10-10 09:36:36 +03:00
parent 848fad19f9
commit bb58824666

View File

@ -20,34 +20,46 @@ export default function CustomLayout(props) {
existingScript.remove(); existingScript.remove();
} }
// Создаем новый скрипт для рендеринга рекламы // Удаляем основной скрипт Yandex, если он есть
const script = document.createElement('script'); const existingYandexScript = document.getElementById('yandex-ads-context-script');
script.id = 'yandex-ad-script'; if (existingYandexScript) {
script.innerHTML = ` existingYandexScript.remove();
window.yaContextCb.push(() => { }
Ya.Context.AdvManager.render({
"blockId": "R-A-12294791-3",
"type": "floorAd",
"platform": "touch"
});
Ya.Context.AdvManager.render({
"blockId": "R-A-12294791-4",
"type": "floorAd",
"platform": "desktop"
});
}) // Создаем новый скрипт для основного Yandex Ads
`; const yandexScript = document.createElement('script');
document.body.appendChild(script); yandexScript.id = 'yandex-ads-context-script';
yandexScript.src = `https://yandex.ru/ads/system/context.js?timestamp=${Date.now()}`;
yandexScript.async = true;
document.head.appendChild(yandexScript);
// Ждем, пока основной скрипт загрузится, чтобы выполнить рендеринг рекламы
yandexScript.onload = () => {
// Создаем новый скрипт для рендеринга рекламы
const script = document.createElement('script');
script.id = 'yandex-ad-script';
script.innerHTML = `
window.yaContextCb.push(() => {
Ya.Context.AdvManager.render({
blockId: "R-A-12294791-1",
renderTo: "yandex_rtb_R-A-12294791-1",
type: "feed"
});
});
`;
document.body.appendChild(script);
};
}; };
// Рендерим рекламные блоки при загрузке страницы или изменении маршрута // Рендерим рекламные блоки при загрузке страницы или изменении маршрута
renderAds(); renderAds();
// Удаляем блоки при размонтировании или смене страницы // Удаляем скрипт при размонтировании или смене страницы
return () => { return () => {
const existingScript = document.getElementById('yandex-ad-script'); const existingScript = document.getElementById('yandex-ad-script');
const existingYandexScript = document.getElementById('yandex-ads-context-script');
if (existingScript) existingScript.remove(); if (existingScript) existingScript.remove();
if (existingYandexScript) existingYandexScript.remove();
}; };
}, [location.pathname]); // Следим за изменением пути }, [location.pathname]); // Следим за изменением пути
@ -57,7 +69,6 @@ export default function CustomLayout(props) {
<script> <script>
window.yaContextCb = window.yaContextCb || []; window.yaContextCb = window.yaContextCb || [];
</script> </script>
<script src="https://yandex.ru/ads/system/context.js" async></script>
</Head> </Head>
<Layout {...props} /> <Layout {...props} />
</> </>