I have an issue where the sidenav and header are different components sharing a service. This appears to be working when inspecting the sidenav element i can see the toggling to open and close. The problem i am having with this is no sidenav actually appears.
component file:
import { Component, OnInit, ViewChild } from '@angular/core';
import { MdSidenav } from '@angular/material';
import { SidenavToggleService } from './shared/sidenavToggle.service';
@Component({
selector: 'app-sidenav',
templateUrl: './sidenav.component.html',
styleUrls: ['./sidenav.component.css']
})
export class SidenavComponent implements OnInit {
@ViewChild('sidenav') sidenav: MdSidenav;
/**
* Constructor of the class.
* @param {sidenavService} SidenavToggleService
*/
constructor(public sidenavService: SidenavToggleService) {}
/**
* OnInit life cycle hook
*/
public ngOnInit(): void {
this.sidenavService.setSidenav(this.sidenav);
}
}
html file:
<md-sidenav-container>
<md-sidenav #sidenav mode="over">
testerer
</md-sidenav>
</md-sidenav-container>
service file:
import { Injectable } from '@angular/core';
import { MdSidenav, MdSidenavToggleResult } from '@angular/material';
@Injectable()
export class SidenavToggleService {
private sidenav: MdSidenav;
/**
* Setter for sidenav.
*
* @param {MdSidenav} sidenav
*/
public setSidenav(sidenav: MdSidenav) {
this.sidenav = sidenav;
}
/**
* Open this sidenav, and return a Promise that will resolve when it's fully opened (or get rejected if it didn't).
*
* @returns Promise<MdSidenavToggleResult>
*/
public open(): Promise<MdSidenavToggleResult> {
return this.sidenav.open();
}
/**
* Close this sidenav, and return a Promise that will resolve when it's fully closed (or get rejected if it didn't).
*
* @returns Promise<MdSidenavToggleResult>
*/
public close(): Promise<MdSidenavToggleResult> {
return this.sidenav.close();
}
/**
* Toggle this sidenav. This is equivalent to calling open() when it's already opened, or close() when it's closed.
*
* @param {boolean} isOpen Whether the sidenav should be open.
*
* @returns {Promise<MdSidenavToggleResult>}
*/
public toggle(isOpen?: boolean): Promise<MdSidenavToggleResult> {
console.log('uh');
return this.sidenav.toggle(isOpen);
}
}
EDIT: Added the service I am using
Please set fixedInViewport in sidenav, will fixed the issue
<md-sidenav #sidenav mode="over" [fixedInViewport]="true" >
<!-- content -->
</md-sidenav>
I had to wrap the toolbar component in sidenav-container......
<div >
<md-sidenav-container>
<app-header></app-header>
<app-sidenav></app-sidenav>
</md-sidenav-container>
test
</div>
why i have to do that i have no idea but it works now. I have to now work on position etc.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With