在我自己实现解决方案之前,我想知道当数据绑定属性值刚刚更改时,是否有一种简单的方式来更改元素的样式(简短的突出显示)。
我的DOM中有很多元素,所以我不想在组件中存储和维护专用属性。
要突出显示的元素是传统输入形式的元素:
<tr field label="Lieu dépôt">
<select class="cellinput" #lieuDepotBon [(ngModel)]="rapport.LieuDepotBon" (ngModelChange)="changeRapport({LieuDepotBon:$event})">
<option [ngValue]="null"></option>
<option [ngValue]="i" *ngFor="let depotBonChoice of DepotBonInterventionValues; let i = index">{{DepotBonIntervention[i]}}</option>
</select>
</tr>
<tr field *ngIf="rapport.LieuDepotBon==DepotBonIntervention.Autre" label="Autre lieu">
<input class="cellinput" #autreLieuDepotBon [(ngModel)]="rapport.AutreLieuDepotBon" (ngModelChange)="changeRapport({AutreLieuDepotBon:autreLieuDepotBon.value})" />
</tr>
我听说Angular2在元素上使用ngModel指令设置的特殊类样式可以帮助我做我需要的但是我找不到更多关于它的内容。
答案 0 :(得分:3)
我能想到的最简单,最清晰的方法是实现2个css类,如下所示:
.highlight{
background-color: #FF0;
}
.kill-highlight{
background-color: #AD310B;
-webkit-transition: background-color 1000ms linear;
-ms-transition: background-color 1000ms linear;
transition: background-color 1000ms linear;
}
然后连续影响它们的元素。 希望有所帮助
答案 1 :(得分:1)
这是我的解决方案。
我想突出显示其他用户实时更改的表单中的数据。
在我的HTML表单中,我用Angular组件替换了原生的html元素。对于每种类型的本机元素,我创建了一个具有Highlight支持的新Angular Component。每个组件都实现 ControlValueAccessor Angular接口。
在父表单中,我替换了原生元素:
<input [(ngModel)]="itinerary.DetailWeather" />
我的自定义元素:
<reactive-input [(ngModel)]="itinerary.DetailWeather"></reactive-input>
当Angular为父表单调用 detectChanges()时,它会检查表单组件用作输入的所有数据。
如果组件是ControlValueAccessor,并且应用程序模型中发生了更改,则它会调用方法 ControlValueAccessor。 writeValue (value)。它是在内存中更改数据时调用的方法。我使用它作为钩子来临时更新样式以添加突出显示。
这是自定义元素。我使用Angular Animations来更新边框颜色并淡出回原始颜色。
import { Component, Input, forwardRef, ChangeDetectorRef } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
import { trigger, state, style, animate, transition, keyframes } from '@angular/animations';
@Component(
{
selector: 'reactive-input',
template: `<input class="cellinput" [(ngModel)]="value" [@updatingTrigger]="updatingState" />`,
styles: [`.cellinput { padding: 4px }`],
animations: [
trigger(
'updatingTrigger', [
transition('* => otherWriting', animate(1000, keyframes([
style ({ 'border-color' : 'var( --change-detect-color )', offset: 0 }),
style ({ 'border-color' : 'var( --main-color )', offset: 1 })
])))
])
],
providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ReactiveInputComponent), multi: true } ]
})
export class ReactiveInputComponent implements ControlValueAccessor {
public updatingState : string = null;
_value = '';
// stores the action in the attribute (onModelChange) in the html template:
propagateChange:any = ( change ) => {};
constructor( private ref: ChangeDetectorRef ) { }
// change from the model
writeValue(value: any): void
{
this._value = value;
this.updatingState = 'otherWriting';
window.setTimeout( () => {
this.updatingState = null;
}, 100 );
// model value has change so changes must be detected (case ChangeDetectorStrategy is OnPush)
this.ref.detectChanges();
}
// change from the UI
set value(event: any)
{
this._value = event;
this.propagateChange(event);
this.updatingState = null;
}
get value()
{
return this._value;
}
registerOnChange(fn: any): void { this.propagateChange = fn; }
registerOnTouched(fn: () => void): void {}
setDisabledState?(isDisabled: boolean): void {};
}
答案 2 :(得分:0)
要暂时突出显示DOM元素,请使用setTimeout()
添加或删除CSS类
HTML
<mat-form-field [ngClass]="{'changed': isChanged}">
<mat-select [(ngModel)]="yourModel" (ngModelChange)="modelChanged($event)">
<mat-option value="1">1</mat-option>
<mat-option value="2">2</mat-option>
<mat-option value="3">3</mat-option>
</mat-select>
</mat-form-field>
打字稿
isChanged: boolean = false
modelChanged(value) {
console.log('model changed')
this.isChanged = true
setTimeout(() => {
this.isChanged = false
}, 1000);
}
CSS
.changed {
transition: color 0.4s ease-in, text-shadow 0.4s ease-in, background-color 0.5s linear 0s;
text-shadow: #bbb 2px 2px 2px;
background-color: #ffffcc;
color: #BF1722;
}
注意:如果您的应用程序以毫秒为单位更改,则应将setTimeout()
的时间减少到 0.5s 或 0.3s 根据您的申请要求。
感谢 IngoBürk指出此问题