根据媒体查询,有没有更漂亮的方法在mat-icon-button和mat-button之间切换?我已经对我当前的解决方案进行了演示,但它需要两个独立的按钮。
<button type=button mat-icon-button fxHide fxShow.lt-sm (click)="onEdit($event)">
<mat-icon>edit</mat-icon>
</button>
<button type="button" mat-button fxHide.lt-sm (click)="onEdit($event)">
<mat-icon>edit</mat-icon> Edit
</button>
答案 0 :(得分:0)
遇到了同样的问题,当前正在使用此解决方案。
Component.html:
<button
mat-button
[ngClass]="isBigDevice() ? 'mat-stroked-button' : 'mat-icon-button'"
color="accent"
type="button"
(click)="coolMethodToDoStuff()"
[disabled]="isSelected() && contextTypeIsSomething()">
<span *ngIf="isBigDevice()">Edit</span>
<mat-icon *ngIf="!isBigDevice()">edit</mat-icon>
</button>
有一个问题/注释:您需要添加基本按钮样式/属性mat-button
。如果不这样做,您会得到一个错误,指出color
对于这种html元素是没有属性的。优点是,如果您在一个按钮上具有多个属性,或者disabled
,hidden
或*ngIf
的条件都不需要它们两次。我知道*ngIf
缺乏可读性,但目前是避免大量重复代码的最佳方法。
对我来说下一步:我将为此类指令建立一条指令。
编辑:
此外,这是我的MediaQueryService:
import {Injectable, OnDestroy} from '@angular/core';
import {BreakpointObserver, Breakpoints, BreakpointState} from '@angular/cdk/layout';
import {Subject} from 'rxjs';
import {takeUntil} from 'rxjs/operators';
@Injectable({
providedIn: 'root'
})
export class MediaQueryService implements OnDestroy {
private _breakpointArray = {
isXSmall: false,
isSmall: false,
isMedium: false,
isLarge: false,
isXLarge: false,
};
private _destroy$ = new Subject();
constructor(
private _breakpointObserver: BreakpointObserver,
) {
this._breakpointObserver
.observe([
Breakpoints.WebLandscape,
Breakpoints.WebPortrait,
])
.pipe(
takeUntil(this._destroy$)
)
.subscribe((state: BreakpointState) => {
_breakpointObserver.isMatched(Breakpoints.WebLandscape)
? this.webOrientationChangeLogger('landscape')
: this.webOrientationChangeLogger('portrait');
});
this._breakpointObserver.observe([
Breakpoints.XSmall,
Breakpoints.Small,
Breakpoints.Medium,
Breakpoints.Large,
Breakpoints.XLarge,
]
)
.pipe(
takeUntil(this._destroy$)
)
.subscribe((state: BreakpointState) => {
this._breakpointArray.isXSmall = _breakpointObserver.isMatched(Breakpoints.XSmall);
this._breakpointArray.isSmall = _breakpointObserver.isMatched(Breakpoints.Small);
this._breakpointArray.isMedium = _breakpointObserver.isMatched(Breakpoints.Medium);
this._breakpointArray.isLarge = _breakpointObserver.isMatched(Breakpoints.Large);
this._breakpointArray.isXLarge = _breakpointObserver.isMatched(Breakpoints.XLarge);
});
}
public ngOnDestroy(): void {
this._destroy$.next();
this._destroy$.complete();
}
public get isSmallDevice(): boolean {
return this.getBreakpointBoolean('isXSmall') || this.getBreakpointBoolean('isSmall');
}
public get isBigDevice(): boolean {
return this.getBreakpointBoolean('isXLarge') || this.getBreakpointBoolean('isLarge');
}
public getBreakpointBoolean(breakpointName: string): boolean {
return this._breakpointArray[breakpointName];
}
private webOrientationChangeLogger(orientation: string) {
console.log(orientation);
}
}
在我使用按钮的组件内部,我只调用isBigDevice()
方法并返回布尔值。
Component.ts:
public isBigDevice(): boolean {
return this._mediaQueryService.isBigDevice();
}
您还可以尝试使用此材质的fxShow
,fxHide
属性。
答案 1 :(得分:0)
试试
<button mat-button [ngClass]="condition ? 'mat-raised-button' : 'mat-icon-button'">Button</button>