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 timeline-chart library is intended to visualize timegraph data where the timegraph data can lazily loaded. For that the parent component will provide call backs to provide the data. The theia-trace-extenstion is one of the main user of the timeline-chart. To optimize the performance of loading the data certain mechanism have been implemented (main method of concern:
These optimizations where to due to the way the theia-trace-extensions fetches the data. However, such logic should not be inside the timeline-chart library, it should be handled in the component that uses it. The 'timeline-chart' should just display the model that is provided by the user component independent to if the data is collected in steps.
Due the tight coupling it will be harder and harder adding features and performance improvement to the timeline-chart library.
This tracker is to track the decoupling task that will extract theia-trace-extension specific logic and move it to the theia-trace-extension. It is expected that it will change the API of the timeline-chart library.
The text was updated successfully, but these errors were encountered:
The timeline-chart library is intended to visualize timegraph data where the timegraph data can lazily loaded. For that the parent component will provide call backs to provide the data. The theia-trace-extenstion is one of the main user of the timeline-chart. To optimize the performance of loading the data certain mechanism have been implemented (main method of concern:
timeline-chart/timeline-chart/src/layer/time-graph-chart.ts
Line 450 in 08fb2e6
These optimizations where to due to the way the
theia-trace-extensions
fetches the data. However, such logic should not be inside the timeline-chart library, it should be handled in the component that uses it. The 'timeline-chart' should just display the model that is provided by the user component independent to if the data is collected in steps.Due the tight coupling it will be harder and harder adding features and performance improvement to the timeline-chart library.
This tracker is to track the decoupling task that will extract
theia-trace-extension
specific logic and move it to thetheia-trace-extension
. It is expected that it will change the API of thetimeline-chart
library.The text was updated successfully, but these errors were encountered: