2017-02-22 18:13:21 +00:00
|
|
|
// #docregion
|
2018-02-12 16:34:38 -05:00
|
|
|
import { Component, Input, OnInit, ViewChild, ComponentFactoryResolver, OnDestroy } from '@angular/core';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
|
|
|
import { AdDirective } from './ad.directive';
|
2020-07-30 13:03:09 +03:00
|
|
|
import { AdItem } from './ad-item';
|
2017-02-22 18:13:21 +00:00
|
|
|
import { AdComponent } from './ad.component';
|
|
|
|
|
|
|
|
@Component({
|
2018-02-12 16:34:38 -05:00
|
|
|
selector: 'app-ad-banner',
|
2017-02-22 18:13:21 +00:00
|
|
|
// #docregion ad-host
|
|
|
|
template: `
|
2018-11-21 17:07:04 +01:00
|
|
|
<div class="ad-banner-example">
|
2017-02-22 18:13:21 +00:00
|
|
|
<h3>Advertisements</h3>
|
2020-07-30 13:03:21 +03:00
|
|
|
<ng-template adHost></ng-template>
|
2017-02-22 18:13:21 +00:00
|
|
|
</div>
|
|
|
|
`
|
2017-04-01 01:57:13 +02:00
|
|
|
// #enddocregion ad-host
|
2017-02-22 18:13:21 +00:00
|
|
|
})
|
2017-04-01 01:57:13 +02:00
|
|
|
// #docregion class
|
2018-02-12 16:34:38 -05:00
|
|
|
export class AdBannerComponent implements OnInit, OnDestroy {
|
2017-02-22 18:13:21 +00:00
|
|
|
@Input() ads: AdItem[];
|
2018-04-14 02:36:42 -07:00
|
|
|
currentAdIndex = -1;
|
2019-05-23 11:31:10 -07:00
|
|
|
@ViewChild(AdDirective, {static: true}) adHost: AdDirective;
|
2017-02-22 18:13:21 +00:00
|
|
|
interval: any;
|
|
|
|
|
2017-06-17 01:58:40 +02:00
|
|
|
constructor(private componentFactoryResolver: ComponentFactoryResolver) { }
|
2017-02-22 18:13:21 +00:00
|
|
|
|
2018-02-12 16:34:38 -05:00
|
|
|
ngOnInit() {
|
2017-02-22 18:13:21 +00:00
|
|
|
this.loadComponent();
|
|
|
|
this.getAds();
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnDestroy() {
|
|
|
|
clearInterval(this.interval);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadComponent() {
|
2018-02-12 16:34:38 -05:00
|
|
|
this.currentAdIndex = (this.currentAdIndex + 1) % this.ads.length;
|
2019-06-06 09:23:31 +02:00
|
|
|
const adItem = this.ads[this.currentAdIndex];
|
2017-02-22 18:13:21 +00:00
|
|
|
|
2019-06-06 09:23:31 +02:00
|
|
|
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(adItem.component);
|
2017-02-22 18:13:21 +00:00
|
|
|
|
2019-06-06 09:23:31 +02:00
|
|
|
const viewContainerRef = this.adHost.viewContainerRef;
|
2017-02-22 18:13:21 +00:00
|
|
|
viewContainerRef.clear();
|
|
|
|
|
2020-07-30 13:03:15 +03:00
|
|
|
const componentRef = viewContainerRef.createComponent<AdComponent>(componentFactory);
|
|
|
|
componentRef.instance.data = adItem.data;
|
2017-02-22 18:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getAds() {
|
|
|
|
this.interval = setInterval(() => {
|
|
|
|
this.loadComponent();
|
|
|
|
}, 3000);
|
|
|
|
}
|
|
|
|
}
|
2017-04-01 01:57:13 +02:00
|
|
|
// #enddocregion class
|