ad adjustments per vidcrunch
confirming what to do with the mobile tag...
This commit is contained in:
parent
e4658bb044
commit
2eadd986b4
1 changed files with 11 additions and 24 deletions
|
@ -13,11 +13,8 @@ const ADS_TAG = 'vidcrunchJS537102317';
|
||||||
const IOS_ADS_URL =
|
const IOS_ADS_URL =
|
||||||
'https://cdn.vidcrunch.com/integrations/618bb4d28aac298191eec411/Lbry_Odysee.com_Mobile_Floating_DFP_Rev70_1611.js';
|
'https://cdn.vidcrunch.com/integrations/618bb4d28aac298191eec411/Lbry_Odysee.com_Mobile_Floating_DFP_Rev70_1611.js';
|
||||||
const IOS_ADS_TAG = 'vidcrunchJS199212779';
|
const IOS_ADS_TAG = 'vidcrunchJS199212779';
|
||||||
const HOMEPAGE_ADS_URL =
|
const EU_AD_URL =
|
||||||
'https://cdn.vidcrunch.com/integrations/618bb4d28aac298191eec411/Lbry_Odysee.com_Responsive_Floating_300x169_DFP_Rev70_1211.js';
|
'https://tg1.vidcrunch.com/api/adserver/spt?AV_TAGID=61dff05c599f1e20b01085d4&AV_PUBLISHERID=6182c8993c8ae776bd5635e9';
|
||||||
const HOMEPAGE_ADS_TAG = 'vidcrunchJS330442776';
|
|
||||||
|
|
||||||
const EU_AD_URL = 'https://tg1.vidcrunch.com/api/adserver/spt?AV_TAGID=61dff05c599f1e20b01085d4&AV_PUBLISHERID=6182c8993c8ae776bd5635e9';
|
|
||||||
const EU_AD_TAG = 'AV61dff05c599f1e20b01085d4';
|
const EU_AD_TAG = 'AV61dff05c599f1e20b01085d4';
|
||||||
|
|
||||||
const IS_IOS =
|
const IS_IOS =
|
||||||
|
@ -66,25 +63,15 @@ function Ads(props: Props) {
|
||||||
// load ad and tags here
|
// load ad and tags here
|
||||||
let scriptUrlToUse;
|
let scriptUrlToUse;
|
||||||
let tagNameToUse;
|
let tagNameToUse;
|
||||||
if (type === 'video') {
|
if (isInEu) {
|
||||||
if (isInEu) {
|
tagNameToUse = EU_AD_TAG;
|
||||||
tagNameToUse = EU_AD_TAG;
|
scriptUrlToUse = EU_AD_URL;
|
||||||
scriptUrlToUse = EU_AD_URL;
|
} else if (IS_IOS) {
|
||||||
} else if (IS_IOS) {
|
tagNameToUse = IOS_ADS_TAG;
|
||||||
tagNameToUse = IOS_ADS_TAG;
|
scriptUrlToUse = IOS_ADS_URL;
|
||||||
scriptUrlToUse = IOS_ADS_URL;
|
} else {
|
||||||
} else {
|
tagNameToUse = ADS_TAG;
|
||||||
tagNameToUse = ADS_TAG;
|
scriptUrlToUse = ADS_URL;
|
||||||
scriptUrlToUse = ADS_URL;
|
|
||||||
}
|
|
||||||
} else if (type === 'homepage') {
|
|
||||||
if (isInEu) {
|
|
||||||
tagNameToUse = EU_AD_TAG;
|
|
||||||
scriptUrlToUse = EU_AD_URL;
|
|
||||||
} else {
|
|
||||||
tagNameToUse = HOMEPAGE_ADS_TAG;
|
|
||||||
scriptUrlToUse = HOMEPAGE_ADS_URL;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// add script to DOM
|
// add script to DOM
|
||||||
|
|
Loading…
Reference in a new issue