hx-transform

0.0.2 • Public • Published

hx-transform

HTMX extension for transforming JSON responses before swapping content. This is a dependency free alternative to the client side templates extension.

To install via CDN:

<script src="https://cdn.jsdelivr.net/npm/hx-transform/index.js" defer></script>

or via npm if you prefer:

npm i @rohenaz/htmx-filter

Then add the following to your HTML:

<script src="/path/to/htmx.js"></script>
<script src="/node_modules/hx-transform/index.js"></script>

Example Usage

Lets say we have an endpoint that returns JSON like this:

{
  "success": true,
  "message": "Profile saved successfully"
}
<div id="save-profile-status" hx-ext="remove-me" class="flex mb-2"></div>

<button
  type="submit"
  class="btn btn-primary bg-primary text-primary-content"
  hx-post="/profile"
  hx-target="#save-profile-status"
  hx-ext="transform-response"
  hx-transform="(response) => response.success ? <div remove-me='3s'>success</div> : error"
>
  Save
</button>

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i hx-transform

    Weekly Downloads

    1

    Version

    0.0.2

    License

    MIT

    Unpacked Size

    35.6 kB

    Total Files

    5

    Last publish

    Collaborators

    • wildsatchmo