Plugins
RefaceComposer's plugin system allows extending the template composition process.
Core Plugin System
Basic Plugin Structure
1import type { IPlugin } from "@reface/core";23class CustomPlugin implements IPlugin {4 name = "custom";56 setup(composer: RefaceComposer) {7 const manager = composer.getRenderManager();8 // Plugin initialization9 }10}1112// Usage13const composer = new RefaceComposer();14composer.use(new CustomPlugin());
Official Plugins
Styled Plugin
CSS-in-JS support with type safety:
1import { StyledPlugin } from "@reface/plugins/styled";23const composer = new RefaceComposer();4composer.use(new StyledPlugin());56// Create styled component7const Button = styled.button`8 & {9 background: blue;10 color: white;11 }1213 &:hover {14 background: darkblue;15 }16`;1718// Extend existing component19const PrimaryButton = styled(Button)`20 & {21 padding: 1rem 2rem;22 border-radius: 4px;23 }24`;
Partials Plugin
Interactive components with HTMX integration:
1import { PartialsPlugin } from "@reface/plugins/partials";23const composer = new RefaceComposer();4composer.use(new PartialsPlugin());56// Create interactive component7const Counter = partial(async () => {8 const count = 0;9 return (10 <div>11 <span>{count}</span>12 <button {...Counter.trigger()}>Increment</button>13 </div>14 );15}, "counter");1617// With custom trigger18const SearchBox = partial(async () => {19 return (20 <div>21 <input type="text" />22 <button {...SearchBox.trigger("keyup delay:500ms from:input")}>23 Search24 </button>25 </div>26 );27}, "search");
Plugin Interface
1interface IPlugin {2 name: string;3 setup(composer: RefaceComposer): void | Promise<void>;4}
Render Pipeline Hooks
1class LoggerPlugin implements IPlugin {2 name = "logger";34 setup(composer: RefaceComposer) {5 const manager = composer.getRenderManager();67 // Before render hook8 manager.on("render.render.start", ({ template }) => {9 console.log("Starting render:", template);10 });1112 // After render hook13 manager.on("render.render.end", ({ html }) => {14 console.log("Rendered HTML:", html);15 });16 }17}
Available Hooks
render.render.start/end - Full render cycle
render.template.start/end - Template processing
render.child.start/end - Child element processing
render.children.start/end - Multiple children processing
render.attributes.start/end - Attribute handling
render.class.start/end - Class attribute processing
render.style.start/end - Style attribute processing
Plugin Storage
1class StatePlugin implements IPlugin {2 name = "state";34 setup(composer: RefaceComposer) {5 const manager = composer.getRenderManager();67 // Store plugin data8 manager.store.set("state", { count: 0 });910 // Access plugin data11 const state = manager.store.get("state");12 }13}
Best Practices
Plugin Design
Single responsibility
Clear initialization
Proper error handling
TypeScript support
Performance
Minimal overhead
Efficient hooks
Resource cleanup
Caching when possible
Integration
Plugin dependencies
Version compatibility
Documentation
Examples
Testing
Unit tests
Integration tests
Performance tests
Error scenarios
Development Guide
Setup
Create plugin class
Implement IPlugin interface
Define clear API
Add TypeScript types
Implementation
Add render hooks
Handle errors
Add cleanup
Optimize performance
Documentation
API reference
Usage examples
Configuration options
Best practices
Distribution
Package structure
Dependencies
Version management
Release notes