hast utility to set classes.
- What is this?
- When should I use this?
- Install
- Use
- API
- Types
- Compatibility
- Security
- Related
- Contribute
- License
This package is a utility that takes lets you more easily set class names on elements.
You can use this package when you find that that you’re repeating yourself a lot when working with classes in the syntax tree.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install hast-util-classnames
In Deno with esm.sh
:
import {classnames} from 'https://esm.sh/hast-util-classnames@3'
In browsers with esm.sh
:
<script type="module">
import {classnames} from 'https://esm.sh/hast-util-classnames@3?bundle'
</script>
import {h} from 'hastscript'
import {classnames} from 'hast-util-classnames'
console.log(classnames('alpha bravo', {bravo: false}, [123, 'charlie']))
const node = h('p.alpha', 'Hi!')
console.log(classnames(node, 'bravo', ['charlie', {delta: false, echo: 1}]))
Yields:
['alpha', '123', 'charlie']
{
type: 'element',
tagName: 'p',
properties: {className: ['alpha', 'bravo', 'charlie', 'echo']},
children: [{type: 'text', value: 'Hi!'}]
}
This package exports the identifier classnames
.
There is no default export.
Merge classes.
This function has two signatures, depending on whether a node
was passed.
(node: Node, ...conditionals: Array<Conditional>) => Node
(...conditionals: Array<Conditional>) => Array<string>
node
(Node
) — optionally, node whose classes to append to (must beElement
)conditionals
(Array<Conditional>
) — class configuration to merge
The given node (Node
), if any, or a list of strings (Array<string>
).
Basic class names (TypeScript type).
type ConditionalPrimitive = number | string
Map of class names as keys, with whether they’re turned on or not as values.
type ConditionalMap = Record<string, boolean>
Different ways to turn class names on or off (TypeScript type).
type Conditional =
| Array<
| Array<ConditionalPrimitive | ConditionalMap>
| ConditionalMap
| ConditionalPrimitive
>
| ConditionalMap
| ConditionalPrimitive
| null
| undefined
This package is fully typed with TypeScript.
It exports the additional types Conditional
,
ConditionalMap
, and
ConditionalPrimitive
.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, hast-util-classnames@^3
,
compatible with Node.js 16.
Classes are typically not harmful, however, if someone were able to inject
classes, it could mean that user-provided content looks like official content,
which may cause security problems due to impersonation.
Either do not use user input in classnames
or use
hast-util-sanitize
to clean the tree.
hastscript
— create hast treeshast-util-from-selector
— parse CSS selectors to hast nodeshast-util-has-property
— check if a node has a propertyhast-util-is-element
— check if a node is a (certain) element
See contributing.md
in syntax-tree/.github
for
ways to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.