refactor: split ObjectActions out of the ObjectInfo panel - #14
Open
ericgozzi wants to merge 3 commits into
Open
Conversation
ObjectInfo now shows metadata only. The backend-driven FUNCTIONS buttons/selects move into a new ObjectActions floating panel, anchored bottom-right so it doesn't interfere with ObjectInfo's existing full-height top-right layout. It only renders while there are actions to show. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
… reflow ObjectActions now docks in the top-right slot by default and only moves down when ObjectInfo actually opens, via a shared RightSidebar wrapper (mirrors Sidebar's Toolbar/Openbar pattern) using TransitionGroup for the slide/reflow animation. ObjectInfo also sizes to its metadata instead of always stretching the full column. Also fixes a real bug this surfaced: ObjectActions previously toggled via an internal v-if inside the TransitionGroup, so Vue treated every selection change (which briefly clears then repopulates the action list) as a full leave+enter cycle, momentarily rendering two panels with the same id while one slid out and another slid in. It now stays mounted and hides via CSS, so only the deliberate ObjectInfo open/close triggers the animation. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
gonzalocasas
requested changes
Aug 15, 2026
gonzalocasas
left a comment
Member
There was a problem hiding this comment.
LGTM except the same comment about not changing the changelog manually! ;)
For a follow up, it would be interesting to explore a more fully fledged theming capability
| :class="{ dark: theme.value === 'dark' }" | ||
| > | ||
| FUNCTIONS | ||
| METADATA |
Member
There was a problem hiding this comment.
Very tiny thing, but the titles of these panels in uppercase could be capitalized normally, e.g. Metadata and have the uppercasing be handled by CSS, so that if a theme on top wants to preserve capitalized titles, it's possible
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.
Summary
v-ifinside the reflowTransitionGroup, so every object-selection change (which briefly clears then repopulates the action list) was treated as a full leave+enter cycle, momentarily rendering two panels with the sameid. It now stays mounted and hides via CSS so only the deliberate ObjectInfo open/close animates.Test plan
npm run typechecknpm testnpm run build