Package

purescript-classnames

Repository
dewey92/purescript-classnames
License
MIT
Uploaded by
dewey92
Published on
2022-06-05T21:57:53Z

A simple Purescript utility for conditionally joining classNames together. Heavily inspired by the javascript counterpart classnames

You can combine strings, arrays, Maybes, and a record of booleans altogether.

import ClassNames
  ( classNames
  , (^) -- Just an alias of `Tuple`
  )

classNames ("flex-row" ^ "center") -- "flex-row center"
classNames ("flex-row" ^ Nothing ^ Just "is-mobile") -- "flex-row is-mobile"
classNames (["flex-row", "is-mobile"] ^ "center") -- "flex-row is-mobile center"
classNames ({
  "flex-row": true,
  "is-mobile": false,
  "center": true,
} ^ [Just "container"]) -- "center flex-row container"

Note that when you pass a record of booleans, the resulting value will be sorted in alphabetical order as it's using RowToList under the hood.

Integration with Other Libraries

If your library forces you to wrap the classNames in a newtype, you can still use it by creating your own utility function with classNames'. For instance, Halogen requires classNames to be wrapped in Halogen.HTML.ClassName:

import ClassNames (class ClassNames, classNames')
import Halogen.HTML as H
import Halogen.HTML.Properties as P

cxs ::  a r i. ClassNames a => a -> H.IProp ( class :: String | r ) i
cxs a = P.classes $ map H.ClassName (classNames' a)

Basically classNames' returns Array String which you can then map/fold to any data structure you want.

MIT. Copyright (c) 2020 Jihad D. Waspada.

Modules
ClassNames
Dependencies