feat(view): embeddable views, process/object dashboard, shared BaseDataView#1
Merged
Merged
Conversation
- Add BaseDataView mixin holding the unit controls, plot/log/config cards, value to numeric conversion, axis labels, load trigger and servable shared by DataToolView and ProcessObjectView (LiveDataToolView unaffected) - Rework the process_dashboard example docstring - Add docs/generate_process_screenshots.py, demo GIF and screenshots - Add a ProcessObjectView section to the README
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the process/object-centered dashboard and refactors the view layer.
ProcessObjectView: object-centered archive view with two trees (objects;process types to channels). Co-presence-aware aggregation collapses the tree
selection (drop-in tools merge; co-present tools stay separate), then fans out
to every real channel each object has data on, normalized to t=0 per run and
grouped by characteristic. Pure logic in
_process_utils.pyis UI-free andunit-tested.
DataToolView: embeddable (sidebar_cards/main_cards),set_time_range.BaseDataViewmixin shared by both views (unit controls, plot/log/configcards, value conversion, axis labels, servable).
LiveDataToolViewunaffected.Tests: base view + process (50) and lab live-stream + controller (43) pass.