table.hbs 675 B

123456789101112131415161718192021222324252627
  1. <section id="links-table-wrapper">
  2. <h2>Recent shortened links.</h2>
  3. <table
  4. hx-get="/api/links"
  5. hx-target="tbody"
  6. hx-swap="outerHTML"
  7. hx-select="tbody"
  8. hx-disinherit="*"
  9. hx-include=".links-controls"
  10. hx-params="not total"
  11. hx-sync="this:replace"
  12. hx-select-oob="#total"
  13. hx-trigger="
  14. load once,
  15. reloadLinks from:body,
  16. change from:[name='all'],
  17. click delay:100ms from:button.table-nav,
  18. input changed delay:500ms from:[name='search'],
  19. "
  20. hx-on:htmx:after-on-load="updateLinksNav()"
  21. >
  22. {{> links/thead}}
  23. {{> links/tbody}}
  24. {{> links/tfoot}}
  25. </table>
  26. {{> links/dialog}}
  27. </section>