<!--your preparation HTML code goes here-->
<div id="dom" class="foo bar baz hello hello-world hi"></div>
// clsx
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):e.clsx=n()}(this,(function(){function e(n){var t,f,o="";if("string"==typeof n||"number"==typeof n)o+=n;else if("object"==typeof n)if(Array.isArray(n)){var r=n.length;for(t=0;t<r;t++)n[t]&&(f=e(n[t]))&&(o&&(o+=" "),o+=f)}else for(f in n)n[f]&&(o&&(o+=" "),o+=f);return o}function n(){for(var n,t,f=0,o="",r=arguments.length;f<r;f++)(n=arguments[f])&&(t=e(n))&&(o&&(o+=" "),o+=t);return o}return n.clsx=n,n}));
const dom = document.getElementById("dom");
function use_clsx(dom, next) {
const className = clsx(next);
if (dom.__className !== className) {
dom.className = dom.__className = className;
}
}
function use_classlist(dom, prev = {}, next) {
for (const k in next) {
if (prev[k] !== next[k]) {
if (next[k]) {
dom.classList.add(k);
} else {
dom.classList.remove(k);
}
}
}
return next;
}
function use_toggle(dom, prev = {}, next) {
for (const k in next) {
if (prev[k] !== next[k]) {
dom.classList.toggle(k, next[k]);
}
}
return next;
}
use_clsx(dom, "foo bar baz", { hello: true, 'hello-world': true, hi: true });
use_clsx(dom, "foo bar baz", { hello: false, 'hello-world': true, hi: false });
use_clsx(dom, "foo bar baz", { hello: true, 'hello-world': true, hi: true });
var prev;
prev = use_classlist(dom, prev, { hello: true, 'hello-world': true, hi: true });
prev = use_classlist(dom, prev, { hello: false, 'hello-world': true, hi: false });
prev = use_classlist(dom, prev, { hello: true, 'hello-world': true, hi: true });
var prev;
prev = use_toggle(dom, prev, { hello: true, 'hello-world': true, hi: true });
prev = use_toggle(dom, prev, { hello: false, 'hello-world': true, hi: false });
prev = use_toggle(dom, prev, { hello: true, 'hello-world': true, hi: true });
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
use_clsx | |
use_classlist | |
use_toggle |
Test name | Executions per second |
---|---|
use_clsx | 1833940.8 Ops/sec |
use_classlist | 431474.6 Ops/sec |
use_toggle | 612282.2 Ops/sec |
The benchmark provided compares three different approaches for managing CSS classes on a DOM element:
classList
API to add or remove classes dynamically.classList.toggle
to add or remove classes based on boolean values.clsx:
clsx
function generates a single class name string based on the input, which can be a combination of strings and an object that indicates the conditional inclusion of class names.classList:
classList
API available on DOM elements, allowing granular control to add or remove individual classes based on a comparison of previous states.toggle:
classList
API but specifically utilizes the toggle
method, which either adds or removes a class based on its current presence or the boolean value provided.Performance: The benchmark results show that clsx
is the fastest option with approximately 837,420 executions per second, while toggle
and classList
perform significantly slower, at 408,346.59 and 330,898.41 executions per second, respectively. This indicates that, if performance is the key factor for applications with high frequency of class updates, clsx
is the best choice.
Use Cases: Selecting a method can depend on the specific needs of a project. If class management is complex and composed of many conditions, the clarity and explicitness of classList
or toggle
may outweigh the performance benefits of clsx
. Conversely, for simpler use cases or when performance is pivotal, clsx
is advantageous.
clsx
and are often used in React applications; they provide a straightforward syntax for handling class strings.The benchmark comparison sheds light on the trade-offs between readability and performance. Users should consider their specific use cases and performance requirements when choosing between these approaches for managing CSS classes.