Skip to content

Commit

Permalink
fix(composite): selected row count always 0 on mass-selected
Browse files Browse the repository at this point in the history
- add dispose method to container service to start with a blank array whenever we route to another page, this is to avoid reusing already disposed services that might still be in the container service
- the issue was found in Angular-Slickgrid and did not seem to show up as a problem in Slickgrid-Universal itself but better play safe and apply the same here
  • Loading branch information
ghiscoding committed Jul 6, 2022
1 parent 1bcf7ad commit 0fe7101
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ describe('Container Service', () => {
expect(() => ContainerService.prototype.get!('MyService')).toThrow('ContainerService "get" method must be implemented');
});

it('should display a not implemented when calling "dispose" method', () => {
expect(() => ContainerService.prototype.dispose!()).toThrow('ContainerService "dispose" method must be implemented');
});

it('should display a not implemented when calling "registerInstance" method', () => {
expect(() => ContainerService.prototype.registerInstance('MyService', {})).toThrow('ContainerService "registerInstance" method must be implemented');
});
Expand Down
4 changes: 4 additions & 0 deletions packages/common/src/services/container.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ export class ContainerService {
throw new Error('ContainerService "get" method must be implemented');
}

dispose() {
throw new Error('ContainerService "dispose" method must be implemented');
}

registerInstance(_key: any, _instance: any) {
throw new Error('ContainerService "registerInstance" method must be implemented');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ export class SlickVanillaGridBundle {
this.resizerService?.dispose();
this.sortService?.dispose();
this.treeDataService?.dispose();
this.universalContainerService?.dispose();

// dispose all registered external resources
if (Array.isArray(this._registeredResources)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export class UniversalContainerService implements ContainerService {
return null;
}

dispose() {
this.dependencies = [];
}

registerInstance(key: string, instance: any) {
const dependency = this.dependencies.some(dep => dep.key === key);
if (!dependency) {
Expand Down

0 comments on commit 0fe7101

Please sign in to comment.