-
Notifications
You must be signed in to change notification settings - Fork 29
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
Make sure subscriptions / queries are removed #454
Conversation
Codecov Report
@@ Coverage Diff @@
## master #454 +/- ##
==========================================
+ Coverage 58.52% 61.83% +3.30%
==========================================
Files 51 52 +1
Lines 1015 1027 +12
Branches 75 72 -3
==========================================
+ Hits 594 635 +41
+ Misses 408 379 -29
Partials 13 13
Continue to review full report at Codecov.
|
@@ -246,8 +246,10 @@ export default { | |||
) | |||
this.subscribe('root') | |||
}, | |||
beforeDestroy () { | |||
beforeRouteLeave (to, from, next) { |
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 is necessary, as the View is not just a component, but bound to a Vue Router router. So the lifecycle is different. Views don't get destroyed as Vue components do. So the beforeDestroy
doesn't always get called.
7075191
to
3185a03
Compare
Ha! Wrote the first most basic e2e tests:
|
67ca79f
to
4aebdb9
Compare
4aebdb9
to
ef3f5ae
Compare
Tests written for the number of subscriptions. Just need to improve the test. Instead of looking only at the number of subscriptions, it must make sure that the subscriptions present are the ones you expect. For example, the third scenario again. Dashboard -> Workflow -> Dashboard. In this case, the GraphQL query that was merged, i.e. the final query, must not contain |
c925729
to
3ca176c
Compare
3ca176c
to
d8052c8
Compare
Ready for review. Testing the following scenarios:
I used the cyclePoints as at the moment the tree view is the only one that uses it. Likewise, one could write similar tests later for the Graph view/component using |
What I learned with this pull request:
|
src/views/Dashboard.vue
Outdated
@@ -246,8 +246,10 @@ export default { | |||
) | |||
this.subscribe('root') | |||
}, | |||
beforeDestroy () { | |||
beforeRouteLeave (to, from, next) { | |||
this.unsubscribe('root') |
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.
Surely this should be done by workflowSevice.unregister?
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.
Ah, all this time I thought I needed both. Looks like the correct is
- Component/view wants to use the service:
register()
subscribe()
- Component is being destroyed or doesn't need the data anymore (e.g. a lumino widget removed)
unregister
(which will do the same asunsubscribe()
)
@oliver-sanders do we need the unsubscribe methods
? Both in GQuery.js
, and in all the views? Could we perhaps combine register/subscription in a single method?
Updating the PR to use only unregister
.
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.
Done. I removed one unsubscribe call but left only some unsubscribe calls in Workflow.vue
view. The way I built it, when you create that view, it "registers" the query. Then each time you create a widget it is "subscribed". Then when you remove the widget it just "unsubscribe"s. Then, when you leave the page it now only "unregisters".
Changing that here would increase considerably the amount of changes in this PR. But we can review it later (the goal here is just making sure we have the right amount of subscriptions when you navigate)
9ffd229
to
3e36a87
Compare
3e36a87
to
a5ea9e0
Compare
a5ea9e0
to
efc36e4
Compare
Ready for review again. |
unsubscribe (subscriptionId) { | ||
if (this.subscriptions.has(subscriptionId)) { | ||
this.$workflowService.unsubscribe(subscriptionId) | ||
this.subscriptions.delete(subscriptionId) |
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.
Looks good, though views may request multiple subscriptions.
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.
Are you suggesting a change here?
… tree at first burst of data (Pending pull request cylc#454, drop after rebase)
Note to self: this change came from #458 . Once/if this gets merged, I need to drop a commit there (otherwise I would have an extra subscription that was getting in the way) |
… tree at first burst of data (Pending pull request cylc#454, drop after rebase)
Code looks good, the only issue I see is what happens when subscriptions change. The old system, though inelegant allowed views to change their subscription whilst running. Some reasons why subscriptions will have to change on the fly:
|
Good point 👍 Maybe we can create an issue to either bring back some of the old code, or work on an improvement later? At least the part about starting, stopping/removing the subscriptions would stay anyway. |
Superseded by #458 |
… tree at first burst of data (Pending pull request cylc#454, drop after rebase)
… tree at first burst of data (Pending pull request cylc#454, drop after rebase)
… tree at first burst of data (Pending pull request cylc#454, drop after rebase)
… tree at first burst of data (Pending pull request cylc#454, drop after rebase)
These changes close #453
I think with this the subscriptions (and thus the final merged query) should be correct after the user has left the views modified here.
But will spend some more time writing some e2e tests as this issue has already happened before.
Requirements check-list
CONTRIBUTING.md
and added my name as a Code Contributor.