fix(core): update

This commit is contained in:
2023-05-08 10:07:33 +02:00
parent e4f8e53066
commit bd8585aa42
3 changed files with 12 additions and 1 deletions

View File

@@ -11,6 +11,16 @@ export class OpengraphTag extends Tag {
return tagArray;
}
public static createProductOgTags(productArg: plugins.tsclass.saas.IProduct) {
const tagArray: OpengraphTag[] = [];
tagArray.push(new OpengraphTag('og:url', globalThis.location.href));
tagArray.push(new OpengraphTag('og:title', productArg.name));
tagArray.push(new OpengraphTag('og:site_name', productArg.name))
tagArray.push(new OpengraphTag('og:description', productArg.description));
tagArray.push(new OpengraphTag('og:image', productArg.logoLink));
return tagArray;
}
constructor(propertyNameArg: string, contentArg: string) {
super();
const openGraphElement = document.createElement('meta');