Skip to content
/ ui-lib Public

ui-lib is an ultra-lightweight, type-safe SSR component library with DOM-native state management, HTMX inside and hybrid reactivity. Built with ❤️ for the modern web.

License

Notifications You must be signed in to change notification settings

srdjan/ui-lib

Repository files navigation

ui-lib

Ultra-lightweight, type-safe SSR components with DOM-native state management and hybrid reactivity.

Features

  • 🌐 SSR-first, JSX-always rendering
  • 🧭 Light Functional Programming: types-first, pure functions, Result<T,E>, no classes
  • 🧩 DOM-native state: classes, data-* attributes, element content, CSS custom properties
  • 🔒 Composition-Only Pattern: Apps compose pre-styled components, enforcing UI consistency
  • 🎨 Zero Style Conflicts: No custom CSS in apps, 94% code reduction
  • 🕵️ HTMX encapsulated via component APIs (no hx-* in application code)
  • 📦 Component-colocated API, styles, and reactivity
  • 🔧 Type-safe end-to-end with strict TypeScript
  • 📚 50+ pre-styled components with rich variant APIs; progressive enhancement optional (zero framework runtime)

Quick Start

Choosing an Entry Point

Entry Point Use When Highlights
mod-token.ts Recommended: Token-based sealed components with CSS variable customization Block-level components only, token customization API, theme support
mod.ts Building applications through composition-only pattern Compose pre-styled library components, no custom CSS, enforced consistency
mod-simple.ts You want direct JSX functions and minimal ceremony. JSX runtime, lightweight state helpers, curated component subset.

Important: mod.ts enforces UI consistency by allowing applications to compose pre-styled library components only. Custom styles are reserved for library development. This ensures uniform UIs across all applications.

Installation

# Local clone (recommended)
git clone https://github.com/srdjan/ui-lib.git
cd ui-lib

# Dev server & tasks
deno task start         # type-check then start the Todo demo
deno task serve         # start the Todo demo directly
deno task bundle:state  # emits dist/ui-lib-state.js for optional client helpers

Basic Usage (Token-Based - Recommended)

import { applyTheme, Button, defineTokens, themes } from "ui-lib/mod-token.ts";

// Option 1: Use pre-built themes
const styles = applyTheme(themes.dark);

// Option 2: Define custom tokens
const customStyles = defineTokens({
  button: {
    primary: {
      background: "#007bff",
      backgroundHover: "#0056b3",
      textColor: "white",
    },
  },
});

// Use sealed components - no access to internals
const button = Button({
  variant: "primary",
  size: "md",
  children: "Click Me",
});

Basic Usage (Composition-Only)

import { defineComponent, h, render } from "ui-lib/mod.ts";
import { Card } from "ui-lib/components";

// Application components compose pre-styled library components
defineComponent("user-card", {
  render: ({ name = "Guest", role = "User" }) => (
    <card variant="elevated" padding="lg">
      <h2>{name}</h2>
      <p>{role}</p>
    </card>
  ),
});

// Use it (JSX + render to produce HTML on the server)
const html = render(<user-card name="Alice" role="Admin" />);

Why Composition-Only? Applications cannot add custom styles when using mod.ts. This enforces UI consistency, reduces code by 94%, and ensures all apps using ui-lib have a uniform look. Custom styling is reserved for library component development (see lib/internal.ts).

Note: In application code, call render(<Component />) to produce HTML. renderComponent is still available for low-level access when needed.

With Function-Style Props

import { boolean, defineComponent, h, number, string } from "ui-lib";
import { Button, Card } from "ui-lib/components";

defineComponent("counter", {
  render: ({
    label = string("Count"),
    value = number(0),
    disabled = boolean(false),
  }) => (
    <card variant="default" padding="md">
      <span>{label}: {value}</span>
      <button variant="primary" size="md" disabled={disabled}>
        Increment
      </button>
    </card>
  ),
});

// Type-safe usage (JSX-only in app code)
const html = <counter label="Items" value={5} />;

Composing Library Components

Applications build UIs by composing pre-styled library components with variants:

import { Alert, Badge, Button, Card } from "ui-lib/components";

const Page = () => (
  <>
    <alert variant="success">
      Operation completed!
    </alert>

    <card variant="elevated" padding="lg">
      <h2>
        Welcome <badge variant="primary">New</badge>
      </h2>
      <p>Get started with ui-lib's 50+ components</p>
      <button variant="primary" size="lg">
        Get Started
      </button>
    </card>
  </>
);

All components provide rich variant APIs (primary, secondary, success, danger, etc.) for customization without CSS.

API Integration

Components can define API endpoints and bind them to UI actions:

import { defineComponent, h } from "ui-lib";

defineComponent("todo-item", {
  api: {
    toggle: ["POST", "/api/todos/:id/toggle", toggleTodo],
    deleteTodo: ["DELETE", "/api/todos/:id", deleteTodo],
  },
  render: ({ id, text, done, priority }, api) => (
    // Compose library Item component with API bindings
    <item
      title={text}
      completed={done}
      priority={priority}
      badges={[{
        text: priority,
        variant: priority === "high" ? "danger" : "success",
      }]}
      actions={[
        { text: "Delete", variant: "danger", ...api.deleteTodo(id) },
      ]}
      icon={`<input type="checkbox" ${done ? "checked" : ""} ${
        api.toggle(id)
      } />`}
    />
  ),
});

The api property defines server endpoints and the library generates HTMX bindings automatically. Defaults (target/swap/headers) apply without explicit configuration.

Three-Tier Reactivity

Tier 1: CSS Property Reactivity

Instant visual updates via CSS custom properties:

defineComponent("theme-toggle", {
  reactive: {
    css: {
      "--theme": "data-theme",
    },
  },
  render: () => `<button onclick="toggleTheme()">Toggle Theme</button>`,
});

Tier 2: Pub/Sub State Manager

Cross-component state synchronization:

defineComponent("cart", {
  reactive: {
    state: {
      "cart-count": "data-count",
    },
  },
  render: () => `
    <div data-count="0">
      Cart Items: <span x-text="count">0</span>
    </div>
  `,
});

Tier 3: DOM Event Communication

Component-to-component messaging:

defineComponent("notification", {
  reactive: {
    on: {
      "user:login": "handleLogin",
    },
  },
  render: () => `<div id="notification"></div>`,
});

Token-Based Component System

Why Token-Based Components?

ui-lib components are sealed - they can only be customized through CSS variables (tokens). This ensures:

  • No style conflicts: Component internals are completely isolated
  • Consistent theming: All customization through standardized tokens
  • Type safety: Full IntelliSense for available tokens
  • Performance: CSS variables enable instant theming without re-rendering
  • Maintainability: Component updates won't break your customizations

Token Customization

import {
  customizeComponent,
  defineTokens,
  responsiveTokens,
} from "ui-lib/mod-token.ts";

// Global token overrides
const globalStyles = defineTokens({
  button: {
    primary: {
      background: "#FF5722",
      backgroundHover: "#E64A19",
    },
  },
});

// Scoped overrides for specific sections
const darkModeStyles = customizeComponent(".dark-mode", "button", {
  primary: {
    background: "#1a1a1a",
    textColor: "#ffffff",
  },
});

// Responsive token values
const mobileStyles = responsiveTokens("button", {
  mobile: { base: { fontSize: "0.75rem" } },
  desktop: { base: { fontSize: "1rem" } },
});

Component Library

ui-lib includes 50+ production-ready components (being migrated to token-based):

  • Layout: AppLayout, Navbar, Sidebar, MainContent
  • Forms: Input, Select, Textarea, Checkbox, Radio, Switch
  • Buttons: Button (token-based), ButtonGroup, IconButton
  • Data: Table, Card, List, Tree
  • Feedback: Alert, Toast, Progress, Skeleton
  • Overlays: Modal, Drawer, Popover, Tooltip
  • Navigation: Tabs, Breadcrumb, Pagination, Stepper
  • Display: Avatar, Badge, Tag, Chip

Examples

Run the showcase server to see all components in action:

# Start the Todo app demo
deno task serve

# Open http://localhost:8080

# Run token-based component demo
deno run --allow-net examples/todo-app/token-demo.tsx

Repo layout (examples)

examples/
└── todo-app/
    ├── server.tsx         # Traditional demo server entry
    ├── token-demo.tsx     # Token-based component demo
    ├── api/               # Handlers, types, repository
    └── components/        # SSR components with colocated API/styles/reactivity

Notes

  • Token-based API (recommended): import { Button, defineTokens } from 'ui-lib/mod-token.ts'
  • Traditional API: import { defineComponent } from 'ui-lib/mod.ts'
  • Simple API: import { h } from 'ui-lib/mod-simple.ts'

Performance

  • SSR rendering: ~0.5ms per component
  • Zero client runtime: No JavaScript framework needed
  • Tiny footprint: < 10KB for optional client enhancements
  • Streaming: Built-in support for streaming responses

Documentation

Development

# Type check
deno task check

# Run tests
deno task test

# Format code
deno task fmt

# Run examples
deno task serve

# Build documentation
deno task docs

Philosophy

ui-lib reimagines web components by embracing the platform:

  1. State belongs in the DOM - Not in JavaScript memory
  2. CSS is the styling language - Not JavaScript objects (for library components)
  3. HTML is the structure - Not virtual DOM trees
  4. Progressive enhancement - Not hydration
  5. Server-first - Not client-first with SSR bolted on
  6. Composition over customization - Apps compose pre-styled components with variants

Library Development

While applications use the composition-only pattern, library components have full styling capabilities:

// lib/components/my-component.ts
import { css, defineComponent } from "../../internal.ts";

defineComponent("my-component", {
  styles: css({
    padding: "1rem",
    backgroundColor: "var(--surface-bg)",
    // Full CSS-in-TS capabilities
  }),
  render: ({ variant = "default" }) => (
    <div class={`my-component my-component--${variant}`}>
      {/* component content */}
    </div>
  ),
});

Library components import from lib/internal.ts which provides unrestricted access to:

  • Full defineComponent with styles
  • CSS-in-TS system (css, createTheme, composeStyles)
  • Design tokens and theme system
  • All internal utilities

See Contributing Guide for details on developing library components.

License

MIT License - see LICENSE file for details.

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

Support

About

ui-lib is an ultra-lightweight, type-safe SSR component library with DOM-native state management, HTMX inside and hybrid reactivity. Built with ❤️ for the modern web.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published