Override/extend third-party component's template

后端 未结 2 1068
清酒与你
清酒与你 2021-02-19 03:08

I am currently importing a third party component. For my use case I need to override that specific component template.

Since this is a third party component, and import

相关标签:
2条回答
  • 2021-02-19 03:47

    After playing around with it. A simple extend will work for my use case.

    Basically I created a class that extends the thirdPartyClass.

    What happens here is that I am overwriting the template for the thirdPartyClass by creating my own selector and importing only the class.

    Something like this:

    import {component} from 'angular2/core';
    import {thirdPartyClass} from 'example/example';
    
    @Component({
      selector: 'my-selector',
      template: '<div>my template</div>'
    })
    
    export class MyOwnComponent extends thirdPartyClass {
      constructor() {
         super()
      }
    }
    

    Notes:

    • If you are using this method, don't forget to import any pipes that are used in the thirdPartyClass template.
    • If the functionality is updated in the thirdPartyClass that depends upon the template, you'll need to update by hand.
    • I prefered this solution to refering to the ReflectMetaData because its a simple extend instead of accessing the annotations and force changing it.
    0 讨论(0)
  • 2021-02-19 03:48

    You can use Reflect to change metadata of component. Here's the super simple example:

    import {Component} from 'angular2/core'
    
    @Component({
      selector: 'thing',
      template: `Hi!`,
    })
    export class Thing {}
    
    annotations = Reflect.getMetadata('annotations', Thing);
    for (let i = 0; i < annotations.length; i += 1) {
      if (annotations[i].constructor.name === 'ComponentMetadata') {
        annotations[i].template = 'Ho!';
        break;
      }
    }
    
    @Component({
      selector: 'my-app',
      directives: [Thing],
      template: `<thing></thing>`,
    })
    export class App {}
    

    Just make sure you update template before injecting it into parent component. Also check which metadata you need to access, might be DirectiveMetadata in your case.

    0 讨论(0)
提交回复
热议问题