Components
RefaceComposer provides a component system for building reusable templates.
Basic Components
Function Components
example.typescripttypescript
1// Simple component2function Button({ text }: { text: string }) {3 return <button>{text}</button>;4}56// Usage7<Button text="Click me" />;89// With children10function Container({ children }: { children: ElementChild[] }) {11 return <div class="container">{children}</div>;12}1314// Usage15<Container>16 <h1>Title</h1>17 <p>Content</p>18</Container>;
Template Literals
example.typescripttypescript
1import { html } from "@reface/core";23// HTML template4const template = html`5 <div class="container">6 <h1>Title</h1>7 <p>Content</p>8 </div>9`;1011// With interpolation12const name = "John";13const greeting = html`<div>Hello ${name}!</div>`;
Mixed Usage
Components with Template Literals
example.typescripttypescript
1function Layout({2 title,3 children,4}: {5 title: string;6 children: ElementChild[];7}) {8 return html`9 <div class="layout">10 <header>${title}</header>11 <main>${children}</main>12 </div>13 `;14}1516// Usage17<Layout title="My Page">18 <div>Content</div>19</Layout>;
Element Creation
example.typescripttypescript
1import { createElement } from "@reface/core";23const div = createElement("div");4const span = createElement("span");56// Usage7div({ class: "container" })`8 ${span({ class: "text" })`Hello`}9 ${span({ class: "text" })`World`}10`;
Type Safety
Props Validation
example.typescripttypescript
1interface ButtonProps {2 variant: "primary" | "secondary";3 size?: "small" | "medium" | "large";4 disabled?: boolean;5 onClick?: () => void;6}78function Button({ variant, size = "medium", disabled, onClick }: ButtonProps) {9 return (10 <button11 class={`btn btn-${variant} btn-${size}`}12 disabled={disabled}13 onClick={onClick}14 />15 );16}
Children Types
example.typescripttypescript
1// Single child2interface SingleChildProps {3 children: ElementChild;4}56// Multiple children7interface MultipleChildrenProps {8 children: ElementChild[];9}1011// Optional children12interface OptionalChildrenProps {13 children?: ElementChild | ElementChild[];14}
Best Practices
Component Design
Keep components focused
Use TypeScript interfaces
Follow single responsibility
Implement proper error handling
Performance
Minimize nesting
Use fragments when needed
Optimize templates
Cache when possible
Maintainability
Clear naming
Document props
Consistent patterns
Unit tests
Accessibility
Semantic HTML
ARIA attributes
Keyboard support
Screen reader testing