Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is an example of a material design angular2/4 menu with nested dropdown options like angular1?

I really want to incorporate angular2 material, noticed the following menu example:

https://material.angularjs.org/1.1.4/demo/menuBar

This is a beauty: http://codepen.io/anon/pen/zrdQwP

I like how you can have nested menus, but for the Angular 2/4 demo, all you see is this:

https://material.angular.io/components/component/menu

There is no example with nested menus! Is this possible with Angular2 + Material? If so, can someone demonstrate how to use this? Or is this just not possible? Seems fishy if Angular 2/4 can't support this while Angular 1.x can...

like image 956
Rolando Avatar asked May 10 '17 04:05

Rolando


1 Answers

Update:

This feature was added in 2.0.0-beta.10 découpage-panjandrum

Example

Previous version:

It is planned in future https://github.com/angular/material2/issues/1429

But now i suspect it is possible. Here is my Plunker Material2 Menu Example that demonstrates such menu

enter image description here Template might look like this:

<ng-container *ngFor="let item of items">
  <button md-button [mdMenuTriggerFor]="menu" #trigger="mdMenuTrigger" [attr.data-level]="1" (mouseenter)="openMenu(trigger, 1)">
    {{item.text}}
  </button>
  <md-menu class="custom-menu" #menu="mdMenu" [overlapTrigger]="false" (close)="closeMenu()" xPosition="after">
    <ng-container *ngTemplateOutlet="subMenu; context: { $implicit: item.items, level: 2 }"></ng-container>
  </md-menu>
</ng-container>

<ng-template #subMenu let-items let-level="level">
  <ng-container *ngFor="let item of items">
    <ng-container *ngIf="item.items && item.items.length else simpleTmpl">
      <button *ngIf="!item.divider" md-menu-item [disabled]="item.disabled"
              [mdMenuTriggerFor]="menu"
              #trigger="mdMenuTrigger"
              [attr.data-level]="level"
              (mouseenter)="openMenu(trigger, level);" (click)="$event.stopPropagation()">
        <span>{{item.text}}</span>
        <span *ngIf="item.extraText">{{item.extraText}}</span>
        <md-icon *ngIf="item.icon">{{item.icon}}</md-icon>
      </button>
      <md-menu class="sub-menu" #menu="mdMenu" [overlapTrigger]="false" xPosition="before" >
        <ng-container *ngTemplateOutlet="subMenu; context: { $implicit: item.items || [], level: level + 1 }"></ng-container>
      </md-menu>
      <md-divider *ngIf="item.divider" class="mat-divider"></md-divider>
    </ng-container>
    <ng-template #simpleTmpl>
      <button *ngIf="!item.divider" md-menu-item [disabled]="item.disabled" (click)="closeMenu()">
        <span>{{item.text}}</span>
        <span *ngIf="item.extraText">{{item.extraText}}</span>
      </button>
      <md-divider *ngIf="item.divider" class="mat-divider"></md-divider>
    </ng-template>
  </ng-container>
</ng-template>

You need only to declare items definitions:

menuItems = [
  {
    text: 'File',
    items: [
      {
        text: 'Share'
      },
      {
        text: 'New',
        icon: 'arrow_right',
        items: [
          {
            text: 'Document'
          },
          {
            text: 'Form'
          }
        ]
      },
      {
        text: 'Print',
        extraText: 'Ctrl+P'
      }
    ]
  },
  {
    text: 'Edit',
  }
];
like image 75
yurzui Avatar answered Sep 24 '22 14:09

yurzui