You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main goal is to optimize the rendering of Blazor components. One way to achieve this is to prevent rendering that is triggered by a property not used in the Blazor component. It's necessary for the component to remember the last state of selected properties and allow rendering only based on their changes.
I propose to add to the compiler:
functions for working with POCO objects due to the comparison of base type values.
a function for directly filling an existing POCO object without reading/accessing the connector.
Implement filtering in ShouldRender() in RenderableContentControl for the array of changes of selected base properties.
The text was updated successfully, but these errors were encountered:
* Create draft PR for #276
* adds methods to check whether online data changed
- comparison is made via Poco objects
- when POCO is compiler ignored limits use for members not present in POCO type
* lf fix
* adds mechanism to check whether StateChange should be called on primitive change.
- the mechanism checks that the given primitive is part of given components polling queue.
* fixing tests
* asp
* asp
---------
Co-authored-by: PTKu <61538034+PTKu@users.noreply.github.com>
The main goal is to optimize the rendering of Blazor components. One way to achieve this is to prevent rendering that is triggered by a property not used in the Blazor component. It's necessary for the component to remember the last state of selected properties and allow rendering only based on their changes.
I propose to add to the compiler:
Implement filtering in
ShouldRender()
inRenderableContentControl
for the array of changes of selected base properties.The text was updated successfully, but these errors were encountered: