I want the component to set the templateUrl with a variable, but it doesn't work.
@Component({
    selector: 'article',
    templateUrl: '{{article.html}}',
    styleUrls: ['styles/stylesheets/article.component.css']
})
export class ArticleComponent implements OnInit {
    constructor(private route: ActivatedRoute, private articleService: ArticleService) { }
    articleArray = this.articleService.getArticles();
    article: Article;
    ngOnInit(): void {
        this.route.params.forEach((params: Params) => {
            let headline = params['headline'];
            this.article = this.articleService.getArticle(headline)
        });
    }
}
Every where I look, I can only see solutions for Angular 1.X, It's really frustrating. I looked into the browser console and figured out that {{article.html}} isn't even resolving. It's reading as it is. It works totally fine when I set the path myself, so I know that the problem isn't anywhere but here.
I think you should use dynamic component loading to do that.
Let's say we have a json file:
{
    "title": "My first article",
    "html": "app/articles/first.html"
}
We might create HtmlOutlet directive that will create component dynamicallу with desired templateUrl:
@Directive({
  selector: 'html-outlet' 
})
export class HtmlOutlet {
  @Input() html: string;
  constructor(private vcRef: ViewContainerRef, private compiler: Compiler) {}
  ngOnChanges() {
    const html = this.html;
    if (!html) return;
    @Component({
      selector: 'dynamic-comp',
      templateUrl: html
    })
    class DynamicHtmlComponent  { };
    @NgModule({
      imports: [CommonModule],
      declarations: [DynamicHtmlComponent]
    })
    class DynamicHtmlModule {}
    this.compiler.compileModuleAndAllComponentsAsync(DynamicHtmlModule)
      .then(factory => {
        const compFactory = factory.componentFactories
               .find(x => x.componentType === DynamicHtmlComponent);
        const cmpRef = this.vcRef.createComponent(compFactory, 0);
        cmpRef.instance.prop = 'test';
        cmpRef.instance.outputChange.subscribe(()=>...);;
    });
  }
}
And then use it like:
<html-outlet [html]="article?.html">
Where html is path to article html
See more details in this Plunkr
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With