Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mat-menu and button in different components

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.

like image 747
tatol Avatar asked Jan 19 '18 14:01

tatol


1 Answers

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 the above example working at this stackblitz demo.


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, {static: true}) 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, {static: true}) menu: MatMenu;
}

Stackblitz demo

like image 77
julianobrasil Avatar answered Sep 21 '22 15:09

julianobrasil