2022-03-18 01:58:06 +01:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
function inIFrame() {
|
|
|
|
try {
|
|
|
|
return window.self !== window.top;
|
|
|
|
} catch (e) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const LOAD_AD_DELAY_MS = 3000; // Wait past boot-up and core-vitals period.
|
2022-03-30 16:24:19 +02:00
|
|
|
const OUTBRAIN_CONTAINER_KEY = 'outbrainSizeDiv';
|
2022-03-18 01:58:06 +01:00
|
|
|
|
|
|
|
let script;
|
|
|
|
|
|
|
|
export default function useAdOutbrain(hasPremiumPlus: boolean, isAuthenticated: boolean) {
|
|
|
|
// Only look at authentication for now. Eventually, we'll only use 'hasPremiumPlus'.
|
2022-03-18 19:31:59 +01:00
|
|
|
// Authenticated will return undefined if not yet populated, so wait and only show
|
|
|
|
// when returned as false
|
|
|
|
const isNotAuthenticated = isAuthenticated === false;
|
2022-03-18 01:58:06 +01:00
|
|
|
|
|
|
|
React.useEffect(() => {
|
2022-03-18 19:31:59 +01:00
|
|
|
if (!inIFrame() && isNotAuthenticated && !script) {
|
2022-03-18 01:58:06 +01:00
|
|
|
const loadTimer = setTimeout(() => {
|
|
|
|
script = document.createElement('script');
|
|
|
|
script.src = 'https://adncdnend.azureedge.net/adtags/odysee.adn.js';
|
|
|
|
script.async = true;
|
|
|
|
|
|
|
|
// $FlowFixMe
|
|
|
|
document.body.appendChild(script);
|
|
|
|
}, LOAD_AD_DELAY_MS);
|
|
|
|
|
|
|
|
return () => clearTimeout(loadTimer);
|
|
|
|
}
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps, (on mount only)
|
2022-03-18 19:31:59 +01:00
|
|
|
}, [isNotAuthenticated]);
|
2022-03-18 01:58:06 +01:00
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (isAuthenticated && window[OUTBRAIN_CONTAINER_KEY]) {
|
|
|
|
window[OUTBRAIN_CONTAINER_KEY].style.display = 'none';
|
|
|
|
}
|
|
|
|
}, [isAuthenticated]);
|
|
|
|
}
|