import {Component, Input} from '@angular/core'; import {HelperFunctions} from "../../utils/HelperFunctions.class"; @Component({ selector: 'publishedIn', template: `
Published in
{{key}} [{{i+1}}] {{key}} {{key}}
View less
...
View more
` }) export class PublishedInComponent { //key is name @Input() publishedIn: Map; public showAll: boolean = false; constructor () {} ngOnInit() {} public scroll() { HelperFunctions.scroll(); } public getKeys( map) { return Array.from(map.keys()); } }