Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
287 views
in Technique[技术] by (71.8m points)

angular reuse component with different material styles

I have a component with a button that opens contact form. I have to reuse the same button in different places with different material button styles like mat-raised-button, mat-icon-button.etc., But i could not figure out how? It would be great if someone could help.

contact.component.ts

import { Component, OnInit } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { ContactFormComponent } from './contact-form.component';

@Component({
  selector: 'sm-contact',
  template: `
  <button (click)="openDialog()"><ng-content></ng-content></button>
  `,
  styles: [
    'button {border-radius: 24px;}'
  ]
})
export class ContactComponent implements OnInit {

  constructor(public contact: MatDialog) { }

  ngOnInit(): void {
  }

  openDialog(){
    this.contact.open(ContactFormComponent, {
      panelClass: 'mat-elevation-12'
    });
  };

}

and in template

    <sm-contact mat-icon-button class="nav-button" aria-label="Contact" fxHide.xs>
        <mat-icon>headset_mic</mat-icon>
    </sm-contact>
    <sm-contact mat-stroked-button class="nav-button" aria-label="Contact" fxHide.gt-xs>
        Contact
        <mat-icon>headset_mic</mat-icon>
    </sm-contact>
question from:https://stackoverflow.com/questions/65559520/angular-reuse-component-with-different-material-styles

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...