feat: add setting description popovers on hover#46
Open
RonenMars wants to merge 1 commit into
Open
Conversation
Add info icon popovers to setting items that display the full Ghostty schema description on hover. Introduces a schema utility module (schema.ts) for looking up descriptions by setting ID, and updates the Item component with a hover-triggered popover UI.
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 contextual info popovers to each setting item, displaying the full Ghostty documentation description on hover. This gives users quick access to what each setting does without leaving the app.
Demo
Each setting with a known description gets a small
ⓘicon next to its name. Hovering over it shows a positioned popover with the full description from the Ghostty schema.How it works
getSettingDescription(id)maps camelCase setting IDs → kebab-case schema keysghostty-schema.ts(auto-generated from Ghostty'sConfig.zig)getBoundingClientRect(), clamped to viewportscaletransition (150ms, starts at 0.95) for smooth appear/disappearChanges
src/lib/utils/schema.ts(new)camelToKebab(id)— converts camelCase setting IDs to kebab-case keys for schema lookup, handling edge cases likex11InstanceName→x11-instance-nameand consecutive capitalsgetSettingDescription(id)— looks up a setting's description in the Ghostty schema by IDsrc/lib/components/settings/Item.sveltesettingIdpropⓘSVG) next to the setting name when a description is availablebackdrop-filter: blur) matching the app's aestheticsrc/routes/settings/[category]/+page.sveltesettingId={setting.id}to each<Item>componentDesign decisions