Create wizard: categorized server types with explanations (#46) - #60
Merged
Conversation
Create wizard: categorized server types with explanations (#46) The type picker was a flat grid of 9 names with no guidance. Group it into explained categories so someone new to the ecosystem can choose confidently. - CreateView: TYPE_CATEGORIES (vanilla / plugin / modded / hybrid / proxy) drives per-category sections — a heading, a one-line "what it is for" description, and cards with a short per-type blurb. Any creatable type not placed in a category falls into a trailing "other" group, so nothing disappears if CREATABLE_TYPES grows. A "Recommended" badge on vanilla / paper / fabric for newcomers. - Pure content + layout: still just setType(tp); what gets created is unchanged. - styles.css: type cards become left-aligned name + blurb; category headings/descriptions. .type-grid/.type-card are CreateView-only. - en/tr strings in lockstep (verified: 12 cat + 9 blurb keys each, no diff). Verify: typecheck + build; i18n key-parity grep; the categorised layout rendered in a browser engine with the real CSS classes (screenshot). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> @
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.
Closes #46. Part of the UX & access pass.
Why
The create wizard showed the 9 creatable server types as a flat grid of names with no guidance — someone new to Minecraft server software can't tell vanilla from a plugin server from a mod loader.
Changes
CreateView—TYPE_CATEGORIESgroups the picker into Vanilla / Plugin (Bukkit family) / Modded / Hybrid / Proxy, each rendered as a section with a heading, a one-line "what it's for" description, and cards carrying a short per-type blurb. Any creatable type not placed in a category falls into a trailing "other" group, so nothing silently disappears ifCREATABLE_TYPESgrows. A Recommended badge marks vanilla / paper / fabric for newcomers.setType(tp); what actually gets created is unchanged.styles.css— type cards become a left-aligned name + blurb column; category headings/descriptions added..type-grid/.type-cardare used only by CreateView (verified), so the restyle is isolated.Verify
typecheck,build— pass.wizard.cat.*and 9wizard.typeBlurb.*keys (no diff).