-
Notifications
You must be signed in to change notification settings - Fork 2k
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
farmer|gui: Enable paginated plot loading and improved state reporting #11367
Conversation
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
e920e70
to
bbcae57
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
- Only send the data for the harvester which actually sent an update - Notify for each loaded batch during initial loading
bbcae57
to
4c03c9b
Compare
70679c1 is ready for review but GUI will probably receive another update in a bit with small style changes. |
4c03c9b
to
be9a6de
Compare
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.
approved
#11367) * farmer: Adjust notifications from the farmer to the UI - Only send the data for the harvester which actually sent an update - Notify for each loaded batch during initial loading * Enable improved farmer/harvester GUI
This PR pins the new GUI and changes the event which gets sent from the farmer to the GUI which was previously called
new_plots
with the payload ofget_harvesters
with the plots of all harvesters.Now with this PR the event gets renamed to
harvester_update
and it:get_harvester_summay
) for the harvester which actually sent an updateThere is also a new state changed event called
harvester_removed
which gets triggered by the farmer if the harvester was disconnected and has the payload{"node_id": <node_id of the harvester which was removed>}
Based on #11342 and required #11365