Skip to content

Commit

Permalink
Rename space view to view everywhere (#8396)
Browse files Browse the repository at this point in the history
So far we sometimes called it space view and sometimes just view. This
PR cleans up the repository & docs to just call it view.

This comes with a few smaller breaking changes, see migration guide.
Luckily this very rarely affects user facing types as illustrated by how
the lack of changes in our samples & snippets

* [x] pass full check
  • Loading branch information
Wumpf authored Dec 10, 2024
1 parent cc23b04 commit 3aaeb46
Show file tree
Hide file tree
Showing 426 changed files with 4,483 additions and 4,674 deletions.
48 changes: 24 additions & 24 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ Of course, this will only take us so far. In the future we plan on caching queri
Here is an overview of the crates included in the project:

<picture>
<img src="https://static.rerun.io/crates/35c2f18eb941ec321c6d19f5a763f0ac542ca2ed/full.png" alt="">
<source media="(max-width: 480px)" srcset="https://static.rerun.io/crates/35c2f18eb941ec321c6d19f5a763f0ac542ca2ed/480w.png">
<source media="(max-width: 768px)" srcset="https://static.rerun.io/crates/35c2f18eb941ec321c6d19f5a763f0ac542ca2ed/768w.png">
<source media="(max-width: 1024px)" srcset="https://static.rerun.io/crates/35c2f18eb941ec321c6d19f5a763f0ac542ca2ed/1024w.png">
<source media="(max-width: 1200px)" srcset="https://static.rerun.io/crates/35c2f18eb941ec321c6d19f5a763f0ac542ca2ed/1200w.png">
<img src="https://static.rerun.io/architecture/1cc75ea6e625e77e94996b1c9aef8a0cca08bfcc/full.png" alt="">
<source media="(max-width: 480px)" srcset="https://static.rerun.io/architecture/1cc75ea6e625e77e94996b1c9aef8a0cca08bfcc/480w.png">
<source media="(max-width: 768px)" srcset="https://static.rerun.io/architecture/1cc75ea6e625e77e94996b1c9aef8a0cca08bfcc/768w.png">
<source media="(max-width: 1024px)" srcset="https://static.rerun.io/architecture/1cc75ea6e625e77e94996b1c9aef8a0cca08bfcc/1024w.png">
<source media="(max-width: 1200px)" srcset="https://static.rerun.io/architecture/1cc75ea6e625e77e94996b1c9aef8a0cca08bfcc/1200w.png">
</picture>


Expand Down Expand Up @@ -125,25 +125,25 @@ Update instructions:

##### UI crates

| Crate | Description |
|-----------------------------|------------------------------------------------------------------------------------------------------------|
| re_blueprint_tree | The UI for the blueprint tree in the left panel. |
| re_chunk_store_ui | A chunk store browser UI. |
| re_component_ui | Provides UI editors for Rerun component data for registration with the Rerun Viewer component UI registry. |
| re_selection_panel | The UI for the selection panel. |
| re_space_view | Types & utilities for defining Space View classes and communicating with the Viewport. |
| re_space_view_bar_chart | A Space View that shows a single bar chart. |
| re_space_view_dataframe | A Space View that shows the data contained in entities in a table. |
| re_space_view_graph | A Space View that shows a graph (node-link diagram). |
| re_space_view_map | A Space View that shows geospatial data on a map. |
| re_space_view_spatial | Space Views that show entities in a 2D or 3D spatial relationship. |
| re_space_view_tensor | A Space View dedicated to visualizing tensors with arbitrary dimensionality. |
| re_space_view_text_document | A simple Space View that shows a single text box. |
| re_space_view_text_log | A Space View that shows text entries in a table and scrolls with the active time. |
| re_space_view_time_series | A Space View that shows plots over Rerun timelines. |
| re_time_panel | The time panel of the Rerun Viewer, allowing to control the displayed timeline & time. |
| re_viewer | The Rerun Viewer |
| re_viewport | The central viewport panel of the Rerun viewer. |
| Crate | Description |
|-----------------------------|------------------------------------------------------------------------------------------------------|
| re_blueprint_tree | The UI for the blueprint tree in the left panel. |
| re_chunk_store_ui | A chunk store browser UI. |
| re_component_ui | Provides UI editors for Rerun component data for registration with the Rerun Viewer component UI registry. |
| re_selection_panel | The UI for the selection panel. |
| re_view | Types & utilities for defining View classes and communicating with the Viewport. |
| re_view_bar_chart | A View that shows a single bar chart. |
| re_view_dataframe | A View that shows the data contained in entities in a table. |
| re_view_graph | A View that shows a graph (node-link diagram). |
| re_view_map | A View that shows geospatial data on a map. |
| re_view_spatial | Views that show entities in a 2D or 3D spatial relationship. |
| re_view_tensor | A View dedicated to visualizing tensors with arbitrary dimensionality. |
| re_view_text_document | A simple View that shows a single text box. |
| re_view_text_log | A View that shows text entries in a table and scrolls with the active time. |
| re_view_time_series | A View that shows plots over Rerun timelines. |
| re_time_panel | The time panel of the Rerun Viewer, allowing to control the displayed timeline & time. |
| re_viewer | The Rerun Viewer |
| re_viewport | The central viewport panel of the Rerun viewer. |


##### UI support crates
Expand Down
Loading

0 comments on commit 3aaeb46

Please sign in to comment.