Back to Components
Component · Layout

RoomScope

Inert SSR wrapper that places a view region inside an ephemeral live room.

Category
Layout
Slots
4
States
3
Writer
Shared
cre8.primitive.room-scope

Preview

Live renderShared SSR + WASM writers
1 viewer

Room content with presence and cursor projection.

<RoomScope
  liveViewers={true}
  roomId="component-room-preview"
  sharedCursors={true}
  transport="broadcast"
  viewId="view.components.RoomScope"
>
  <Text
    text="Room content with presence and cursor projection."
    variant="p"
  />
</RoomScope>

Anatomy

The named parts of the rendered markup. Recipes style these hooks, and every renderer keeps them stable.

SlotDOM class
root.primitive-room-scope
body—
viewerCount—
cursorLayer—
cursor.primitive-room-scope__cursor
cursor-layer.primitive-room-scope__cursor-layer
viewers.primitive-room-scope__viewers
7 rows
State attribute
data-cre8-room-scopefrom the enabled prop
Hydration markers
data-cre8-room-scope

States and platforms

The states the contract publishes, the platforms it declares, and the style recipes that dress it.

States
connectedstaleoffline
Platforms
webnativeruntime-node
Recipes
unstyledruntime-console

Renderers

Shared writer
RoomScope renders through the one writer the server and the WASM DOM share, so both emit the same markup.

Every tag in the example above renders through a shared writer.

Declared adapters. A status is the manifest's declaration, not a measured parity result.

TargetRendererStatus
webreactexperimental
runtime-nodeview-nodeready
ssrhtml-semanticready
terminalterminal-layoutplanned
nativenative-adapterexperimental
5 rows

Accessibility

Semantic structure must stay available without visual styling.

  • Expose meaningful names for interactive controls.
  • Keep keyboard and pointer behavior equivalent where the platform supports it.
  • Publish state with native semantics and data attributes where the adapter supports them.