Files
fnx_web/svelte/src/file_viewer/AdSkyscraper.svelte

141 lines
3.9 KiB
Svelte
Raw Normal View History

2021-11-01 17:15:23 +01:00
<script>
import { createEventDispatcher, onMount, tick } from "svelte"
import { adsplus_load, adsplus_loaded, adaround_load } from "./AdHead.svelte"
2021-11-01 17:15:23 +01:00
let dispatch = createEventDispatcher()
let container
let ad_type = ""
let visible = false
let set_ad_type = (t) => {
ad_type = t
if (ad_type === "ads.plus") {
adsplus_load.set(true)
} else if (ad_type === "adaround") {
adaround_load.set(true)
}
2021-11-10 19:30:49 +01:00
console.log("skyscraper ad is " + t)
}
2021-11-01 17:15:23 +01:00
onMount(async () => {
2021-11-01 22:32:46 +01:00
if (window.location.pathname === "/u/demo") {
let url_ads = new URL(window.location.href).searchParams.get("ads")
if (url_ads !== "") {
set_ad_type(url_ads)
2021-11-01 22:32:46 +01:00
open()
return
}
}
2021-11-15 23:57:52 +01:00
if (document.body.clientWidth < 700) {
2021-11-01 17:15:23 +01:00
visible = false
dispatch("visibility", false)
return
}
// If the ad popup was dismissed less than 24 hours ago we don't show it
let dismissal = +localStorage.getItem("viewer_skyscraper_ad_dismissed")
let now = new Date().getTime()
if (dismissal > 0 && now - dismissal < 1000 * 60 * 60 * 24) {
console.log("Skyscraper dismissed")
visible = false
dispatch("visibility", false)
return
}
switch (now % 3) {
2021-11-01 17:15:23 +01:00
case 0:
set_ad_type("aads2")
2021-11-01 17:15:23 +01:00
break
case 1:
set_ad_type("ads.plus")
2021-11-01 17:15:23 +01:00
break
case 2:
set_ad_type("adaround")
2021-11-09 10:49:16 +01:00
break
2021-11-01 17:15:23 +01:00
}
2021-11-01 22:32:46 +01:00
open()
})
const open = async () => {
2021-11-01 17:15:23 +01:00
visible = true
await tick()
dispatch("visibility", true)
container.style.right = "0"
2021-11-01 22:32:46 +01:00
}
2021-11-01 17:15:23 +01:00
const close = () => {
container.style.right = -container.offsetWidth + "px"
dispatch("visibility", false)
localStorage.setItem("viewer_skyscraper_ad_dismissed", new Date().getTime())
// Remove the ad from the DOM to save memory
setTimeout(() => { visible = false }, 1000)
}
adsplus_loaded.subscribe(v => {
if (v) {
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag.defineSlot('/21673142571/299__pixeldrain.com__default__160x600_1', [160, 600], 'div-gpt-ad-pixeldraincom160x600_1').addService(googletag.pubads());
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
});
googletag.cmd.push(function() { googletag.display('div-gpt-ad-pixeldraincom160x600_1'); });
}
})
2021-11-01 17:15:23 +01:00
</script>
{#if visible}
<div class="skyscraper" bind:this={container}>
<button on:click={close} class="round">
<i class="icon">close</i> Close ad
</button>
<div class="ad_space">
{#if ad_type === "aads2"}
2021-11-01 17:15:23 +01:00
<iframe
data-aa="1811738"
src="//ad.a-ads.com/1811738?size=160x600&background_color={window.style.layer2Color}&text_color={window.style.textColor}&title_color={window.style.highlightColor}&title_hover_color={window.style.highlightColor}&link_color={window.style.highlightColor}&link_hover_color={window.style.highlightColor}"
style="width:160px; height:600px; border:0px; padding:0; overflow:hidden; background-color: transparent;"
title="A-ads advertisement">
</iframe>
{:else if ad_type === "ads.plus"}
<!-- /21673142571/299__pixeldrain.com__default__160x600_1 -->
<div id='div-gpt-ad-pixeldraincom160x600_1' style='width: 160px; height: 600px;'></div>
{:else if ad_type === "pixfuture"}
<!-- AuctionX Display platform tag START -->
<div id="27513x160x600x4605x_ADSLOT1" clickTrack="%%CLICK_URL_ESC%%" style="display: block; margin: auto;"></div>
<script type="text/javascript" async src="https://served-by.pixfuture.com/www/delivery/headerbid.js" slotId="27513x160x600x4605x_ADSLOT1" refreshTime="5" refreshInterval="60"></script>
<!-- AuctionX Display platform tag END -->
2021-11-09 10:49:16 +01:00
{:else if ad_type === "adaround"}
<div class="_fa7cdd4c68507744" data-zone="2a0dbd4b7c484e9e824d211a57fa6b93" style="width:160px;height:600px;display: inline-block;margin: 0 auto"></div>
2021-11-01 17:15:23 +01:00
{/if}
</div>
</div>
{/if}
<style>
.skyscraper {
position: absolute;
width: 160px;
z-index: 49;
overflow: hidden;
right: -160px;
bottom: 0;
top: 0;
padding: 0;
text-align: center;
transition: right 0.5s;
background-color: var(--layer_2_color);
}
.ad_space {
width: 100%;
height: 100%;
}
</style>