World's easiest Live dashboard with htmx
hypermedia-tv
0:00 / 0:00
World's easiest Live dashboard with htmx
42 542 просмотра · 1 год назад
hypermedia-tv
3,72 тыс. подписчиков
42 542 просмотра · 1 год назад
Make any widget on your site Live with htmx and these four attributes!
This video goes over how you could come into a complex code base and make minimal changes to have the section of the page load on an interval so the data refreshes live without the user clicking.
See it live: https://hypecp.com/demos/live-widget
00:00 Intro
00:18 What I've done
01:13 Messy dashboard code
01:32 The "Correct" way to do it
02:02 The way we are doing it
03:00 Adding the code
04:28 What the code does
05:17 Demo
The htmx code (on your outer div):
id="user-activity"
hx-get=""
hx-trigger="every 5s"
hx-select="#user-activity"
hx-swap="outerHTML"