mat-menu and button in different components

别说谁变了你拦得住时间么 提交于 2019-12-23 09:58:56

问题


I have

<mat-menu #saveMenu="matMenu">...</mat-menu>

in app-save-document component and

<app-save-document></app-save-document>
<button mat-icon-button [matMenuTriggerFor]="saveMenu">

in another component.

if I have mat-menu and button with [matMenuTriggerFor] in different components, can I do something to make the button see the menu?

now I have ERROR Error: mat-menu-trigger: must pass in an mat-menu instance.


回答1:


Well, if you want to do something like this:

<button mat-button [matMenuTriggerFor]="menu">Menu</button>
<other-component [matMenu]="menu"></other-component>
<mat-menu #menu="matMenu">
  <button mat-menu-item>Item 1</button>
  <button mat-menu-item>Item 2</button>
</mat-menu>

You can code <other-component> like this:

import {Component,Input} from '@angular/core';
import {MatMenu} from '@angular/material';

@Component({
  selector: 'other-component',
  template: `
    This button is in another component:
    <button [matMenuTriggerFor]="matMenu">Click here to open menu</button>
  `,
})
export class OtherComponent {
  @Input() matMenu: MatMenu;
}

You can see it working in stackblitz: https://stackblitz.com/edit/angular-xkfdns


Another approach

Another approach is (I think this is what you want): your trigger button is inside the parent (but outside the child) and the menu itself is defined inside the child component.

Parent component:

<button mat-button [matMenuTriggerFor]="childComponentMenu?.menu">
    Menu in other component
</button>
<child-component></child-component>

export class ParentComponent {
  @ViewChild(ChildComponent) childComponentMenu: ChildComponent;
}

Child Component:

@Component({
  selector: 'child-component',
  template: `
    <mat-menu>
      <button mat-menu-item>Item 1 (inside other component)</button>
      <button mat-menu-item>Item 2 (inside other component)</button>
    </mat-menu>
  `,
})
export class ChildComponent {
  @ViewChild(MatMenu) menu: MatMenu;
}


Yet Another approach

Another approach, similar to the above one, but using template reference variables (notice the exportAs in the decorator of the child component):

Parent component:

<button mat-button [matMenuTriggerFor]="x.menu">
    Menu in other component
</button>
<child-component #x="menuInOtherComponent"></child-component>

export class ParentComponent {
}

Child Component:

@Component({
  selector: 'child-component',
  template: `
    <mat-menu>
      <button mat-menu-item>Item 1 (inside other component)</button>
      <button mat-menu-item>Item 2 (inside other component)</button>
    </mat-menu>
  `,
  exportAs: 'menuInOtherComponent',
})
export class ChildComponent {
  @ViewChild(MatMenu) menu: MatMenu;
}

Stackblitz: https://stackblitz.com/edit/angular-xkfdns-92t9sn




回答2:


Here's another solution using ng-content. That's my preferred way to go.

my-custom-menu-component html:

<div [matMenuTriggerFor]="menu">
  <ng-content></ng-content>
</div>

<mat-menu #menu="matMenu">
  menu content
</mat-menu>

parent-component html:

<my-custom-menu-component>
  <button>click me</button>
<my-custom-menu-component>


来源:https://stackoverflow.com/questions/48343082/mat-menu-and-button-in-different-components

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!