Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rc-class

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rc-class

handle multiple react classnames

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

rc-class

handle multiple react classnames

usage


import rcClass from "rc-class"

let cn = new rcClass.default('event-billing-information');
cn(['abc', { xyz: { reduce: '-information' } }, { kog: { reduce: 1,use:true } }],'open')
//result:{ className: 'event-billing-information-abc event-billing-xyz event-billing-kog open' }
//reduce key can reduce prefix from last,if reduce type is no,will prefix.split('-') and remove number item from last
//use:true is default and optional, kog:{use:condition->true/false}


//basic type,config prefix,can be empty
let cn=rcClass('bot');

...

<div {...cn('content')}></div> //result <div className="bot-content"></div>


cn(['abc', { xyz: { reduce: '-information' } }, { kog: { reduce: 3 } }])
//result { className: 'event-billing-information-abc event-billing-xyz event-billing-kog' }

<div {...cn('content','introduce')}></div> //result <div className="bot-content introduce"></div>

<div {...cn(['content','core'],['introduce'])}></div> //result <div className="bot-content bot-core introduce"></div>

<div {...cn({'content':true},{'introduce':true})}></div> //result <div className="bot-content introduce"></div>

//get className
cn().className //result bot

cn('content').className //result bot-content
cn(null,'content').className //result content

...

Keywords

FAQs

Package last updated on 11 Jul 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc