hypnagaga/src/components/AdSlot/LeaderboardAd.svelte
2024-05-07 11:38:57 +01:00

100 lines
2.3 KiB
Svelte

<script lang="ts">
import { DesktopPlacementName } from './@types/ads';
import ResponsiveAd from './ResponsiveAd.svelte';
import { onMount } from 'svelte';
/** Add an ID to target with SCSS. */
export let id: string = '';
/** Add a class to target with SCSS. */
export let cls: string = '';
export { cls as class };
let windowWidth = 1200;
$: adSize = windowWidth < 1024 ? 110 : 275;
const desktopPlacementName: DesktopPlacementName =
'reuters_desktop_leaderboard_atf';
let sticky = false;
// Handles transition out... somewhat dumb, but here we are...
let unstick = false;
onMount(() => {
const handleScroll = () => {
const scrollTop = window.scrollY;
if (scrollTop >= adSize * 1.1) {
sticky = true;
setTimeout(() => {
unstick = true;
setTimeout(() => {
sticky = false;
}, 400);
}, 3000);
window.removeEventListener('scroll', handleScroll);
}
};
window.addEventListener('scroll', handleScroll);
return () => {
window.removeEventListener('scroll', handleScroll);
};
});
</script>
<svelte:window bind:innerWidth="{windowWidth}" />
<!-- @component `LeaderboardAd` [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-LeaderboardAd--default) -->
<div
class="leaderboard__sticky {cls}"
class:sticky="{sticky}"
class:unstick="{unstick}"
id="{id}"
style="--height: {adSize}px;"
>
<div class="ad-block">
<div class="ad-slot__container">
<div class="ad-slot__inner">
<div>
<ResponsiveAd desktopPlacementName="{desktopPlacementName}" />
</div>
</div>
</div>
</div>
</div>
<style lang="scss">
.leaderboard__sticky {
position: initial;
top: -275px;
transition: top 0.4s ease-in-out;
z-index: 1030;
&.sticky {
position: sticky;
top: 0px;
}
&.unstick {
top: -275px;
}
}
div.ad-block {
width: 100%;
background: #f4f4f4;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: var(--height);
.ad-slot__container {
height: 0px;
min-height: var(--height);
align-items: center;
display: flex;
justify-content: center;
.ad-slot__inner {
max-width: 100%;
}
}
}
</style>