import { Component, OnInit, Input } from '@angular/core'; import { KstConfig } from '../../config/chat.config'; @Component({ selector: 'kst-file-other', template: ` {{title}} ` }) export class FileOtherComponent implements OnInit { @Input() url: string; @Input() title = ''; @Input() inChatServer = false; constructor() { } ngOnInit() { if (this.inChatServer) { this.url = KstConfig.url + this.url; } if (!this.title) { this.title = this.url; } } }