Composite Components
SkillDev toolsUse when authoring or refactoring composite React components in `@dxos/react-ui` and sibling UI packages, namespaced primitives like `Foo.Root` / `Foo.Trigger` / `Foo.Content` built around `forwardRef`, the `ark.*` factory's `asChild`, and a `tx()` theme function.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Composite Components skill
What this skill tells your AI
The instructions your AI receives, as published by dxos/dxos in .agents/skills/composite-components/SKILL.md and read by ahel’s review.
A "composite" is a namespaced React API like Dialog.Root / Dialog.Trigger / Dialog.Content, in the Radix/Ark anatomy style. Scaffolding — createContext, composeRefs/useComposedRefs, useControllableState, composeEventHandlers — comes from @dxos/react-hooks; polymorphic elements come from ark.<tag> (@ark-ui/react/factory), which takes asChild itself. Do not import @radix-ui/react-context, -slot, -primitive, -compose-refs or -use-controllable-state; the last three exist only inside react-ui's remaining Radix forks.
Exemplars
- Pure DXOS composite (no underlying behavioural primitive): packages/ui/react-ui/src/components/Panel/Panel.tsx.
- Ark-wrapping composite (each part wraps an
@ark-ui/react/<component>part): packages/ui/react-ui/src/components/Splitter/Splitter.tsx. - Radix-wrapping composite (legacy, being migrated — see
react-ui/docs/MIGRATION.md): packages/ui/react-ui/src/components/Dialog/Dialog.tsx.
Read both before writing a new one.
Two construction styles
Pick one style per part — never mix forms inside a single part.
Style A — slottable() / composable() (pure DXOS)
Use when the part renders a plain DXOS element (a div, span, etc.) and does not wrap a behavioural primitive.
const FooContent = slottable<HTMLDivElement>(({ children, asChild, ...props }, forwardedRef) => {
const { className, ...rest } = composableProps(props);
const { tx } = useThemeContext();
return (
<ark.div asChild={asChild} {...rest} className={tx('foo.content', {}, className)} ref={forwardedRef}>
{children}
</ark.div>
);
});
FooContent.displayName = 'Foo.Content';
slottable() (from ../util) auto-forwardRefs, validates asChild children against the COMPOSABLE symbol, and threads composableProps. Use composable() for leaf parts that don't need an asChild branch but should still be valid asChild children. ark.<tag> merges the part's props into its single child under asChild (className joined, style merged, handlers both called); there is no Slottable — a part that renders siblings beside the slotted child renders them itself.
Style B — forwardRef wrapping a behavioural primitive
Use when the part wraps an @ark-ui/react/<component> (or, in legacy code, @radix-ui/react-*) part that already provides asChild, ref forwarding, and ARIA wiring.
const FooTitle = forwardRef<HTMLHeadingElement, FooTitleProps>(({ classNames, ...props }, forwardedRef) => {
const { tx } = useThemeContext();
return <FooPrimitive.Title {...props} className={tx('foo.title', {}, classNames)} ref={forwardedRef} />;
});
FooTitle.displayName = 'Foo.Title';
For pure pass-through aliases, drop the explicit type — let the alias inherit the primitive's type (preserves forwardRef):
const FooTrigger = FooPrimitive.Trigger;
const FooPortal = FooPrimitive.Portal;
const FooClose = FooPrimitive.Close;
Do not annotate aliases as FunctionComponent<...> — it strips ref support from the type.
Rules
- Prefix internal names:
FooRoot,FooTrigger,FooRootProps. The unprefixedRoot/Triggerform appears only as keys in the final namespace object (export const Foo = { Root: FooRoot, ... }). displayNameis dotted and matches the consumer API:'Foo.Root','Foo.Overlay'— not'FooRoot'or'FooOverlay'. Set it on every part, includingslottable()/composable()ones (the helper does not set it automatically).- Namespace assembly is an object literal. No
Object.assign, noimport * as Foo:export const Foo = { Root: FooRoot, Trigger: FooTrigger, // ... }; - Export every part's Props type:
export type { FooRootProps, FooTriggerProps /* ... */ }; - Section comments delimit each part:
They are cheap structure and make large composite files navigable.// // Root // - Theme tokens: classNames flow through
tx('foo.part', variants, classNames). Forslottable/composableparts, usecomposableProps(props)to reconcile the consumer'sclassNameswith anyclassNameinjected by a parentSlot. Theme tokens live in a siblingFoo.theme.tsregistered withui-theme. - Props convention: extend
SlottableProps<P>(orComposableProps<P>) from@dxos/ui-typesfor native parts; extendThemedClassName<FooPrimitive.SomeProps>for primitive-wrapping parts. UseclassNames(consumer-facing) — never exposeclassNamedirectly. - Context: prefer
createContextfrom@dxos/react-hooksover React's plaincreateContext(it returns a typed[Provider, useContext]tuple whose provider takes the fields as props and whose hook throws a part-named error when unprovided). There is no scoped variant: "which Foo does this part belong to" is answered by nesting providers, or by the Ark machine'sRootProviderfor Ark-backed composites. The__scope*props still inTooltip/Popover/Menubelong to the Radix forks and leave with them. - No
as anydisplayNames. If a part is a plain function component you can't otherwise tag, wrap it incomposable()sodisplayNameis a typed property. - One file per composite family (
Foo.tsx). Don't split parts across files.
Counter-examples to avoid
'DialogOverlay'displayName → should be'Dialog.Overlay'.const DialogClose: FunctionComponent<DialogCloseProps> = DialogPrimitive.Close→ drop the annotation.(CardMenu as any).displayName = 'Card.Menu'→ wrapCardMenuincomposable()instead.- Re-exporting a foreign part inside the namespace (e.g.,
Card.ToolbarIconButton: Toolbar.IconButton) → consumers should importToolbar.IconButtondirectly. - A
Foo.tsxfile that mixesslottable()parts with bareforwardRefparts that render plain divs — pickslottable()for both.
Signals
- GitHub stars
- 520
- Forks
- 49
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
composite-components- Source
- github.com/dxos/dxos