我正在HeaderComponent
内的Angular Material中使用MatMenu。我只需要在某些条件(方法)下打开菜单,然后在ProductDetailComponent
上调用此方法即可。但是,此方法仅在视图加载后在ngAfterViewInit()
内部起作用。
我找到了一种从ProductDetailComponent
到HeaderComponent
进行交流的方法,但是有一种儿童与父母之间的关系才能到达各个组成部分。从HeaderComponent
中调用AppComponent
。
这是AppComponent
<my-header [openMenu]="clickBehavior"></my-header>
<router-outlet></router-outlet> <!-- ProductComponent -->
ProductComponent
<router-outlet></router-outlet> <!-- ProductDetailComponent -->
ProductDetail组件
export class ProductComponent {
clickBehavior = new BehaviorSubject(null);
click() {
this.clickBehavior.next(1);
}
}
ProductDetail标记
<!-- i need to move it to app component
<my-header [openMenu]="clickBehavior"></my-header>
-->
<div>
<button (click)="click()">Click</button>
</div>
标题组件
export class HeaderComponent implements AfterViewInit {
@ViewChild('trigger') trigger: MatMenuTrigger;
@Input() openMenu: Observable<any>;
ngAfterViewInit() {
this.openMenu.subscribe(value => {
if (value) {
this.trigger.openMenu();
}
});
}
}
标题标记
<button mat-button
[matMenuTriggerFor]="menu"
#trigger="matMenuTrigger">Menu
</button>
<mat-menu #menu="matMenu">
<button mat-menu-item>Item 1</button>
<button mat-menu-item>Item 2</button>
</mat-menu>
答案 0 :(得分:1)
您可以通过使用共享服务并将其注入到需要的位置来实现此目的。
设置共享服务,我放置获取,设置和切换菜单状态的方法。
SharedService.ts
import { Injectable } from '@angular/core';
@Injectable()
export class SharedService {
//The current menu state
private showMenu_ = false;
//get the current menu state
get showMenu() {
return showMenu_;
}
//set the menu state
set showMenu(state: boolean) {
this.showMenu_ = state;
}
//toggle the menu
public toggleMenu() {
this.showMenu_ = !this.showMenu;
}
}
将服务注入appComponent,以便我们可以使用它控制菜单状态。
appComponent.ts
import { SharedService } from 'PATH TO SHARED SERVICE';
...
constructor(public sharedService: SharedService){}
根据sharedService中设置的状态将my-header设置为显示/隐藏。
appComponent.html
<my-header *ngIf="sharedService.showMenu"></my-header>
将服务注入到其他任何组件/页面中,以更改菜单的状态。 在这种情况下为ProductComponent.ts。
ProductComponent.ts
import { SharedService } from 'PATH TO SHARED SERVICE';
...
constructor(public sharedService: SharedService){}
ProductComponent.html
<div>
<button (click)="sharedService.toggleMenu()">Click</button>
</div>
或与BehavourSubject一起使用。
在SharedService中创建BehaviorSubject。
import { Injectable } from '@angular/core';
@Injectable()
export class SharedService {
//The current menu state
private showMenu_ = false;
private showMenu$: BehaviorSubject<boolean> = new
BehaviorSubject(false);
//get a reference to showMenu$ for subscription
public menuState() {
return showMenu$;
}
//Change menu state to show.
public showMenu(){
this.showMenu_ = true;
this.showMenu$.next(this.showMenu_);
}
//Change menu state to hide.
public hideMenu(){
this.showMenu_ = false;
this.showMenu$.next(this.showMenu_);
}
//Toggle menu state.
public toggleMenu(){
this.showMenu_ = !this.showMenu;
this.ShowMenu$.next(this.showMenu_);
}
//get the current menu state.
public getMenuState() {
return this.showMenu$.getValue();
}
将服务注入到appComponent中,以便我们可以订阅菜单状态。
appComponent.ts
import { SharedService } from 'PATH TO SHARED SERVICE';
...
export class appComponent implements OnInit, OnDestroy {
//variable used to show/hide the menu.
public showMenu;
//reference to subscription so we can unsubscribe later.
private this.menuStateSub: Subscription;
constructor(public sharedService: SharedService){}
ngOnInit() {
//subscribe to the menuState BehaviorSubject
this.menuStateSub = this.sharedService.menuState().subscribe((state)=>{
this.showMenu = state;
})
}
ngOnDestroy() {
//unsubscribe before leaving the page
this.menuStateSub.unsubscribe();
}
根据sharedService中设置的状态将my-header设置为显示/隐藏。
appComponent.html
<my-header *ngIf="sharedService.showMenu"></my-header>
最后将服务注入到我们需要控制菜单状态的位置。
ProductComponent.ts
import { SharedService } from 'PATH TO SHARED SERVICE';
...
constructor(public sharedService: SharedService){}
,现在我们可以使用该服务来切换状态。 ProductComponent.html
<div>
<button (click)="sharedService.toggleMenu()">Click</button>
</div>