Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
babel-plugin-jsx-dom-expressions
Advanced tools
A JSX to DOM plugin that wraps expressions for fine grained change detection
This package is a JSX compiler built for DOM Expressions to provide a general JSX to DOM transformation for reactive libraries that do fine grained change detection. This package aims to convert JSX statements to native DOM statements and wrap JSX expressions with functions that can be implemented with the library of your choice. Sort of like a JSX to Hyperscript for fine change detection.
This plugin treats all lowercase tags as html elements and mixed cased tags as Custom Functions. This enables breaking up your view into components. This library supports Web Component Custom Elements spec. Support for common camelcase event handlers like React, dom safe attributes like class and for, a simple ref property, and parsing of objects for style, and classList properties.
In general JSX Attribute Expressions are treated as attributes by default, with exception custom elements that will to properties and special fields like class
and style
. Plain string attributes will be treated as attributes.
This library uses a heuristic whether to dynamic wrap expressions based on if they contain function calls or property access. Simple literals and variable expressions won't be wrapped. If you ever want to ensure it is not wrapped you can start the expression with /*@once*/
comment.
const view = ({ item }) => {
const itemId = item.id;
<tr class={itemId === selected() ? "danger" : ""}>
<td class="col-md-1">{itemId}</td>
<td class="col-md-4">
<a onclick={e => select(item, e)}>{item.label}</a>
</td>
<td class="col-md-1">
<a onclick={e => del(item, e)}>
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</a>
</td>
<td class="col-md-6"></td>
</tr>;
};
Compiles to:
import { insert as _$insert } from "dom";
import { wrap as _$wrap } from "dom";
const _tmpl$ = document.createElement("template");
_tmpl$.innerHTML = `<tr><td class="col-md-1"></td><td class="col-md-4"><a></a></td><td class="col-md-1"><a><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a></td><td class="col-md-6"></td></tr>`;
const view = ({ item }) => {
const itemId = item.id;
return (function() {
const _el$ = _tmpl$.content.firstChild.cloneNode(true),
_el$2 = _el$.firstChild,
_el$3 = _el$2.nextSibling,
_el$4 = _el$3.firstChild,
_el$5 = _el$3.nextSibling,
_el$6 = _el$5.firstChild;
_$wrap(() => (_el$.className = itemId === selected() ? "danger" : ""));
_$insert(_el$2, itemId);
_el$4.onclick = e => select(item, e);
_$insert(_el$4, () => item.label);
_el$6.onclick = e => del(item, e);
return _el$;
})();
};
The use of cloneNode improves repeat insert performance and precompilation reduces the number of references to the minimal traversal path. This is a basic example which doesn't leverage event delegation or any of the more advanced features described below.
The name of the runtime module to import the methods from.
The output mode of the compiler. Can be "dom"(default), "ssr". "dom" is standard output. "ssr" is for server side rendering of strings.
Indicate whether the output should contain hydratable markers.
Boolean to indicate whether to enable automatic event delegation on camelCase.
Boolean indicates whether smart conditional detection should be used. This optimizes simple boolean expressions and ternaries in JSX.
Boolean indicates whether to set current render context on Custom Elements and slots. Useful for seemless Context API with Web Components.
Array of Component exports from module, that aren't included by default with the library. This plugin will automatically import them if it comes across them in the JSX.
This binding will assign the variable you pass to it with the DOM element or if a function will call it with the element.
const Child = props => <div ref={props.ref} />;
const Parent = () => {
let ref;
return <Child ref={ref} />;
};
These will be treated as event handlers expecting a function. The compiler will delegate events where possible (Events that bubble or can be composed) else it will fall back to Level 1 spec "on_____" events.
If you wish to make it into a Bound Event, you can bind a value to your delegated event by passing an array handler instead and the second argument will be passed to your event handler as the first argument (the event will be second).
function handler(itemId, e) {/*...*/}
<ul>
{list().map(item => (
<li onClick={[handler, item.id]} />
))}
</ul>
This delegation solution works with Web Components and the Shadow DOM as well if the events are composed. That limits the list to custom events and most UA UI events like onClick, onKeyUp, onKeyDown, onDblClick, onInput, onMouseDown, onMouseUp, etc.. Important:
To allow for casing to work all custom events should follow the all lowercase convention of native events. If you want to use different event convention (or use Level 3 Events "addEventListener") use the "on" binding.
Event delegates aren't cleaned up automatically off Document. If you will be completely unmounting the library and wish to remove the handlers from the current page use clearDelegatedEvents
.
To bypass event delegation and use normal Level 3 "addEventListener" events.
<div on:Weird-Event={e => alert(e.detail)} />
To use capture event:
<div oncapture:Weird-Event={e => alert(e.detail)} />
This takes an object and assigns all the keys as classes which are truthy.
<div classList={{ selected: isSelected(), editing: isEditing() }} />
Spreads let you pass multiple props at once:
<div {...props} />
Keep in mind given the independent nature of binding updates there is no guarantee of order using spreads at this time. It's under consideration.
Components are just Capital Cased tags. Instead of wrapping with computation dynamic props will just be getter accessors. * Remember property access triggers so don't destructure outside of computations unless you intend the content to be static.
const MyComp = props => {
const staticProp = props.other;
return (
<>
<div>{props.param}</div>
<div>{staticProp}</div>
</>
);
};
<MyComp param={dynamic()} other={static} />;
Components may have children. This is available as props.children. It may be a node, a function, or a string, or an array of the aforementioned. Non-expression children like DOM nodes are set to evaluate lazily (upon access by default).
This plugin also supports JSX Fragments with <></>
notation. These will be compiled to arrays. The fragment syntax provides the convenience of being able to use the template syntax to wrap expressions.
The concept of using JSX to DOM instead of html strings and context based binding usually found in these libraries was inspired greatly by Surplus.
FAQs
A JSX to DOM plugin that wraps expressions for fine grained change detection
The npm package babel-plugin-jsx-dom-expressions receives a total of 89,881 weekly downloads. As such, babel-plugin-jsx-dom-expressions popularity was classified as popular.
We found that babel-plugin-jsx-dom-expressions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.