A Fine-Grained Rendering Runtime API using HyperScript




This package is a Runtime API built for DOM Expressions to provide HyperScript DSL for reactive libraries that do fine grained change detection. While the JSX plugin Babel Plugin JSX DOM Expressions is more optimized with precompilation, smaller size, and cleaner syntax, this HyperScript solution has the flexibility of not being precompiled. However, Tagged Template Literals are likely a better choice in terms of performance in non-compiled environments Lit DOM Expressions.
Install alongside the DOM Expressions and the fine grained library of your choice. For example with S.js:
``sh`
> npm install s-js dom-expressions hyper-dom-expressions
Create your configuration and run dom-expressions command to generate runtime.js. More info here.
Use it to initialize your Hyper function
`js
import { createHyperScript } from 'hyper-dom-expressions';
import * as r from './runtime';
const h = createHyperScript(r);
`
Profit:
`js
const view = h('table.table.table-hover.table-striped.test-data',
h('tbody', mapSample(() => state.data, row =>
h('tr', [
h('td.col-md-1', row.id),
h('td.col-md-4', h('a', {onClick: [select, row.id]}, () => row.label)),
h('td.col-md-1', h('a', {onClick: [remove, row.id]}, h('span.glyphicon.glyphicon-remove'))),
h('td.col-md-6')
])
))
));
S.root(() => r.insert(document.getElementById('main'), view());)
`
Libraries may expose access to h in different ways. For example Solid has it's own entry point 'solid-js/h'.
There are also several small differences but generally follows HyperScript conventions. Ref work by passing a function. Keep in mind you need to wrap expressions in functions if you want them to be observed. For attributes since wrapping in a function is the only indicator of reactivity, passing a non-event function as a value requires wrapping it in a function.
Fragments are just arrays. Components are handled by passing a Function to the first argument of the h function. Ie:
`jsx
const view = <>
{someValue()}
>
// is equivalent to:
const view = [
h(Component, {prop: value}),
() => someValue()
]
``
I'm still working out API details and performance profiling.