Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@davidbabel/react-element-to-jsx-string
Advanced tools
Turn a ReactElement into the corresponding JSX string.
Turn a ReactElement into the corresponding JSX string.
Useful for unit testing and any other need you may think of.
Features:
<div a={{b: {c: {d: <div />}}}} />
prop={function noRefCheck() {}}
), object, ReactElement (inlined), regex, booleans (with or without shorthand syntax), ...o={{a: 1, b:2}} === o={{b:2, a:1}}
)ref
and key
attributes, they are always on top of propsTable of Contents generated with DocToc
yarn add react-element-to-jsx-string [--dev]
import React from 'react';
import reactElementToJSXString from 'react-element-to-jsx-string';
console.log(reactElementToJSXString(<div a="1" b="2">Hello, world!</div>));
// <div
// a="1"
// b="2"
// >
// Hello, world!
// </div>
options.displayName: function(ReactElement)
Provide a different algorithm in charge of finding the right display name (name of the underlying Class) for your element.
Just return the name you want for the provided ReactElement, as a string.
options.filterProps: array, default []
Provide an array of props to filter for every component. For example ['key'] will suppress the key="" prop from being added.
options.showDefaultProps: boolean, default true
If true, default props shown.
If false, default props are omitted unless they differ from from the default value.
options.showFunctions: boolean, default false
If true, functions bodies are shown.
If false, functions bodies are replaced with function noRefCheck() {}
.
options.functionValue: function, default (fn) => fn
Allows you to override the default formatting of function values.
functionValue
receives the original function reference as input
and should send any value as output.
options.tabStop: number, default 2
Provide a different number of columns for indentation.
options.useBooleanShorthandSyntax: boolean, default true
If true, Boolean prop values will be omitted for shorthand syntax.
If false, Boolean prop values will be explicitly output like prop={true}
and prop={false}
options.maxInlineAttributesLineLength: number, default undefined
Allows to render multiple attributes on the same line and control the behaviour.
You can provide the max number of characters to render inline with the tag name. If the number of characters on the line (including spacing and the tag name)
exceeds this number, then all attributes will be rendered on a separate line. The default value of this option is undefined
. If this option is undefined
then if there is more than one attribute on an element, they will render on their own line. Note: Objects passed as attribute values are always rendered
on multiple lines
options.sortProps: boolean, default true
Either to sort or not props. If you use this lib to make some isomorphic rendering you should set it to false, otherwise this would lead to react invalid checksums as the prop order is part of react isomorphic checksum algorithm.
options.useFragmentShortSyntax: boolean, default true
If true, fragment will be represented with the JSX short syntax <>...</>
(when possible).
If false, fragment will always be represented with the JSX explicit syntax <React.Fragment>...</React.Fragment>
.
According to the specs:
<React.Fragment key={...}>...</React.Fragment>
<React.Fragment />
Note: to use fragment you must use React >= 16.2
The environment you use to use react-element-to-jsx-string
should have ES2015 support.
Use the Babel polyfill or any other method that will make you environment behave like an ES2015 environment.
yarn test
yarn test:watch
yarn build
yarn build:watch
Decide if this is a patch
, minor
or major
release, look at http://semver.org/
npm run release [major|minor|patch|x.x.x]
alexlande/react-to-jsx was a good source of inspiration.
We built our own module because we had some needs like ordering props in alphabetical order.
14.0.3 (2019-07-19)
showFunctions: true
option, the function are now always inlined in the output by default. Before it was not always the case (depending one the engine, platform or babel versions)You could get back to the previous behavior by using the preserveFunctionLineBreak
function export as a value of the option functionValue
.
<a name="14.0.2"></a>
FAQs
Turn a ReactElement into the corresponding JSX string.
The npm package @davidbabel/react-element-to-jsx-string receives a total of 1 weekly downloads. As such, @davidbabel/react-element-to-jsx-string popularity was classified as not popular.
We found that @davidbabel/react-element-to-jsx-string demonstrated a not healthy version release cadence and project activity because the last version was released 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.