I'm trying to load some Responsive ads in an AdComponent
in my app. The component is dead simple:
import { Component } from '@angular/core';
import { FORM_DIRECTIVES, CORE_DIRECTIVES } from '@angular/common';
@Component({
selector: 'ad',
templateUrl: 'app/views/ad.html',
directives: [ FORM_DIRECTIVES, CORE_DIRECTIVES ]
})
export class AdComponent {}
ad.html
:
<div class="demo-card-wide mdl-card mdl-shadow--2dp ad-card">
<div class="mdl-card__supporting-text">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-0123456789"
data-ad-slot="0123456789"
data-ad-format="rectangle, horizontal"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
I'm finding that these script tags don't make it into the UI and this seems to be a purposeful decision.
I might be able to move around some of the code such as the js reference into the head of my index.html and the window.adsbygoogle
part into the component constructor but I'm not sure if these kinds of modifications are allowed or if there's a better alternative to get these ads to work in Angular 2.
Does anybody have any experience with Google's Adsense ads working in Angular 2? Is there a different, proper way to do this?
This is working for me:
TopBannerComponent.ts ==>
Add this in your html where you want your ad to appear
Add google adsense script in your main html file
There is a module that works very well for me: ng2-adsense.
If you'll choose to use it, your HTML code will look something like this:
After you install the module, you need to import it and add it to your NgModule:
And add this standard adsense code in your index.html:
Here's what I've come up with and have working. I admit it may be stretching the "don't modify our code" rule of adsense, but I am doing my best to keep the heart of the code doing the same thing it's supposed to be doing:
The design of my website has ads in Material Design Lite cards so that's the 2 outer divs in the view. The
<ins>
tag is cut and paste exactly the same tag adsense gave me.I used
AfterViewInit
because it seems that adsense watches the arrayadsbygoogle
to know when to scan for a new ad in the DOM. You don't want to modify this array until the DOM has the<ins>
tag.I wrapped the line in a try/catch because testing with an ad blocker showed that the component would throw an error when the blocker was turned on. In traditional pages the error would happen without side effects. In an Angular 2 page it stops the change detection.
I have done my best to keep with the spirit of what the adsense provided code is supposed to do and how it is intended to behave. My goal is to bring their out-of-date requirements into a functional Angular 2 application. This currently works just fine in Angular 2's RC4 across all browsers.
Here's hoping they don't see it as TOS break...
To get Typescript to agree with all this you'll need to add a few lines to a .d.ts file:
These will make Typescript accept the
(adsbygoogle = window.adsbygoogle || []).push({});
line in the ad component.