npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bem-classes-util

v1.1.1

Published

A utility to manage classnames conveniently

Downloads

11

Readme

This is a utility to manage classnames with convenience based on BEM methodology

Creating instance

You can create an instance of the classnames and pass the base classname

  import Classes from 'bem-classes-util'

  const SW = new Classes({ baseClass: 'site-wrapper' })

There is an option to configure modifications symbol and elements symbol

  const SW = new Classes({ 
    baseClass: 'site-wrapper', 
    elementSym: '__',
    modificationSym: '--' 
  })

Methods

  result() // --> { className: '...' }

and

  classList() // --> '...'

are the same expect the returning value

Elements

If you need only to add an element you can simply pass a string to this method

  SW.result('element') // --> { className: 'site-wrapper__element' }

You can pass an object of elements or an array as well

  SW.result([ 'element1', 'element2' ]) // --> { className: 'site-wrapper__element1 site-wrapper__element2' }
  SW.result([{ 'element1': true }, { 'element2': true }, { 'element3': false }]) // --> { className: 'site-wrapper__element1 site-wrapper__element2' }

Modifiers

Then you can add modifiers to the base class and receive object with className

  SW.result({ m: 'index' }) // --> { className: 'site-wrapper site-wrapper--index' }

Modifiers can be also passed as array and as object

  SW.result({ m: ['modifier1', 'modifier2'] }) // --> { className: 'site-wrapper site-wrapper--modifier1 site-wrapper--modifier2' }
  SW.result({ m: { 'modifier1': true, 'modifier2': false } }) // --> { className: 'site-wrapper site-wrapper--modifier1' }

The same is about the element modifiers

  SW.result({ 'element': true , m: ['modifier1', 'modifier2'] }) // --> { className: 'site-wrapper__element site-wrapper__element--modifier1 site-wrapper__element--modifier2' }
  SW.result({ 'element': true , m: { 'modifier1': true, 'modifier2': false } }) // --> { className: 'site-wrapper__element site-wrapper__element--modifier1' }

Static methods

If you need just to concat classnames from the array or an object with statements

  Classes.resultList({ 'class1': true, 'class2': false }) // --> { className: 'class1' }
  Classes.resultList([ 'class1' ]) // --> { className: 'class1' }

If you need just a list with classnames from the array or an object with statements

  Classes.getClassesList({ 'class1': true, 'class2': false }) // --> 'class1'
  Classes.getClassesList([ 'class1' ]) // --> 'class1'

If you need to create multiple blocks in single class name and get the list

  const SW = new Classes({ baseClass: 'site-wrapper' })
  const HD = new Classes({ baseClass: 'header' })

  Classes.multiClasses([ SW.classList('element-1'), HD.classList('element-2') ]) // --> 'site-wrapper__element-1 header__element-2'

If you need to create multiple blocks in single class name

  const SW = new Classes({ baseClass: 'site-wrapper' })
  const HD = new Classes({ baseClass: 'header' })

  Classes.multiList([ SW.classList('element-1'), HD.classList('element-2') ]) // --> { className: 'site-wrapper__element-1 header__element-2' }