我正在尝试使用Angular Material版本7和Angular 6制作一个自定义MatFormFieldControl。自定义输入是一个重量输入,它有一个值(输入类型=“数字”)和一个单位(选择“kg”、“g”、…)。它必须放在mat form字段控件中,使用反应式表单(formControlName=“weight”)并支持错误状态(
我写了这个实现:
重量输入。组成部分html
<div [formGroup]="weightForm">
<input fxFlex formControlName="value" type="number" placeholder="Valore" min="0" #value>
<select formControlName="unit" [style.color]="getUnselectedColor()" (change)="setUnselected(unit)" #unit>
<option value="" selected> Unità </option>
<option *ngFor="let unit of units" style="color: black;">{{ unit }}</option>
</select>
</div>
重量输入。组成部分css
.container {
display: flex;
}
input, select {
border: none;
background: none;
padding: 0;
opacity: 0;
outline: none;
font: inherit;
transition: 200ms opacity ease-in-out;
}
:host.weight-floating input {
opacity: 1;
}
:host.weight-floating select {
opacity: 1;
}
重量输入。组成部分ts
import { Component, OnInit, Input, OnDestroy, HostBinding, ElementRef, forwardRef, Optional, Self } from '@angular/core';
import { FormGroup, FormBuilder, ControlValueAccessor, NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
import { MatFormFieldControl } from '@angular/material';
import { Subject } from 'rxjs';
import { FocusMonitor } from '@angular/cdk/a11y';
export class Weight {
constructor(public value: number, public unit: string) { };
}
@Component({
selector: 'weight-input',
templateUrl: './weight-input.component.html',
styleUrls: ['./weight-input.component.css'],
providers: [
{ provide: MatFormFieldControl, useExisting: WeightInput }
],
})
export class WeightInput implements OnInit, OnDestroy, MatFormFieldControl<Weight>, ControlValueAccessor {
stateChanges = new Subject<void>();
@Input()
get units(): string[] {
return this._units;
}
set units(value: string[]) {
this._units = value;
this.stateChanges.next();
}
private _units: string[];
unselected = true;
weightForm: FormGroup;
@Input()
get value(): Weight | null {
const value: Weight = this.weightForm.value;
return ((value.value || value.value == 0) && !!value.unit) ? value : null;
}
set value(value: Weight | null) {
value = value || new Weight(null, '');
this.weightForm.setValue({ value: value.value, unit: value.unit });
if(this._onChange) this._onChange(value);
this.stateChanges.next();
}
static nextId = 0;
@HostBinding() id = `weight-input-${WeightInput.nextId++}`;
@Input()
get placeholder() {
return this._placeholder;
}
set placeholder(placeholder) {
this._placeholder = placeholder;
this.stateChanges.next();
}
private _placeholder: string;
focused = false;
get empty() {
const value = this.weightForm.value as Weight;
return (!value.value && value.value != 0) || !!!value.unit;
}
@HostBinding('class.weight-floating')
get shouldLabelFloat() {
return this.focused || !this.empty;
}
@Input()
get required(): boolean {
return this._required;
}
set required(required: boolean) {
const temp: any = required;
required = (temp != "true");
this._required = required;
this.stateChanges.next();
}
private _required = false;
@Input()
get disabled(): boolean {
return this._disabled;
}
set disabled(disabled: boolean) {
const temp: any = disabled;
disabled = (temp != "true");
this._disabled = disabled;
this.setDisable();
this.stateChanges.next();
}
private _disabled = false;
errorState = false;
controlType = 'weight-input';
@HostBinding('attr.aria-describedby') describedBy = '';
setDescribedByIds(ids: string[]) {
this.describedBy = ids.join(' ');
}
onContainerClick(event: MouseEvent) {
if(!this.disabled) {
this._onTouched();
}
}
constructor(
@Optional() @Self() public ngControl: NgControl,
private fb: FormBuilder,
private fm: FocusMonitor,
private elRef: ElementRef<HTMLElement>
) {
if(this.ngControl != null) {
this.ngControl.valueAccessor = this;
}
fm.monitor(elRef.nativeElement, true).subscribe(origin => {
this.focused = !!origin;
this.stateChanges.next();
});
}
ngOnInit() {
this.weightForm = this.fb.group({
value: null,
unit: ''
});
this.setDisable();
this.weightForm.valueChanges.subscribe(
() => {
const value = this.value;
if(this._onChange) this._onChange(value);
this.stateChanges.next();
}
);
}
ngOnDestroy() {
this.stateChanges.complete();
this.fm.stopMonitoring(this.elRef.nativeElement);
}
writeValue(value: Weight): void {
if(value instanceof Weight) {
this.weightForm.setValue(value);
}
}
_onChange: (_: any) => void;
registerOnChange(fn: (_: any) => void): void {
this._onChange = fn;
}
_onTouched: () => void;
registerOnTouched(fn: () => void): void {
this._onTouched = fn;
}
setDisabledState(isDisabled: boolean): void {
this.disabled = isDisabled;
}
private setDisable(): void {
if(this.disabled && this.weightForm) {
this.weightForm.disable();
}
else if(this.weightForm) {
this.weightForm.enable();
}
}
getUnselectedColor(): string {
return this.unselected ? '#999' : '#000';
}
setUnselected(select): void {
this.unselected = !!!select.value;
}
}
这就是它必须去的地方:
应用程序。组成部分html
<mat-form-field fxFlexAlign="stretch">
<weight-input formControlName="peso" [units]="units" placeholder="Peso" required></weight-input>
<mat-error *ngIf="peso.invalid">errore</mat-error>
</mat-form-field>
(比索在意大利语中的意思是重量,单位是海关,所以你可以将它们绑定在输入[单位]中)
应用程序。组成部分ts(部分)
units = [ 'Kg', 'g', 'T', 'hg' ];
ngOnInit() {
this.initForm();
}
private initForm(): void {
this.scheda = this.fb.group({
diametro: [ null, Validators.required ],
peso: [ null, Validators.required ], //There will be custom validators, for instance for unit control (Validators.unitsIn(units: string[]))
contorno: [ null, Validators.required ],
fornitore: null,
note: null
});
}
get diametro(): FormControl | undefined {
return this.scheda.get('diametro') as FormControl;
}
get peso(): FormControl | undefined {
return this.scheda.get('peso') as FormControl;
}
所以我需要的是:
-这是MatFormFieldControl和ControlValueAccessor的良好实现吗?有问题吗,虫子
-主要是:如何管理输入的errorState,使其表现为正常的mat表单字段控制,以及如何检测/将其与外部表单控件验证程序关联?(例如,如果控件“peso”具有验证器。如果自定义输入为空,则required errorState为true,否则为false,与最终自定义验证器相同)
更新:我从这个
(!value.value
<div [formGroup]="weightForm">
<input fxFlex formControlName="value" type="number" placeholder="Valore" min="0" #value>
<mat-select fxFlex="10" id="mat-select" formControlName="unit">
<mat-option value="" selected> Unità </mat-option>
<mat-option *ngFor="let unit of units" [value]="unit">
{{ unit }}
</mat-option>
</mat-select>
</div>
可能应该使用验证器接口,但不幸的是,它创建了讨厌的循环错误依赖关系。因此,只需在自定义组件中添加一个errorState
属性,用于检查注入构造函数的ngControl
,如下所示:
get errorState() {
return this.ngControl.errors !== null && !!this.ngControl.touched;
}
这应该尊重父组件中的正常角度验证器,如formGroup中的这一行:
peso: [ null, Validators.required ],
我试图创建自己的自定义angular material组件,该组件能够使用控件。 除此之外,我希望该控件使用指令。 我的目的只是创建一个更好看的组件,该组件包含一个集成的clear按钮和自定义css箭头,如下图所示。我使用标准组件成功地获得了它,并添加了我想要的内容,但现在我想将它导出到泛型组件中。 null 即使正确选择了值,我的窗体也无效。 选择某个选项后,占位符自身设置不正确。 自动完成筛选
当我在material design上用autocomplete实现时,我有一个关于angular 2的错误,我不知道为什么,因为这是我第一次用后端ASP.NET核心实现它。我尝试安装一些ng2库,但根本不起作用。下面是我的代码: 错误如下:
我正在将Angular 2与角度材料一起使用,我需要创建自定义主题,以便为组件使用自定义颜色。我遵循了有角度的文档,但我无法让它运行。 到目前为止我所做的: 1.我创建了一个文件my-theme.scss: 2.我将创建的SASS文件导入styles.css 3.我在.angular cli中引用了它。样式部分中的json文件: 我在本地主机下的网站告诉我“编译失败”模块未找到:“../node_
我有一个Angular 6客户端,它使用了使用.Net Web Api开发的REST Api。 除了错误处理之外,一切都正常。当我试图处理错误以对不同的状态代码(404403409500…)做出不同的反应时,我根本无法让它工作。HttpErrorResponse对象没有任何应该包含的字段(如“状态”或“错误”)。 我做了一个超级简单的服务来重现这个问题: 对服务的请求 错误处理程序(几乎直接来自官
如何改变材料角度到上一个旧版本,我们使用而不是? 现在我有
我正试图用有棱角的材料做一个形状。此表单允许客户修改其个人数据(带有输入字段)。对于这种情况,我使用“mat form field”组件 但是也有一些字段他不能修改(比如他的名字)。对于这种情况,我不知道使用什么元素。我想要一些与材料设计兼容的,但我找不到。 这是我的密码: 有什么好主意吗? 谢啦