Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
babel-plugin-transform-cssobj-jsx
Advanced tools
Babel plugin to transform class names into cssobj localized
Babel plugin to transform class names into cssobj localized names, easily transform existing code into cssobj.
npm install --save-dev babel-plugin-transform-cssobj-jsx
.babelrc
:{
"plugins": ["transform-cssobj-jsx"]
}
Wrap your JSX in result.mapClass()
const style = cssobj(obj)
const html = style.mapClass(
<div className='container'>
<div className={func()}>
<p className='!news item active'> </p></div></div>
)
Which transform into below code:
const html = (
<div className={style.mapClass('container')}>
<div className={style.mapClass(func())}>
<p className={style.mapClass('!news item active')}> </p></div></div>
)
Note: According to cssobj mapClass
rule, the !news
will become news
and not localized (aka keep AS IS).
This plugin transform the below formats:
result.mapClass(JSX)
result.mapName(JSX) (alias of result.mapClass)
mapName(JSX) (function reference of result.mapClass)
If your existing code already has the form, .e.g:
// existing code, you don't want below to transform
myObj.mapClass(<div className='abc'>should not be transformed</div>)
You have two way to escape the transform
Change the original method call as myObj['mapClass']
, that way this plugin don't touch it
Pass plugin option mapName
to use other name rather than mapClass
{
"plugins": [ ["transform-cssobj-jsx", {"mapName": "makeLocal"}] ]
}
Then you can use makeLocal
instead of mapClass
, as a alias property of cssobj result
Notice: makeLocal
must not exists in result object to avoid conflict
// below will be transformed, using alias property
style.makeLocal( <div className='nav'></div> )
// <div className={ style.mapClass('nav') }></div>
// your existing code keep untouched
myObj.mapClass( <div className='abc'> )
If you discard the cssobj result part, then the mapName
is not alias, it's a real function
Notice: makeLocal
must exists in your scope, it will be kept as real function
// makeLocal is not alias, it's have to be assigned
const makeLocal = style.mapClass
// will inject to className, shorter code
makeLocal( <div className='nav'></div> )
// <div className={ makeLocal('nav') }></div>
See, all the className have a shorter code, that reduced the bundle size and have better pref
FAQs
Babel plugin to transform class names into cssobj localized
The npm package babel-plugin-transform-cssobj-jsx receives a total of 1 weekly downloads. As such, babel-plugin-transform-cssobj-jsx popularity was classified as not popular.
We found that babel-plugin-transform-cssobj-jsx 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.