Hacker News new | ask | show | jobs
by piranha 1072 days ago
Why do you feel the need to use lit-html? Just interested in the use-case.
1 comments

I am not the original poster, but I use lit-html to make the interactive elements on the page like tabs and modals. Then I use HTMX to load the contents of those elements when the tab or trigger is clicked.
That's one of the reasons TwinSpark got actions, you still need little bits of client-side interactivity.
I find things like actions is great for conditionally showing and hiding form fields or small things like that, but if you want to have accessible tabs and modals it is best to bundle it up in a component. Here is an example of a lit components I use, https://codepen.io/megaman821/pen/GRXmzZb and https://codepen.io/megaman821/pen/dydvxBE