-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add way to get all instances of a type of model from dashboard #649
base: main
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## main #649 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 53 53
Lines 1452 1462 +10
Branches 202 205 +3
=========================================
+ Hits 1452 1462 +10
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
src/model/manager/model-manager.ts
Outdated
@@ -13,7 +13,7 @@ import { ModelOnDestroy, ModelOnInit } from './model-lifecycle-hooks'; | |||
* models. | |||
*/ | |||
export class ModelManager { | |||
private readonly modelInstanceMap: WeakMap<object, ModelInstanceData> = new WeakMap(); | |||
private readonly modelInstanceMap: Map<object, ModelInstanceData> = new Map(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Highlighting this change so others see it in the review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Switching this to a strongly referenced map means we'd need to be more careful on memory leaks and manually manage this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some impl comments, but potentially moot based on first comment.
* Returns a shallow copy array of model instances within a dashboard that match the | ||
* argument model class | ||
*/ | ||
getModelInstances<T extends object>(modelClass: Constructable<T>): object[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought your use case was to instantiate a model without a renderer? If that's the case, no changes are needed in this repo, just in hyperdash-angular to export certain APIs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(i,e. model manager's programmatic instantiation APIs)
src/model/manager/model-manager.ts
Outdated
@@ -13,7 +13,7 @@ import { ModelOnDestroy, ModelOnInit } from './model-lifecycle-hooks'; | |||
* models. | |||
*/ | |||
export class ModelManager { | |||
private readonly modelInstanceMap: WeakMap<object, ModelInstanceData> = new WeakMap(); | |||
private readonly modelInstanceMap: Map<object, ModelInstanceData> = new Map(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Switching this to a strongly referenced map means we'd need to be more careful on memory leaks and manually manage this.
src/model/manager/model-manager.ts
Outdated
* Returns a shallow copy array of model instances that match the argument model class | ||
*/ | ||
public getModelInstances<T extends object>(modelClass: Constructable<T>): object[] { | ||
return Array.from(this.modelInstanceMap.keys()).filter(modelInstance => modelInstance instanceof modelClass); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't match the behavior you're looking for. The model instance map in this singleton is all models, you're using this from the context of one dashboard. Instead, you'd want to pass in the root from that dashboard and then use get children to walk that model's tree.
src/model/manager/model-manager.ts
Outdated
@@ -27,8 +27,10 @@ export class ModelManager { | |||
/** | |||
* Returns a shallow copy array of model instances that match the argument model class | |||
*/ | |||
public getModelInstances<T extends object>(modelClass: Constructable<T>): object[] { | |||
return Array.from(this.modelInstanceMap.keys()).filter(modelInstance => modelInstance instanceof modelClass); | |||
public getModelInstances<T extends object>(modelClass: Constructable<T>, root?: object): object[] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we'd never want to call this without root, and once you have root, you don't need to enumerate keys so you can revert the instancemap back to a weakmap.
Description
Please include a summary of the change, motivation and context.
Testing
Please describe the tests that you ran to verify your changes. Please summarize what did you test and what needs to be tested e.g. deployed and tested helm chart locally.
Checklist:
Documentation
Make sure that you have documented corresponding changes in this repository or hypertrace docs repo if required.