const NativeAd : React.FC = () => {
const [adData, setAdData] = useState({
ad: '',
headline: '',
body: '',
profile: {
displayName: '',
displayLogo: '',
},
destinationURL: '',
});
useEffect(() => {
adrop.initialize('YOUR_APP_KEY');
// If you add onClick function, destination URL will not be opened, and you must handle it.
// onClick 핸들러를 자유롭게 핸들링 하기 위한 코드입니다.
// 콘솔에서 지정된 destinationURL 을 사용하시려면, 해당 필드는 사용하지 말아주세요.
// onClick 핸들러를 정의하시면, 콘솔에서 지정된 destinationURL 오픈이 되지 않고, 별도로 구현해 주셔야 합니다.
// adrop.onClick = (unitId: string, link: string) => {
// console.log('click callback', unitId, link)
// }
}, [])
const request = useCallback(
async () => {
const resp = await adrop.request('YOUR_UNIT_ID or PUBLIC_TEST_UNIT_ID_375_80');
setAdData({
ad: resp.ad,
headline: resp.headline,
body: resp.body,
profile: {
displayName: resp.profile.displayName,
displayLogo: resp.profile.displayName,
},
destinationURL: resp.destinationURL,
});
}, []);
const {ad, headline, body, profile} = adData;
return (
<div>
<button onClick={request}>
Request Native Ad (375_80)
</button>
<div className="row">
<img src={profile.displayLogo} alt="advertiser Logo" className="logo" />
<p className="advertiser">{profile.displayName}</p>
</div>
<div dangerouslySetInnerHTML={{ __html: ad }} />
<div className="row">
<div className="headline">{headline}</div>
<div className="body">{body}</div>
</div>
</div>
)
};