Small file to render jsx as a stateless component from react but without the heavy kb use of it.
- Thanks to jsx-render starter you can just run one simple command and have webpack with stylus or sass ready to go.
$ mkdir sample && cd $_ && npx lz-cli gh alecsgone/lz-jsx-render
The required packages are @babel/plugin-syntax-jsx
, @babel/plugin-transform-react-jsx
and of course jsx-render
, additionally you will need @babel/core, webpack or any other way to transpile the code that you prefer.
$ npm install jsx-render @babel/plugin-syntax-jsx @babel/plugin-transform-react-jsx
Make sure you have the pragma fn defined and its name is "dom"
// .babelrc
{
"presets": [
"babel-preset-primavera",
["@babel/preset-react", { "pragma": "dom" }]
]
}
Now you can create components e.g.
import dom from 'jsx-render'
const DummyComponent = props => (<div>{props.children}</div>)
export default DummyComponent
or Fragments
import dom, { Fragment } from 'jsx-render'
import DummyComponent from './DummyComponent'
const Modal = props => (
<div>
<header>Include {props.title}</header>
<Fragment>
<div>Body</div>
<DummyComponent>Copyright</DummyComponent>
</Fragment>
</div>
)
- new Class suport with default target: the
render()
method - Render Basic Single Components
<div />
- Conditional Component
{condition ? <foo/> : <bar/>}
- Component with Data Attributes
<div data-some="attr">
- Component with Attributes
<img src="foo.jpg">
- Nested Component ul>li>a
- Siblings Components ul>li*3
- Components with classname p.chan
- Map components & numbers
array.map(item => <div>{item}</div>)
- Fragments
- Portals
- SVG
- Component Props
<Custom foo="foo">
- Component Children
<Custom>children</Custom>
- Component render xlinkHref for SVG sprites
- dangerouslySetInnerHTML
- Components withState
Redux
not included
import dom, { Fragments } from 'jsx-render'
// Return siblings without direct parent component
const Foo = () => (
<Fragments>
<li />
<li />
</Fragments>
)
const ul = document.createElement('ul')
ul.appendChild(<Foo />)
import dom, { portalCreator } from 'jsx-render'
// can render the component on a diferent node than the parentNode
// useful for modals, and if the argument is not a node
// it will render as body direct son by default
function Component(node) {
const Portal = portalCreator(node)
return (
<div>
<Portal>
<span>uno</span>
</Portal>
</div>
)
}
function render() {
return <div dangerouslySetInnerHTML={{ __html: '<span>StrangerDanger</span>' }} />
}