本文整理匯總了TypeScript中angulartics2.Angulartics2類的典型用法代碼示例。如果您正苦於以下問題:TypeScript Angulartics2類的具體用法?TypeScript Angulartics2怎麽用?TypeScript Angulartics2使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Angulartics2類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(private angulartics2: Angulartics2) {
if (typeof (sp) === 'undefined') {
console.warn('Splunk not found');
}
this.angulartics2.pageTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.pageTrack(x.path));
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.eventTrack(x.action, x.properties));
}
示例2: constructor
constructor(private angulartics2: Angulartics2) {
if (typeof window['cmCreatePageviewTag'] !== 'function') {
console.warn('Angulartics 2 IBM Digital Analytics Plugin: eluminate.js is not loaded');
}
this.angulartics2.pageTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.pageTrack(x.path));
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.eventTrack(x.action, x.properties));
}
示例3: constructor
constructor(
private angulartics2: Angulartics2
) {
this.angulartics2.pageTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.pageTrack(x.path));
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.eventTrack(x.action, x.properties));
this.angulartics2.setUserProperties
.subscribe((x) => this.setUserProperties(x));
}
示例4: constructor
constructor(
private angulartics2: Angulartics2,
private titleService: Title,
) {
if (typeof clicky === 'undefined') {
console.warn('Angulartics 2 Clicky Plugin: clicky global not found');
}
this.angulartics2.pageTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.pageTrack(x.path));
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.eventOrGoalTrack(x.action, x.properties));
}
示例5: constructor
constructor(private angulartics2: Angulartics2) {
if (typeof (_paq) === 'undefined') {
console.warn('Piwik not found');
}
this.angulartics2.pageTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.pageTrack(x.path));
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.eventTrack(x.action, x.properties));
this.angulartics2.setUsername
.subscribe((x: string) => this.setUsername(x));
this.angulartics2.setUserProperties
.subscribe((x) => this.setUserProperties(x));
}
示例6: constructor
constructor(private angulartics2: Angulartics2) {
if (typeof _hmt === 'undefined') {
_hmt = [];
} else {
_hmt.push(['_setAutoPageview', false]);
}
this.angulartics2.pageTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.pageTrack(x.path));
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe((x) => this.eventTrack(x.action, x.properties));
this.angulartics2.setUsername
.subscribe((x: string) => this.setUsername(x));
this.angulartics2.setUserProperties
.subscribe((x) => this.setUserProperties(x));
}
示例7: constructor
constructor(private angulartics2: Angulartics2) {
this.angulartics2.eventTrack
.pipe(this.angulartics2.filterDeveloperMode())
.subscribe(x => this.eventTrack(x.action, x.properties));
}