fix "ng lint" command (#5012)

* update to latest js-api

* fix the "ng lint" command

* fix linting issues

* fix lint issues

* lint fixes

* code fixes

* fix html

* fix html

* update tests

* test fixes

* update tests

* fix tests and api

* fix code
This commit is contained in:
Denys Vuika
2019-08-29 16:35:30 +01:00
committed by Eugenio Romano
parent 140c64b79f
commit edc0945f39
162 changed files with 537 additions and 530 deletions

View File

@@ -29,7 +29,7 @@ import { TranslationMock } from '../mock/translation.service.mock';
@Component({
template: `
<div id="delete-component" [adf-delete]="selection"
(delete)="onDelete($event)">
(delete)="onDelete()">
</div>`
})
class TestComponent {
@@ -38,7 +38,7 @@ class TestComponent {
@ViewChild(NodeDeleteDirective)
deleteDirective: NodeDeleteDirective;
onDelete(event) {
onDelete() {
}
}

View File

@@ -39,14 +39,14 @@ describe('UploadDirective', () => {
it('should update drag status on dragenter', () => {
expect(directive.isDragging).toBeFalsy();
directive.enabled = true;
directive.onDragEnter(null);
directive.onDragEnter();
expect(directive.isDragging).toBeTruthy();
});
it('should not update drag status on dragenter when disabled', () => {
expect(directive.isDragging).toBeFalsy();
directive.enabled = false;
directive.onDragEnter(null);
directive.onDragEnter();
expect(directive.isDragging).toBeFalsy();
});
@@ -75,14 +75,14 @@ describe('UploadDirective', () => {
it('should update drag status on dragleave', () => {
directive.enabled = true;
directive.isDragging = true;
directive.onDragLeave(null);
directive.onDragLeave();
expect(directive.isDragging).toBeFalsy();
});
it('should not update drag status on dragleave when disabled', () => {
directive.enabled = false;
directive.isDragging = true;
directive.onDragLeave(null);
directive.onDragLeave();
expect(directive.isDragging).toBeTruthy();
});

View File

@@ -108,7 +108,7 @@ export class UploadDirective implements OnInit, OnDestroy {
}
}
onDragEnter(event: Event) {
onDragEnter() {
if (this.isDropMode()) {
this.element.classList.add(this.cssClassName);
this.isDragging = true;
@@ -124,7 +124,7 @@ export class UploadDirective implements OnInit, OnDestroy {
return false;
}
onDragLeave(event) {
onDragLeave() {
if (this.isDropMode()) {
this.element.classList.remove(this.cssClassName);
this.isDragging = false;