Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.11 KB

utilities.md

File metadata and controls

26 lines (19 loc) · 1.11 KB

Utilities

Component's source string

Sometimes you might need to print a component's source as a string. The most common use case would be when building a design system where it's useful to display the source alongside live UI. Instead of writing code twice (as UI code and as source string) and keeping it in sync, it is possible to print the UI code directly.

uix.core/source macro does exactly that, it takes a reference to a component and returns its source string at compile-time:

(ns app.ui
  (:require [uix.core :refer [$ defui]]
            [uix.dom]))

(defui button [props]
  ($ :button.btn props))

;; renders code block with `button`s source
(uix.dom/render ($ :pre (uix.core/source button))
                (js/document.getElementById "root"))

Transforming HTML and Hiccup to UIx

uix.dev ns exposes two functions:

  • uix.dev/from-hiccup takes a vector of Hiccup and returns UIx element
  • uix.dev/from-html takes a string of HTML and returns a collection of UIx elements

Some example are available in the source.