我正在为我的应用程序使用角材料自动完成(版本7)。我在使用<cdk-virtual-scroll-viewport>
。除了我已经解决的众多问题之外,还有一个我不了解的问题:
当我添加最大高度css时,下拉菜单不会显示,如果我添加高度,它将显示但固定高度。
这是我的代码的一部分: html:
<mat-form-field class="single-select">
<input matInput #singleInput class="single-input layout flex" type="text" [formControl]="selectControl" [matAutocomplete]="auto" (blur)="onBlur()" (focus)="onFocus()">
<mat-autocomplete class="single-autocomplete" #auto="matAutocomplete" [displayWith]="displayFn">
<cdk-virtual-scroll-viewport itemSize="45" minBufferPx="360" maxBufferPx="360" class="virtual-scroll">
<mat-option *cdkVirtualFor="let option of filteredOptions" [class.selected]="option === oldValue" [value]="option" (click)="onSelect(option)">{{option.label}}</mat-option>
</cdk-virtual-scroll-viewport>
</mat-autocomplete>
</mat-form-field>
ts:
export class SingleSelectComponent implements OnInit {
@Input() value;
@Input('options')
set options(value) {
if (value) {
this.filteredOptions = value.slice();
this.data = value;
this.initValue();
}
}
@Output() formValue = new EventEmitter<any>();
@ViewChild('singleInput') singleInput;
selectControl = new FormControl('');
filteredOptions;
oldValue: any;
data: any;
destroy: Subject<boolean> = new Subject<boolean>();
constructor(private appService: AppService,
private translationService: TranslationService) { }
ngOnInit() { this.selectControl.valueChanges.pipe(takeUntil(this.destroy)).subscribe((value)=>{
let valStr = typeof value === 'string' ? value : value.label;
this.filteredOptions = valStr ? this.filter(valStr) : this.data.slice();
this.value = this.selectControl.value;
if(typeof value !== 'string' || value === '') this.formValue.emit(value);
});
}
ngOnDestroy() {
this.destroy.next(true);
this.destroy.unsubscribe();
}
private filter(name: string) {
return this.data.filter(option => this.normalizeInput(option.label).indexOf(this.normalizeInput(name)) >= 0);
}
private normalizeInput(value: string) {
return value.normalize('NFD').replace(/[\u0300-\u036f]/g, "").toLowerCase();
}
initValue() {
let value = this.data.find(option => option.code === this.value.code);
this.selectControl.setValue(value ? value : '');
this.filteredOptions = this.filter(value ? value.label : '');
this.oldValue = value;
}
displayFn(option) {
return option ? option['label'] : '';
}
onSelect(option) {
this.oldValue = option;
this.singleInput.nativeElement.blur();
}
onBlur() {
if(this.selectControl.value) {
let found = this.data.find(option => this.selectControl.value.code === option.code);
if(!found) {
setTimeout(()=> {
this.selectControl.setValue(this.oldValue);
this.filter(this.oldValue.label);
}, 200);
} else {
this.filter(this.oldValue.label);
}
} else {
this.oldValue = null;
this.filteredOptions = this.data;
}
}
onFocus() {
let virtualScrollEl = document.body.getElementsByClassName('virtual-scroll')[0];
if(virtualScrollEl) {
virtualScrollEl.scrollTo(0, 0);
}
}
}
css:
.single-input {
height: 100%;
min-width: 20%;
max-width: 100%;
}
.virtual-scroll {
height: 350px;
overflow-x: hidden;
}
mat-option {
height: 45px;
font-size: 13px;
}
::ng-deep .mat-autocomplete-panel.single-autocomplete {
max-height: 350px;
}
.virtual-scroll ::ng-deep .cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper {
width: 100%;
}
在虚拟滚动类中,我必须添加一个固定高度。当项目的高度小于350px时,将创建一个空白。
这是小提琴:https://stackblitz.com/edit/angular-fs4voi。由于我是Angular的新手,并且已经对自动完成功能进行了一些修改,因此它也可能导致此问题。
非常感谢!
答案 0 :(得分:0)
您可以使用class
上的mat-autocomplete
选项为下拉面板指定样式。由于面板位于叠加层中,因此该类必须采用您的全局样式。对于max-height
,由于mat-autocomplete也定义了它,因此您需要!important
来覆盖。然后,您根本不需要实现自己的虚拟滚动。
组件:
<mat-autocomplete class="single-autocomplete" #auto="matAutocomplete" [displayWith]="displayFn">
<mat-option *ngFor="let option of filteredOptions" [class.selected]="option === oldValue" [value]="option" (click)="onSelect(option)">{{option.label}}</mat-option>
</mat-autocomplete>
Global style.css
.single-autocomplete {
max-height: 350px !important;
}
https://stackblitz.com/edit/angular-jngfv7?embed=1&file=src/styles.css
答案 1 :(得分:0)
您可以使用[style.height]并在函数中计算高度:
HTML:
<mat-autocomplete #autoPolicy="matAutocomplete" [panelWidth]="'450px'" >
<cdk-virtual-scroll-viewport itemSize="20" [style.height]="caclVSHeight()">
<mat-option *cdkVirtualFor="let policy of filteredPolicies | async" [value]="policy.name">
<span style="font-size: smaller;">{{ policy.name }}</span>
</mat-option>
</cdk-virtual-scroll-viewport>
</mat-autocomplete>
TS:
virtScrollLength: number;
filteredPolicies: Observable<any[]>;
ngOnInit() {
this.filteredPolicies = this.fcPolicy.valueChanges
.pipe(
startWith(''),
map(value => this._filterPolicy(value))
);
}
private _filterPolicy(value: string): any[] {
if (value) {
const filterValue = value.toLowerCase();
const arr = this.policies.filter(pol => pol.name.toLowerCase().includes(filterValue))
this.virtScrollLength = arr.length;
return arr;
} else {
return this.policies;
}
}
caclVSHeight() {
if (this.virtScrollLength > 10) {
return '240px';
} else {
return '120px';
}
}