Angular 2 Material 2 Sidenav Toolbar collapse like Navigation Drawer

前端 未结 2 1444
自闭症患者
自闭症患者 2021-02-09 04:59

I have a sidenav and a nested toolbar
toolbar.html


    

        
相关标签:
2条回答
  • 2021-02-09 05:34

    This can be achieved using a simple css hack. We can call methods increase() and decrease() that changes the width of sidenav based on some event like mouseenter and mouseleave or in your case onClick of "toolbar-menu-button"

    <md-sidenav #sidenav mode="side" class="example-sidenav" [ngStyle]="{ 'width.em': sidenavWidth }" opened="true" (mouseover)="increase()"   (mouseleave)="decrease()">
    

    This will incerese the width of sidenav when we point on sidenav and decrease the width when we point the mouse pointer at some other place.

      increase(){
        this.sidenavWidth = 15;
      }
      decrease(){
        this.sidenavWidth = 4;
      }
    

    Have a look at this demo :- https://mini-sidenav.firebaseapp.com/

    and the github repo :- https://github.com/Ravi-Rajpurohit/mini-md-sidenav

    I hope this helps :-)

    0 讨论(0)
  • 2021-02-09 05:39

    This problem is little unusual. Since the button from toolbar is controlling the open and close state, I had to add an EventListener to pass the state of sidenav whenever the button is clicked.

    Based on the event flag, I added some ngStyle that will maintain the width of sidenav. Note that, the sidenav is always open now [add property opened="true"], since it's always visible. I also ended up using the emitted flag from toolbar to use for 'Sidenav' title. You can remove it if you need to show the partial 'Sid'.

    Also, since the sidenav is always open, I added custom css to animate the change of width.

    Plunker demo

    toolbar.component.ts:

    export class ToolbarComponent implements OnInit {
    
      shortnav = true;
    
      @Input() sidenav;
    
      @Output()
      change: EventEmitter<booelan> = new EventEmitter<boolean>();
    
      constructor() { 
        console.log(this.sidenav);
      }
    
      ngOnInit() {
      }
    
      toggle(){
        this.shortnav = !this.shortnav;
        console.log("shortnav: " + this.shortnav)
        this.change.emit(this.shortnav);
      }
    
    }
    

    toolbar.component.html:

    <button md-button class="toolbar-menu-button"
              (click)="toggle(); isCollapsed = !isCollapsed">
    

    sidenav.component.ts:

    export class SidenavOverviewExample {
    
      showSidenavTitle = false;
      sidenavWidth = 2.75;
    
      changeWidth(showShortNav){
        if(showShortNav){
          this.sidenavWidth = 2.5;
          this.showSidenavTitle = false;
        }
        else{
          this.sidenavWidth = 13;
          this.showSidenavTitle = true;
        }
      }
    }
    

    sidenav.component.html:

    <md-sidenav-container fullscreen>
        <md-sidenav #sidenav mode="side"   
                    color="primary" 
                    opened="true"
                    [ngStyle]="{ 'width.em': sidenavWidth }"
                    class="animate-sidenav">
         <md-toolbar color="primary">
           <span *ngIf="showSidenavTitle">Sidenav</span>
         </md-toolbar>
            <button md-button class="sidenav-link" (click)="sidenav.close()">
              <md-icon>home</md-icon><span class="title"> HOME</span>
              </button>
              <button md-button class="sidenav-link" (click)="sidenav.close()">
                <md-icon>home</md-icon><span class="title"> HOME</span>
              </button>
          </md-sidenav>
    
          <app-toolbar [sidenav]="sidenav" (change)="changeWidth($event)"></app-toolbar>
    
     </md-sidenav-container>
    

    sidenav.component.css:

    .mat-sidenav-transition .mat-sidenav{
      /* custom animation to grow and shrink width */
      -webkit-transition: width .3s !important; /* For Safari 3.1 to 6.0 */
      transition: width .3s !important;
    }
    

    Hope this helps you :)

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