5.0.5 • Published 2 years ago

classcat v5.0.5

Weekly downloads
31,510
License
MIT
Repository
github
Last release
2 years ago

Classcat

Build a class attribute string quickly.

  • Framework agnostic, reusable, plain vanilla JavaScript.
  • Up to 2.5x faster than alternatives.
  • 217 B (minified+gzipped). 👌

This module makes it easy to build a space-delimited class attribute string from an object or array of CSS class names. Just pair each class with a boolean value to add or remove them conditionally.

import cc from "classcat"

export const ToggleButton = ({ isOn, toggle }) => (
  <div className="btn" onClick={() => toggle(!isOn)}>
    <div
      className={cc({
        circle: true,
        off: !isOn,
        on: isOn,
      })}
    />
    <span className={cc({ textOff: !isOn })}>{isOn ? "ON" : "OFF"}</span>
  </div>
)

Try with React, lit-html, Mithril, Superfine

Installation

npm install classcat

Or without a build step—import it right in your browser.

<script type="module">
  import cc from "https://unpkg.com/classcat"
</script>

API

cc(names)

cc(names: string | number | object | array): string
import cc from "classcat"

cc("elf") //=> "elf"

cc(["elf", "orc", "gnome"]) //=> "elf orc gnome"

cc({
  elf: false,
  orc: null,
  gnome: undefined,
}) //=> ""

cc({
  elf: true,
  orc: false,
  gnome: true,
}) //=> "elf gnome"

cc([
  {
    elf: true,
    orc: false,
  },
  "gnome",
]) //=> "elf gnome"

Benchmarks

npm --prefix bench start

License

MIT

democensafractures-uigray-react-tools@appist/app-btn@appist/app-iconreact-flow-dnd@walkme/wm-ui@stellaris/lynxmodalo@sec-ant/react-flow-renderercensapackagedesignsystemindesigndocumentabcdesignabcsystempackagestorypackagedesign@everything-registry/sub-chunk-1332week-scheduleweek-scheduler-reactsunshine-react-flowinfografikahyperapp-mdcharowintriguemdclub-adminmdclub-theme-materialmdui@williamzheng/react-flow-renderer@webdevandsausages/event-terminal@webdevandsausages/mailing-list-widget@wpj/tato@titaui/react-flow-renderer@thetechcompany/react-flow-renderer@tiezhu92/react-flow-renderer@ts-delight/class-to-component@touchtech/web-baselayer-ui@tntd/decision-tree-diagram@theforgeai/reactflow@tntx/decision-tree-diagram@vikadata/react-flow-renderer@usebirch/react-flow-renderer@xyflow/react@xyflow/svelte@zalastax/nolb-clasatomic-router-solid@easyv/react-flow-renderer@havlasme/react-cookie-consent@namehash/reactmoppium-react-flow-rendereropsportal-corereact-cosmos-diagramreact-awesome-daterdf-rendererreact-flow-nnsreact-flow-rendererreact-flow-renderer-gdreact-flow-renderer-nnsreact-flow-renderer-pathfinderreact-flow-rendererv10react-flow-vunet-newreact-flowyreact-flow-renderer-silvacppreact-flow-renderer2network-policy-viewerrewire-gridrewire-uireact-revised-week-schedulerreact-sample-component-by-yshrknreactflow-velocityreact-utterances-clientreact-weekly-schedulereact-weekly-schedulerreact-week-scheduler-forkedgray-reactgreact-week-scheduler@ohmunity/verification-code@openfn/workflow-diagram@nodeject/ui-components@indexnetwork/ui@forabi/react-week-schedulergfd-react-week-schedulergatsby-theme-tatogatsby-theme-recipe-organizergatsby-theme-heydays@sroussey/xyflow-react@stellaris/lynx-editor@sumbat/core@sumbat/minimap@sumbat/node-resizer@sumbat/node-toolbar@sumbat/background@sumbat/controlsemotion-jsxstylefluidux@product-hackers/feature_article-body@cbinsights/fds@bharatpatil/background@bharatpatil/controls@bharatpatil/core
5.0.5

2 years ago

5.0.4

3 years ago

5.0.3

5 years ago

5.0.2

5 years ago

5.0.1

5 years ago

5.0.0

5 years ago

4.1.0

5 years ago

4.0.2

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.2.5

7 years ago

3.2.4

7 years ago

3.2.3

7 years ago

3.2.2

7 years ago

3.2.1

7 years ago

3.2.0

7 years ago

3.1.2

7 years ago

3.1.1

7 years ago

3.1.0

8 years ago

3.0.2

8 years ago

3.0.1

8 years ago

3.0.0

8 years ago

2.0.0

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago