Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google AdSense ads in Angular 2 components?

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?

like image 490
Corey Ogburn Avatar asked Jun 01 '16 23:06

Corey Ogburn


3 Answers

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:

<ng2-adsense
  [adClient]="'ca-pub-7640562161899788'"
  [adSlot]="7259870550">
</ng2-adsense>

After you install the module, you need to import it and add it to your NgModule:

import { AdsenseModule } from 'ng2-adsense';
@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    AdsenseModule, // <--- Add to imports
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

And add this standard adsense code in your index.html:

<script async src=//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js></script>
like image 150
Nirgn Avatar answered Sep 22 '22 18:09

Nirgn


This is working for me:

TopBannerComponent.ts ==>

    import {Component,OnInit,AfterViewInit} from '@angular/core'

    @Component({
      moduleId: module.id,
      selector: 'google-adsense',
      template: ` <div>
            <ins class="adsbygoogle"
                style="display:block"
                data-ad-client="ca-pub-XXXXXXXXXXXXXX"
                data-ad-slot="8184819393"
                data-ad-format="auto"></ins>
             </div>   
                <br>            
      `,
   
    })

    export class TopBannerComponent implements AfterViewInit {
  
      constructor() {    
      } 
  
      ngAfterViewInit() {
         setTimeout(()=>{
          try{
            (window['adsbygoogle'] = window['adsbygoogle'] || []).push({});
          }catch(e){
            console.error("error");
          }
        },2000);
     }     
    }

Add this in your html where you want your ad to appear

<google-adsense></google-adsense>

Add google adsense script in your main html file

 <script async src=//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js></script>
like image 17
Maayan Hope Avatar answered Oct 17 '22 18:10

Maayan Hope


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:

// ad component
import { Component, AfterViewInit } 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 implements AfterViewInit {

  ngAfterViewInit() {
    try {
      (adsbygoogle = window.adsbygoogle || []).push({});
    } catch (e) {}
  }
}

// ad.html
<div class="demo-card-wide mdl-card mdl-shadow--2dp ad-card">
  <div class="mdl-card__supporting-text">
    <ins class="adsbygoogle" style="display:inline-block;width:330px;height:120px" data-ad-client="my_client_number" data-ad-slot="my_ad_slot_number"></ins>
  </div>
</div>

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 array adsbygoogle 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:

declare interface Window {
  adsbygoogle: any[];
}

declare var adsbygoogle: any[];

These will make Typescript accept the (adsbygoogle = window.adsbygoogle || []).push({}); line in the ad component.

like image 12
Corey Ogburn Avatar answered Oct 17 '22 18:10

Corey Ogburn