-
Notifications
You must be signed in to change notification settings - Fork 141
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
grouping observers by getters in addObserver #183
base: jordan/refactor-everything!
Are you sure you want to change the base?
grouping observers by getters in addObserver #183
Conversation
…mizely/nuclear-js into yun/grouping-observers-by-getters
@@ -171,18 +171,26 @@ exports.addObserver = function(observerState, getter, handler) { | |||
handler: handler, | |||
}) | |||
|
|||
let updatedObserverState | |||
let updatedObserverState = observerState.updateIn(['gettersMap', getter] |
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.
please use the style:
let updatedObserverState = observerState.updateIn(['gettersMap', getter], observerIds => {
return observerIds ? observerIds.add(currId) : Immutable.Set.of(currId)
})
@lyonlai I checked out your branch and couldn't get tests to pass using I had initially tried an approach where the observerMap was using a getter by reference as a key, however I couldn't get it it to pass tests. If you are able to get tests to pass I'm happy to include. |
@jordangarcia I'll get back to you soon on this. |
@jordangarcia looks like I've got some missing files when I tried to run the test. after I've install a bunch of missing npm packages now I've got "Cannot find module './common'" |
@lyonlai hm, ill try cloning a fresh repo and see if anything is missing |
@jordangarcia while you are doing that I'll run karma manually to see if I can get the test running. |
@lyonlai it's working for me, not sure if it's becuase I have a globally installed module that maybe you don't have. Do you have karma install globally? Are you running on OSX? |
@jordangarcia I don't have things globally. I think that's why. I'm on osx. btw what node version you are running. and also npm version? |
I'm running |
looks like the version problem. Was using node 4. karma running after change. I'll dig into the test now. |
@jordangarcia I've fixed the failing tests, added two more tests about the getters map and fixed the formatting issue. |
map.update('any', getters => getters.remove(getter)); | ||
} else { | ||
storeDeps.forEach(storeId => { | ||
map.updateIn(['stores', storeId] |
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 dont think this is correct.
If we observe add two observer entries with the same getter and then unobserve one it will unobserve all entries with that getter.
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.
that's why it's under the condition, only removed when there's no entries listening to that getter
if (map.getIn(['gettersMap', getter]).size <= 0)
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 can add a test case to cover it if you want.
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.
Thanks! This looks good.
… still handler for the getter, do not remove the reference in store.
I'm going to release 1.2 first since i've done more extensive testing using Optimizely's integration tests. After |
sure Thanks @jordangarcia . |
This PR is a better implementation of the grouping observers by getters idea in
#182
The difference is observers are grouped when they are added. Also the removal of observers has been taken care of too.