The simplest form of React GPT ad looks like the following
import {Bling as GPT} from "react-gpt";
class Application extends React.Component {
render() {
return (
<GPT
adUnitPath="/4595/nfl.test.open"
slotSize={[728, 90]}
/>
);
}
}
adUnitPath
is a required prop and either slotSize
or sizeMapping
prop are needed to give the size information.
To enable Single Request Mode, call Bling.enableSingleRequest()
before rendering any ad.
It defaults to Asynchronous Rendering Mode
if not set.
import {Bling as GPT} from "react-gpt";
GPT.enableSingleRequest();
class Application extends React.Component {
render() {
return (
<div id="ad-1">
<GPT
adUnitPath="/4595/nfl.test.open"
slotSize={[728, 90]}
/>
</div>
<div id="ad-2">
<GPT
adUnitPath="/4595/nfl.test.open"
slotSize={[300, 250]}
/>
</div>
);
}
}
The above example will make one request to the server to render both ads and easier to ensure category exclusion.
If you pass sizeMapping
props instead of slotSize
, React GPT listens for the viewport width change and refreshes an ad when the break point is hit.
import {Bling as GPT} from "react-gpt";
class Application extends React.Component {
render() {
return (
<GPT
adUnitPath="/4595/nfl.test.open"
sizeMapping={[
{viewport: [0, 0], slot: [320, 50]},
{viewport: [750, 0], slot: [728, 90]},
{viewport: [1050, 0], slot: [1024, 120]}
]}
/>
);
}
}
React GPT by default renders an ad when its bounding box is fully inside the viewport. You can disable this setting and render an ad regardless of the position, pass renderWhenViewable={false}
as a prop.
To read more about lazy render, please see the guide.
You can render out-of-page(prestitial or interstitial) ad by passing outOfPage={true}
as a prop.
Out-of-page ad does not require either slotSize
or sizeMapping
.
import {Bling as GPT} from "react-gpt";
class Application extends React.Component {
render() {
return (
<GPT
adUnitPath="/4595/nfl.test.open"
outOfPage={true}
/>
);
}
}
Companion ad can be enabled by passing companionAdService={true}
as a prop. Once enabled and when the video ad plays using Google IMA within the same page, the React GPT ad will render the companion ad.
import {Bling as GPT} from "react-gpt";
class Application extends React.Component {
render() {
return (
<GPT
adUnitPath="/4595/nfl.test.open"
slotSize={[728, 90]}
companionAdService={true}
/>
);
}
}
It's not currently supported.
For more use cases, please see examples.