lbry-desktop/web/component/ads/view.jsx

146 lines
4.2 KiB
React
Raw Normal View History

2020-01-24 19:31:49 +01:00
// @flow
2020-10-01 22:59:11 +02:00
import { DOMAIN, SHOW_ADS } from 'config';
2020-01-24 19:31:49 +01:00
import * as PAGES from 'constants/pages';
2020-01-23 17:21:36 +01:00
import React, { useEffect } from 'react';
2020-01-24 19:31:49 +01:00
import { withRouter } from 'react-router';
import I18nMessage from 'component/i18nMessage';
import Button from 'component/button';
2020-03-26 22:47:07 +01:00
import classnames from 'classnames';
2022-03-07 07:31:53 +01:00
// prettier-ignore
const AD_CONFIGS = Object.freeze({
DEFAULT: {
url: 'https://cdn.vidcrunch.com/integrations/618bb4d28aac298191eec411/Lbry_Odysee.com_Responsive_Floating_DFP_Rev70_1011.js',
tag: 'vidcrunchJS537102317',
},
MOBILE: {
url: 'https://cdn.vidcrunch.com/integrations/618bb4d28aac298191eec411/Lbry_Odysee.com_Mobile_Floating_DFP_Rev70_1611.js',
tag: 'vidcrunchJS199212779',
},
EU: {
url: 'https://tg1.vidcrunch.com/api/adserver/spt?AV_TAGID=61dff05c599f1e20b01085d4&AV_PUBLISHERID=6182c8993c8ae776bd5635e9',
tag: 'AV61dff05c599f1e20b01085d4',
},
});
const IS_IOS =
(/iPad|iPhone|iPod/.test(navigator.platform) ||
// for iOS 13+ , platform is MacIntel, so use this to test
(navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)) &&
!window.MSStream;
2021-12-13 17:25:39 +01:00
const IS_ANDROID = /Android/i.test(navigator.userAgent);
// const IS_FIREFOX = /Firefox/i.test(navigator.userAgent);
2021-12-13 17:25:39 +01:00
// const isFirefoxAndroid = IS_ANDROID && IS_FIREFOX;
2021-12-13 17:25:39 +01:00
2020-01-24 19:31:49 +01:00
type Props = {
location: { pathname: string },
2020-03-26 22:47:07 +01:00
type: string,
tileLayout?: boolean,
2020-03-26 22:47:07 +01:00
small: boolean,
2021-03-21 20:02:50 +01:00
claim: Claim,
2021-01-31 04:47:06 +01:00
isMature: boolean,
authenticated: boolean,
className?: string,
2020-01-24 19:31:49 +01:00
};
function removeIfExists(querySelector) {
const element = document.querySelector(querySelector);
if (element) element.remove();
}
2020-01-24 19:31:49 +01:00
function Ads(props: Props) {
const {
location: { pathname },
type = 'video',
tileLayout,
2020-03-26 22:47:07 +01:00
small,
authenticated,
className,
2020-01-24 19:31:49 +01:00
} = props;
2020-03-26 22:47:07 +01:00
const shouldShowAds = SHOW_ADS && !authenticated;
2022-01-19 16:20:07 +01:00
const mobileAds = IS_ANDROID || IS_IOS;
// this is populated from app based on location
2022-03-07 07:31:53 +01:00
const isInEu = localStorage.getItem('gdprRequired') === 'true';
// const adConfig = isInEu ? AD_CONFIGS.EU : mobileAds ? AD_CONFIGS.MOBILE : AD_CONFIGS.DEFAULT;
// -- The logic above is what we are asked to do, but the EU script breaks our
// -- app's CSS when ran on mobile.
const adConfig = mobileAds ? AD_CONFIGS.MOBILE : isInEu ? AD_CONFIGS.EU : AD_CONFIGS.DEFAULT;
// add script to DOM
2020-01-23 17:21:36 +01:00
useEffect(() => {
if (shouldShowAds) {
2021-01-22 00:57:29 +01:00
let script;
2020-03-26 22:47:07 +01:00
try {
script = document.createElement('script');
2022-03-07 07:31:53 +01:00
script.src = adConfig.url;
2020-03-26 22:47:07 +01:00
// $FlowFixMe
document.head.appendChild(script);
2020-03-26 22:47:07 +01:00
return () => {
// $FlowFixMe
document.head.removeChild(script);
// clear aniview state to allow ad reload
delete window.aniplayerPos;
delete window.storageAni;
delete window.__VIDCRUNCH_CONFIG_618bb4d28aac298191eec411__;
delete window.__player_618bb4d28aac298191eec411__;
// clean DOM elements from ad related elements
removeIfExists('[src^="https://cdn.vidcrunch.com/618bb4d28aac298191eec411.js"]');
removeIfExists('[src^="https://player.aniview.com/script/6.1/aniview.js"]');
removeIfExists('[id^="AVLoaderaniplayer_vidcrunch"]');
removeIfExists('#av_css_id');
removeIfExists('#customAniviewStyling');
};
} catch (e) {}
}
}, []);
2020-03-26 22:47:07 +01:00
const adsSignInDriver = (
<I18nMessage
tokens={{
2021-01-03 14:55:24 +01:00
log_in_to_domain: (
2020-07-14 21:08:54 +02:00
<Button
button="link"
2021-01-03 14:55:24 +01:00
label={__('Log in to %domain%', { domain: DOMAIN })}
2020-07-14 21:08:54 +02:00
navigate={`/$/${PAGES.AUTH}?redirect=${pathname}`}
/>
2020-03-26 22:47:07 +01:00
),
}}
>
Hate these? %log_in_to_domain% for an ad free experience.
2020-03-26 22:47:07 +01:00
</I18nMessage>
);
2020-01-23 17:21:36 +01:00
if (shouldShowAds && type === 'video') {
return (
2020-03-26 22:47:07 +01:00
<div
className={classnames('ads ads__claim-item', className, {
'ads__claim-item--tile': tileLayout,
2020-03-26 22:47:07 +01:00
})}
>
<div className="ad__container">
<div id={adConfig.tag} />
</div>
<div
className={classnames('ads__claim-text', {
'ads__claim-text--small': small,
})}
>
<div>Ad</div>
<p>{adsSignInDriver}</p>
</div>
2020-03-26 22:47:07 +01:00
</div>
);
2021-01-22 00:57:29 +01:00
}
2022-01-04 18:43:35 +01:00
return null;
2022-01-04 18:43:35 +01:00
}
2020-01-24 19:31:49 +01:00
export default withRouter(Ads);