Angular 14 service and directive for detecting changes on an element size. Internally it use the [Resize observer](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver).
npm install @fp-tools/angular-resizeAngular 14 service and directive for detecting changes on an element size.
Internally it use the Resize observer.
You can use it as directive, inside your angular template
``html`
`
or as a service, if you use a third party library and need to observe to an id of the htmlElementtypescript`
this.resiseService.registerObserver('my-id', {id: 'htmlId', onResize: (event) => console.log(event)})
or yarn add @fp-tools/angular-resize
Use the directive
First add
ResizeModule to your modules import`typescript
import { ResizeModule } from '@fp-tools/angular-resize';@NgModule({
imports: [..., ResizeModule],
declarations: [...],
bootstrap: [...],
})
export class MyModule {}
`Then use the directive on the element where you want to listen. The ResizeObservable will automatically unsubscribe whenever the directive is destroyed.
`html
I'm a div with the resize directive
``typescript @Component({...})
export class MyComponent {
onResize() {
console.log('resize');
}
}
`Use the service
In some cases a non-angular library may have an issue with resizing. F.E. if you resize your window a map should be resized as wel, for some reason this is not the case and you should manual trigger the map.resize(). In this case it can be easily done with the ResizeServiceDon't forget to destroy the resize listener when you don't need it anymore. This may avoid memory-leaks
`typescript
import { Injectable } from '@angular/core';
import { ResizeService } from '@fp-tools/angular-resize';@Injectable({ providedIn: 'root' })
export class MyService {
constructor(private readonly resizeService: ResizeService) {}
init() {
this.resizeService.registerObserver('myId', {
id: 'myId',
onResize: () => console.log('resize by the service'),
});
}
destroy() {
this.resizeService.destroy('myId');
}
}
``