2020-11-04 18:01:04 +00:00
|
|
|
import { Tag } from './websetup.classes.tag';
|
|
|
|
import { JsonLdTag } from './websetup.classes.tag.jsonldtag';
|
|
|
|
import { OpengraphTag } from './websetup.classes.tag.opengraphtag';
|
|
|
|
import { TagManager } from './websetup.classes.tagmanager';
|
|
|
|
import * as plugins from './websetup.plugins';
|
|
|
|
|
|
|
|
export type TBaseLevelType = 'global' | 'base' | 'subpage';
|
|
|
|
|
|
|
|
export class TagLevel {
|
|
|
|
public tagManagerRef: TagManager;
|
2020-11-04 18:09:07 +00:00
|
|
|
|
2020-11-04 18:01:04 +00:00
|
|
|
public title: string;
|
|
|
|
public type: TBaseLevelType;
|
|
|
|
public tags: Tag[] = [];
|
|
|
|
|
|
|
|
constructor(tagManagerRefArg: TagManager, levelType: TBaseLevelType) {
|
|
|
|
this.tagManagerRef = tagManagerRefArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public addTag(tagArg: Tag) {
|
|
|
|
this.tags.push(tagArg);
|
|
|
|
}
|
|
|
|
|
2020-11-04 18:09:07 +00:00
|
|
|
public async addCompanyInfo(companyDataArg: plugins.tsclass.business.ICompany) {
|
2020-11-04 18:01:04 +00:00
|
|
|
this.addTag(JsonLdTag.createCompanyLd(companyDataArg));
|
2020-11-04 18:09:07 +00:00
|
|
|
|
2020-11-04 18:01:04 +00:00
|
|
|
// lets care about open graph
|
|
|
|
this.addTag(new OpengraphTag('og:type', 'business.business'));
|
|
|
|
this.addTag(new OpengraphTag('og:title', companyDataArg.name));
|
|
|
|
this.addTag(new OpengraphTag('og:url', companyDataArg.contact.website));
|
|
|
|
this.addTag(new OpengraphTag('og:image', companyDataArg.contact.logoUrl));
|
|
|
|
this.addTag(
|
|
|
|
new OpengraphTag(
|
|
|
|
'business:contact_data:street_address',
|
|
|
|
`${companyDataArg.contact.address.streetName} ${companyDataArg.contact.address.houseNumber}`
|
|
|
|
)
|
|
|
|
);
|
|
|
|
this.addTag(
|
2020-11-04 18:09:07 +00:00
|
|
|
new OpengraphTag('business:contact_data:locality', companyDataArg.contact.address.postalCode)
|
2020-11-04 18:01:04 +00:00
|
|
|
);
|
|
|
|
this.addTag(
|
|
|
|
new OpengraphTag('business:contact_data:region', companyDataArg.contact.address.city)
|
|
|
|
);
|
|
|
|
this.addTag(
|
|
|
|
new OpengraphTag(
|
|
|
|
'business:contact_data:postal_code',
|
|
|
|
companyDataArg.contact.address.postalCode
|
|
|
|
)
|
|
|
|
);
|
|
|
|
this.addTag(
|
2020-11-04 18:09:07 +00:00
|
|
|
new OpengraphTag('business:contact_data:country_name', companyDataArg.contact.address.country)
|
2020-11-04 18:01:04 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-04 18:09:07 +00:00
|
|
|
public addPostInfo() {}
|
|
|
|
|
2020-11-04 18:01:04 +00:00
|
|
|
public async enable() {
|
|
|
|
if (this.title) {
|
|
|
|
document.title = this.title;
|
|
|
|
}
|
|
|
|
for (const tagArg of this.tags) {
|
|
|
|
tagArg.appendToDom();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async disable() {
|
|
|
|
for (const tagArg of this.tags) {
|
|
|
|
tagArg.removeFromDom();
|
|
|
|
}
|
|
|
|
}
|
2020-11-04 18:09:07 +00:00
|
|
|
}
|