
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
babel-plugin-transform-vnmf
Advanced tools
Transform stylesheet selector to style in JSX Elements.
Transform StyleSheet selector to style in JSX Elements.
npm install --save-dev babel-plugin-transform-react-jsx-to-rn-stylesheet
.babelrc.babelrc
{
"plugins": ["transform-react-jsx-to-rn-stylesheet"]
}
Your component.js that contains this code:
import { Component } from 'react';
import './app.css';
class App extends Component {
render() {
return <div className="header" />
}
}
Will be transpiled into something like this:
import { Component } from 'react';
import appCssStyleSheet from './app.css';
var _styleSheet = appCssStyleSheet;
class App extends Component {
render() {
return <div style={_styleSheet.header} />;
}
}
Can write multiple classNames like this:
import { Component } from 'react';
import './app.css';
class App extends Component {
render() {
return <div className="header1 header2" />;
}
}
Will be transpiled into something like this:
import { Component } from 'react';
import appCssStyleSheet from './app.css';
var _styleSheet = appCssStyleSheet;
class App extends Component {
render() {
return <div style={[_styleSheet.header1, _styleSheet.header2]} />;
}
}
Also support array, object and expressions like this:
import { Component } from 'react';
import './app.css';
class App extends Component {
render() {
return (
<div className={'header'}>
<div className={{ active: this.props.isActive }} />
<div className={['header1 header2', 'header3', { active: this.props.isActive }]} />
<div className={this.props.visible ? 'show' : 'hide'} />
<div className={getClassName()} />
</div>
);
}
}
Will be transpiled into something like this:
import { Component } from 'react';
import appCssStyleSheet from './app.css';
var _styleSheet = appCssStyleSheet;
class App extends Component {
render() {
return (
<div style={_styleSheet.header}>
<div style={_getStyle({ active: this.props.isActive })} />
<div style={_getStyle(['header1 header2', 'header3', { active: this.props.isActive }])} />
<div style={_getStyle(this.props.visible ? 'show' : 'hide')} />
<div style={_getStyle(getClassName())} />
</div>
);
}
}
function _getClassName() { /* codes */ }
function _getStyle(className) {
return _styleSheet[_getClassName(className)]; // not real code
}
And can also import multiple css file:
import { Component } from 'react';
import 'app1.css';
import 'app2.css';
class App extends Component {
render() {
return <div className="header1 header2" />;
}
}
Will be transpiled into something like this:
import { Component } from 'react';
import app1CssStyleSheet from "./app1.css";
import app2CssStyleSheet from "./app2.css";
class App extends Component {
render() {
return <div style={[_styleSheet.header1, _styleSheet.header2]} />;
}
}
var _styleSheet = _mergeStyles(app1CssStyleSheet, app2CssStyleSheet);
also suport inline style value is string
import { createElement, render } from 'rax';
import './app.less';
class App extends Component {
render(<div className="header" style="width:100px;height:100px;background-color:rgba(0, 0, 0, 0.5);border: 1px solid;" />);
}
↓ ↓ ↓ ↓ ↓ ↓
import { createElement, render } from 'rax';
import appLessStyleSheet from "./app.less";
var _styleSheet = appLessStyleSheet;
class App extends Component {
render() {
return <div style={[_styleSheet["header"], {
"width": 100,
"height": 100,
"backgroundColor": "rgba(0, 0, 0, 0.5)",
"borderWidth": 1,
"borderColor": "black",
"borderStyle": "solid"
}]} />);
}
}
support multiple className to style
.babelrc
{
"plugins": ["transform-react-jsx-to-rn-stylesheet", { enableMultipleClassName: true }]
}
import { createElement, Component } from 'rax';
import './app.css';
class App extends Component {
render() {
return <div className="container" headerClassName="header" />;
}
}
/* ↓ ↓ ↓ ↓ ↓ ↓ */
import { createElement, Component } from 'rax';
import appCssStyleSheet from "./app.css";
var _styleSheet = appCssStyleSheet;
class App extends Component {
render() {
return <div style={_styleSheet["container"]} headerStyle={_styleSheet["header"]} />;
}
}
the enableMultipleClassName option will match 'attribute' end with 'className' | 'style', and transform className to style.
but use the error css value in style attribute
like this:
import { createElement, Component } from 'rax';
import './app.css';
class App extends Component {
render() {
return <StatusBar barStyle="dark-content" />;
}
}
the plugin can't transform 'dark-content' to css value, so this transformation will be ignored
import { createElement, Component } from 'rax';
import appCssStyleSheet from "./app.css";
var _styleSheet = appCssStyleSheet;
class App extends Component {
render() {
return <StatusBar barStyle={"dark-content"} />;
}
}
FAQs
Transform stylesheet selector to style in JSX Elements.
We found that babel-plugin-transform-vnmf 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.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.