Angularディレクティブを作成しました。これは、CSSセレクターを使用して、アプリケーションの入力を自動的にトリミングします。次のようになります...
import { Directive, HostListener, forwardRef } from '@angular/core';
import { DefaultValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
export const TRIM_VALUE_ACCESSOR: any = {
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => TrimInputDirective),
multi: true
};
/**
* The trim accessor for writing trimmed value and listening to changes that is
* used by the {@link NgModel}, {@link FormControlDirective}, and
* {@link FormControlName} directives.
*/
/* tslint:disable */
@Directive({
selector: `
input
:not([type=checkbox])
:not([type=radio])
:not([type=password])
:not([readonly])
:not(.ng-trim-ignore)
[formControlName],
input
:not([type=checkbox])
:not([type=radio])
:not([type=password])
:not([readonly])
:not(.ng-trim-ignore)
[formControl],
input
:not([type=checkbox])
:not([type=radio])
:not([type=password])
:not([readonly])
:not(.ng-trim-ignore)
[ngModel],
textarea
:not([readonly])
:not(.ng-trim-ignore)
[formControlName],
textarea
:not([readonly])
:not(.ng-trim-ignore)
[formControl],
textarea
:not([readonly])
:not(.ng-trim-ignore)[ngModel],
:not([readonly])
:not(.ng-trim-ignore)
[ngDefaultControl]'
`,
providers: [ TRIM_VALUE_ACCESSOR ]
})
/* tslint:enable */
export class TrimInputDirective extends DefaultValueAccessor {
protected _onTouched: any;
/**
* ngOnChange - Lifecycle hook that is called when any data-bound property of a directive changes.
* @param {string} val - trim value onChange.
*/
@HostListener('input', ['$event.target.value'])
public ngOnChange = (val: string) => {
this.onChange(val.trim());
}
/**
* applyTrim - trims the passed value
* @param {string} val - passed value.
*/
@HostListener('blur', ['$event.target.value'])
public applyTrim(val: string) {
this.writeValue(val.trim());
this._onTouched();
}
/**
* writeValue - trims the passed value
* @param {any} value - passed value.
*/
public writeValue(value: any): void {
if (typeof value === 'string') {
value = value.trim();
}
super.writeValue(value);
}
/**
* registerOnTouched Registers a callback function that should be called when the control receives a blur event.
* @param {function} fn - The user information.
*/
public registerOnTouched(fn: any): void {
this._onTouched = fn;
}
}
今は優れた開発者なので、いくつかの単体テストを修正する必要があります...ファイルをまとめ始めます。ここにあります
import {Component} from '@angular/core';
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {By} from '@angular/platform-browser';
import {TrimInputDirective} from './trim-input.directive';
import {expect} from 'chai';
@Component({
selector: 'my-directive-test-component',
template: ''
})
class TestComponent {
}
describe('Trim Directive', () => {
let fixture: ComponentFixture<TestComponent>;
let inputDebugElement: any;
let directive: TrimInputDirective;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
TestComponent,
TrimInputDirective
],
providers: []
}).overrideComponent(TestComponent, {
set: {
template: '<input type="text">'
}
}).compileComponents().then(() => {
fixture = TestBed.createComponent(TestComponent);
fixture.detectChanges();
inputDebugElement = fixture.debugElement.query(By.css('input'));
directive = inputDebugElement.injector.get(TrimInputDirective);
});
}));
it('should trim the input', () => {
directive.ngOnChange(' 1234.56 ')
expect('1234.56').to.be('1234.56'); // I know this isn't the correct test... I will amend this
});
});
ここで、スペックファイルの設定が正しいことを確認するためだけにテストを実行したいのですが、次のエラーが発生します。
HeadlessChrome 0.0.0(Mac OS X 10.12.6)「入力をトリムする必要があります」の「各」フックの前にディレクティブをトリムします。失敗しました。
StaticInjectorError(Platform:core)[TrimInputDirective]:NullInjectorError:TrimInputDirectiveのプロバイダーがありません!エラー:StaticInjectorError(DynamicTestModule)[TrimInputDirective]:
このエラーが発生する理由がわかりません。なぜディレクティブを指定する必要があるのですか?これは必要ないと思います。また、提供するものを提供する必要がある場合も同様です。実際のディレクティブを提供しても機能しない/エラーを解決しますか?私は非常に混乱しています。誰かが問題を解決する方法や私がそれを得る理由を教えてくれるなら、私は最も感謝するでしょう。
これはレガシーAngularアプリであり、AngularCLIが利用可能になる前に構築されたものであることに注意してください。したがって、少し異例です(たとえば、Jasminを使用していません)。
1)ディレクティブを指定する必要はありません。TestingModule
で宣言するだけです。次に、対応するセレクターとともにテンプレートで使用されます。
2)セレクターが入力で使用されているセレクターに対応していません。特定のタイプのすべての入力に適用する場合、またはテストを変更する場合は、formControlName
を削除します。
input
:not([type=checkbox])
:not([type=radio])
:not([type=password])
:not([readonly])
:not(.ng-trim-ignore)
[formControlName],
^^^^^^^^^^^^^^^^^^
3)ディレクティブは特定のイベントでトリガーされます。効果を確認するには、これらのイベントをシミュレートする必要があります。この簡略化された例を見てください。 ( Stackblitz )
@Directive({
selector: `
input
:not([type=checkbox])
:not([type=radio])
:not([type=password])
:not([readonly])
:not(.ng-trim-ignore)
`
})
export class TrimInputDirective {
constructor(private el: ElementRef) { }
@HostListener('blur') onLeave() {
if (this.el.nativeElement.value)
this.el.nativeElement.value = this.el.nativeElement.value.trim();
}
}
そしてテスト:
describe('Trim Directive', () => {
let fixture: ComponentFixture<TestComponent>;
let inputDebugElement: any;
let directive: TrimInputDirective;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
TestComponent,
TrimInputDirective
],
imports: [FormsModule],
providers: []
}).overrideComponent(TestComponent, {
set: {
template: '<input type="text">'
}
}).compileComponents().then(() => {
fixture = TestBed.createComponent(TestComponent);
inputDebugElement = fixture.debugElement.query(By.css('input')).nativeElement;
^^^^^^^^^^^^
});
}));
it('should trim the input', () => {
inputDebugElement.value = ' 1234.56 ';
inputDebugElement.dispatchEvent(new Event('blur'));
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
fixture.detectChanges();
expect(inputDebugElement.value).toBe('1234.56');
});
});
TestComponent
に次のようなディレクティブを指定する必要があります
@Component({
selector: 'my-directive-test-component',
template: '',
providers: [ TrimInputDirective ]
})
class TestComponent {
}