thi.ng/hiccup
Overview
Lightweight HTML/SVG/XML serialization of plain, nested data structures, iterables & closures. Inspired by Hiccup and Reagent for Clojure/ClojureScript.
Forget all the custom toy DSLs for templating and instead use the full power of ES6 to directly define fully data-driven, purely functional and easily composable components for static serialization to HTML & friends.
Features
- Only uses arrays, functions, ES6 iterables / iterators / generators
- Eager & lazy component composition using embedded functions / closures
- Support for self-closing tags (incl. validation), boolean attributes
- Dynamic element attribute value generation via functions
- CSS formatting of
style
attribute objects - Optional HTML entity encoding
- Small (2.2KB minified) & fast
*) Lazy composition here means that functions are only executed at serialization time. Examples below...
No special sauce needed (or wanted)
Using only vanilla language features simplifies the development, composability, reusability and testing of components. Furthermore, no custom template parser is required and you're only restricted by the expressiveness of the language / environment, not by your template engine.
Components can be defined as simple functions returning arrays or loaded via JSON/JSONP.
What is Hiccup?
For many years, Hiccup has been the de-facto standard to encode HTML/XML datastructures in Clojure. This library brings & extends this convention into ES6. A valid Hiccup tree is any flat (though, usually nested) array of the following possible structures. Any functions embedded in the tree are expected to return values of the same structure. Please see examples & API further explanations...
"tag" ..."tag#id.class1.class2" ..."tag" other: "attrib" ... ..."tag" ... "body" 23
Installation
npm i thing-hiccup
Examples
h = ;
Tags with Zencoding expansion
Tag names support Zencoding/Emmet style ID & class attribute expansion:
h;
Look ma, no magic!
Attributes
Arbitrary attributes can be supplied via an optional 2nd array element. style
attributes can be given as CSS string or as an object. Boolean attributes are
serialized in HTML5 syntax (i.e. present or not, but no values).
If the 2nd array element is not a plain object, it's treated as normal child node (see previous example).
h;
WARNING
If an attribute specifies a function as value, the function is called with the entire attribute object as argument. This allows for the dynamic generation of attribute values, based on existing ones. The result MUST be a string.
"div#foo" attribsid + "-bar"
Simple components
const thumb = "img.thumb" src alt: "thumbnail" ; h;
SVG generation, generators & lazy composition
const fs = ; // creates an unstyled SVG circle elementconst circle = "circle" cx: x | 0 cy: y | 0 r: r | 0 ; // note how this next component lazily composes `circle`.// This form delays evaluation of the `circle` component// until serialization time.// since `circle` is in the head position of the returned array// all other elements are passed as args when `circle` is calledconst randomCircle = circle Math * 1000 Math * 1000 Math * 100; // generator to produce iterable of `n` calls to `fn` { while n-- > 0 ;} // generate 100 random circles and write serialized SVG to file// `randomCircle` is wrappedconst doc = "svg" xmlns: hSVG_NS width: 1000 height: 1000 "g" fill: "none" stroke: "red" ; fs;
...
Data-driven component composition
// dataconst glossary = foo: "widely used placeholder name in computing" bar: "usually appears in combination with 'foo'" hiccup: "de-facto standard format to define HTML in Clojure" toxi: "author of this fine library"; // Helper function: takes a function `f` and object `items`,// executes fn for each key (sorted) in object and returns array of resultsconst objectList = Object; // single definition list item component (returns pair of <dt>/<dd> tags)const dlItem = "dt" key "dd" indexkey; // full definition list componentconst dlList = "dl" attribs objectList dlItem items; // finally the complete widgetconst widget = "div.widget" "h1" "Glossary" dlList id: "glossary" glossary; // the 2nd arg `true` enforces HTML entity encoding (off by default)h;
Glossary bar usually appears in combination with 'foo' foo widely used placeholder name in computing hiccup de-facto standard format to define HTML in Clojure toxi author of this fine library
Stateful component
// stateful component to create hierarchically// indexed & referencable section headlines:// e.g. "sec-1.1.2.3"const indexer = { let counts = 6; return { countslevel - 1++; counts; return "a" name: "sec-" + counts "h" + level title ; };}; const TOC = 1 "Document title" 2 "Preface" 3 "Thanks" 3 "No thanks" 2 "Chapter" 3 "Exercises" 4 "Solutions" 2 "The End"; // create new indexer instanceconst section = ; h;
Document title Preface Thanks No thanks Chapter Exercises Solutions The End
API
The library exposes these two functions:
serialize(tree, escape = false): string
Recursively normalizes and then serializes given tree as HTML/SVG/XML string.
If escape
is true, HTML entity replacement is applied to all element body & attribute values.
Any embedded component functions are expanded with their results. A normalized element has one of these shapes:
// no body"div" attribs... // with body"div" ... "a" "b" ... // iterable of normalized elementsiteratable
Tags can be defined in "Zencoding" convention, i.e.
["div#foo.bar.baz", "hi"] => <div id="foo" class="bar baz">hi</div>
Note: It's an error to specify IDs and/or classes in Zencoding convention and in a supplied attribute object. However, either of these are valid:
"div#foo" class: "bar" // <div id="foo" class="bar"></div>"div.foo" id: "bar" // <div id="bar" class="foo"></div>
The presence of the attributes object is optional. If the 2nd array index is not a plain object, it'll be treated as normal child of the current tree node.
Any null
or undefined
values (other than in head position)
will be removed, unless a function is in head position.
In this case all other elements of that array are passed as
arguments when that function is called.
const myfunc = "div" id: a class: c b;
Will result in:
<!-- the `null` element has been ignored during serialization -->
The function's return value MUST be a valid new tree (or undefined
).
Functions located in other positions are called without args
and can return any (serializable) value (i.e. new trees, strings,
numbers, iterables or any type with a suitable .toString()
implementation).
escape(str: string): string
Helper function. Applies HTML entity replacement on given string.
If serialize()
is called with true
as 2nd argument, entity encoding
is done automatically (list of entities considered).
Building
Build requirements
Building & testing this project requires Typescript and Mocha globally installed:
npm i typescript mocha -g
cd thing-hiccup
npm up
npm run build
Testing
npm link mocha
npm run test
Authors
- Karsten Schmidt
License
Apache Software License 2.0