⚖️ Finding balance: bridging React and vanilla for a cleaner UI

📅 Project year: 2024

🚨 The problem

React is excellent for view-as-a-function-of-state UI, but not all UI components fit neatly into this model. Some UI elements work best with a more imperative, event-driven approach, since many browser APIs are inherently imperative.

Certain components—like autocomplete, calendars, and toggletips—were particularly difficult to implement cleanly in React. Toggletips, for example, required delayed re-insertion of existing DOM nodes to trigger screen readers, something impossible to do with React alone.

React's declarative model clashed with imperative APIs, making certain UI patterns difficult to implement efficiently.

⚠️ The challenges

💡 The solution

📈 The impact

By bridging React with custom elements, we created a more flexible, maintainable, and performant UI architecture.

This approach provided the best of both worlds—leveraging React where it shines while using native DOM capabilities where they’re most effective.

🎓 The lessons learned