Apply corrections identified by SonarQube (#8457)

This commit is contained in:
Michael Telatynski 2022-05-03 22:04:37 +01:00 committed by GitHub
parent 99cb83a9df
commit 964c60d086
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
73 changed files with 211 additions and 232 deletions

View file

@ -30,7 +30,7 @@ export default class ResizeItem<C extends IConfig = IConfig> {
) {
this.reverse = resizer.isReverseResizeHandle(handle);
if (container) {
this.domNode = <HTMLElement>(container);
this.domNode = container;
} else {
this.domNode = <HTMLElement>(this.reverse ? handle.nextElementSibling : handle.previousElementSibling);
}

View file

@ -195,11 +195,11 @@ export default class Resizer<C extends IConfig = IConfig> {
return { sizer, distributor };
}
private getResizeHandles() {
private getResizeHandles(): HTMLElement[] {
if (this?.config?.handler) {
return [this.config.handler];
}
if (!this.container?.children) return [];
return Array.from(this.container.querySelectorAll(`.${this.classNames.handle}`)) as HTMLElement[];
return Array.from(this.container.querySelectorAll(`.${this.classNames.handle}`));
}
}