new-component
Create new GPUI components. Use when building components, writing UI elements, or creating new component implementations.
Install
mkdir -p .claude/skills/new-component && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8342" && unzip -o skill.zip -d .claude/skills/new-component && rm skill.zipInstalls to .claude/skills/new-component
About this skill
Instructions
When creating new GPUI components:
- Follow existing patterns: Base implementation on components in
crates/ui/src(examples:Button,Select,Dialog) - Style consistency: Follow existing component styles and Shadcn UI patterns
- Component type decision:
- Use stateless elements for simple components (like
Button) - Use stateful elements for complex components with data (like
SelectandSelectState) - Use composition for components built on existing components (like
AlertDialogbased onDialog)
- Use stateless elements for simple components (like
- API consistency: Maintain the same API style as other elements
- Documentation: Create component documentation
- Stories: Write component stories in the story folder
- Registration: Add the component to
crates/story/src/main.rsstory list
Component Types
- Stateless: Pure presentation components without internal state (e.g.,
Button) - Stateful: Components that manage their own state and data (e.g.,
Select) - Composite: Components built on top of existing components (e.g.,
AlertDialogbased onDialog)
Implementation Steps
1. Create Component File
Create a new file in crates/ui/src/ (e.g., alert_dialog.rs):
use gpui::{App, ClickEvent, Pixels, SharedString, Window, px};
use std::rc::Rc;
pub struct AlertDialog {
pub(crate) variant: AlertVariant,
pub(crate) title: SharedString,
// ... other fields
}
impl AlertDialog {
pub fn new(title: impl Into<SharedString>) -> Self {
// implementation
}
// Builder methods
pub fn description(mut self, desc: impl Into<SharedString>) -> Self {
// implementation
}
}
2. Register in lib.rs
Add the module to crates/ui/src/lib.rs:
pub mod alert_dialog;
3. Extend WindowExt (if needed)
For dialog-like components, add helper methods to window_ext.rs:
pub trait WindowExt {
fn open_alert_dialog(&mut self, alert: AlertDialog, cx: &mut App);
}
4. Create Story
Create crates/story/src/stories/alert_dialog_story.rs:
pub struct AlertDialogStory {
focus_handle: FocusHandle,
}
impl Story for AlertDialogStory {
fn title() -> &'static str {
"AlertDialog"
}
fn new_view(window: &mut Window, cx: &mut App) -> Entity<impl Render> {
Self::view(window, cx)
}
}
5. Register Story
Add to crates/story/src/stories/mod.rs:
mod alert_dialog_story;
pub use alert_dialog_story::AlertDialogStory;
Add to crates/story/src/main.rs in the stories list:
vec![
StoryContainer::panel::<AlertStory>(window, cx),
StoryContainer::panel::<AlertDialogStory>(window, cx), // Add here
// ...
]
Real Example: AlertDialog
AlertDialog is a composite component based on Dialog with these features:
- Simpler API: Pre-configured for common alert scenarios
- Center-aligned layout: All content (icon, title, description, buttons) is center-aligned
- Vertical layout: Icon appears at the top, followed by title and description
- Auto icons: Automatically shows icons based on variant (Info, Success, Warning, Error)
- Convenience constructors:
AlertDialog::info(),AlertDialog::warning(), etc.
Key Design Decisions:
descriptionusesSharedStringinstead ofAnyElementbecause the Dialog builder needs to beFn(callable multiple times), andAnyElementcannot be cloned- Implementation is in
window_ext.rsusing Dialog as the base, not as a separate IntoElement component - Center-aligned layout: Icon is positioned at the top (not left), all text is center-aligned for a more focused alert appearance
- Footer center-aligned: Buttons are centered, different from Dialog's default right-aligned footer
Usage:
window.open_alert_dialog(
AlertDialog::warning("Unsaved Changes")
.description("You have unsaved changes.")
.show_cancel(true)
.on_confirm(|_, window, cx| {
window.push_notification("Confirmed", cx);
true
}),
cx,
);
Common Patterns
Builder Pattern
All components use the builder pattern for configuration:
AlertDialog::new("Title")
.description("Description")
.width(px(500.))
.on_confirm(|_, _, _| true)
Size Variants
Implement Sizable trait for components that support size variants (xs, sm, md, lg).
Variants
Use enums for visual variants (e.g., AlertVariant::Info, ButtonVariant::Primary).
Styled Trait Implementation
Components that render as a single container element should implement Styled to allow callers to customize styles. The pattern uses a StyleRefinement field and refine_style() from StyledExt:
use gpui::{AnyElement, App, IntoElement, ParentElement, RenderOnce, StyleRefinement, Styled, Window, div};
use crate::StyledExt as _;
#[derive(IntoElement)]
pub struct MyComponent {
style: StyleRefinement,
children: Vec<AnyElement>,
}
impl MyComponent {
pub fn new() -> Self {
Self {
style: StyleRefinement::default(),
children: Vec::new(),
}
}
}
impl ParentElement for MyComponent {
fn extend(&mut self, elements: impl IntoIterator<Item = AnyElement>) {
self.children.extend(elements);
}
}
impl Styled for MyComponent {
fn style(&mut self) -> &mut StyleRefinement {
&mut self.style
}
}
impl RenderOnce for MyComponent {
fn render(self, _: &mut Window, _: &mut App) -> impl IntoElement {
div()
// ... component's default styles ...
.refine_style(&self.style) // Apply user's style overrides
.children(self.children)
}
}
Key points:
- Add
style: StyleRefinementfield initialized withStyleRefinement::default() - Implement
Styledtrait returning&mut self.style - In
render(), call.refine_style(&self.style)on the root div to merge user styles - Place
.refine_style()after component defaults but before.children()so user styles override defaults - Reference:
crates/ui/src/dialog/header.rs(DialogHeader),crates/ui/src/table/table.rs(Table and sub-components)
Callbacks
Use Rc<dyn Fn> for callbacks that may be called multiple times:
on_confirm: Option<Rc<dyn Fn(&ClickEvent, &mut Window, &mut App) -> bool + 'static>>
More by longbridge
View all skills by longbridge →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversCreate modern React UI components instantly with Magic AI Agent. Integrates with top IDEs for fast, stunning design and
Access 135+ animated React UI components from ReactBits.dev with intelligent caching, dependency detection, and quality
FlyonUI is a React UI library for accessing component code, block metadata, and building workflows with conversational c
Access Tyler Forge’s design system, React UI library, component APIs, and framework guides for seamless app development
MCP server connects Claude and AI coding tools to shadcn/ui components. Accurate TypeScript props and React component da
AI developer tools for building UIs and APIs: AegisX MCP offers a CRUD code generator, component docs, dev patterns, and
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.