Performance: Badge component
LOW IMPACT
Badge components affect page load speed and rendering performance by adding extra DOM elements and CSS styles that can trigger layout and paint operations.
<span class="badge bg-primary">99+ New</span>
<span class="badge bg-primary">99+</span><span class="badge bg-danger">New</span>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Multiple badges for related info | More nodes | Multiple reflows if updated separately | Multiple paints | [X] Bad |
| Single combined badge | Fewer nodes | Single reflow | Single paint | [OK] Good |
| Frequent badge text updates without batching | Same nodes | Many reflows | Many paints | [X] Bad |
| Batched badge updates with debounce | Same nodes | Few reflows | Few paints | [OK] Good |