Lavash

Declarative, reactive state for Phoenix LiveView. Lavash is two things in one package:

Either way, the reactive graph runs on the server: declared values recompute in topological order when their dependencies change, and the optimistic JS hook keeps the rendered DOM in sync without a server round-trip for changes that can be transpiled.

Why Lavash?

Installation

def deps do
[
{:lavash, "~> 0.3.0-rc"}
]
end

Configure PubSub for cross-process invalidation:

# config/config.exs
config :lavash, pubsub: MyApp.PubSub

Quick start

defmodule MyAppWeb.CounterLive do
use Lavash.LiveView
state :count, :integer, from: :url, default: 0, optimistic: true
state :multiplier, :integer, from: :ephemeral, default: 2, optimistic: true
calculate :doubled, rx(@count * @multiplier)
actions do
action :increment do
set :count, rx(@count + 1)
end
action :reset do
set :count, 0
end
end
template do
~H"""
<div>
<p>Count: {@count}</p>
<p>Doubled: {@doubled}</p>
<button phx-click="increment">+</button>
<button phx-click="reset">Reset</button>
</div>
"""
end
end

Bare {@count} is wrapped in <span data-lavash-display="count"> at compile time. When the user clicks +, the JS hook updates the span text instantly; the server reply arrives later and reconciles.

Custom mount/3

Lavash generates a mount/3 that initialises the reactive graph (state hydration, dependency graph, PubSub subscriptions). The generated mount/3 is defoverridable, so you can define your own when you need extra per-route setup — just chain into Lavash.LiveView.Runtime.mount/4 first so the reactive graph gets attached to the socket:

def mount(params, session, socket) do
{:ok, socket} = Lavash.LiveView.Runtime.mount(__MODULE__, params, session, socket)
# ...your per-route setup
{:ok, Phoenix.Component.assign(socket, :greeting, lookup_greeting(params))}
end

If you skip the Runtime.mount/4 call, the first handle_params/3 will crash with Reactive graph not found on socket — the reactive layer relies on graph state being initialised at mount time.

To enable the JS hook in app.js:

import { LavashOptimistic } from "lavash";
let liveSocket = new LiveSocket("/live", Socket, {
hooks: { LavashOptimistic, ...otherHooks }
});

State

Lavash supports three persistence modes:

from:Persisted inSurvives refreshSurvives reconnectShareable
:urlQuery stringYesYesYes
:socketJS clientNoYesNo
:ephemeral (default)Process onlyNoNoNo
# URL-backed: filters, pagination, tabs
state :search, :string, from: :url, default: ""
state :page, :integer, from: :url, default: 1
# Socket-backed: UI state that survives reconnects
state :expanded_ids, {:array, :uuid}, from: :socket, default: []
# Ephemeral: temporary
state :hovering, :boolean, default: false

from: :url looks up the query/path parameter under the field name by default. If the URL key needs to differ — typically because the query string uses a shorter name — set url_name::

# URL: /attest?subject=alice
state :subject_handle, :string, from: :url, default: nil, url_name: "subject"

When a from: :url field falls back to its default and there's no matching key in the params (and the URL did have other params), Lavash logs a dev-only warning so a mismatched url_name doesn't silently hydrate to nil. Use required: true if missing the param should raise instead.

Optimistic state

Add optimistic: true to make a field part of the client-side state map. The LavashOptimistic JS hook reads it from data-lavash-state and updates the DOM as transpiled actions fire — before the server reply arrives.

state :count, :integer, default: 0, optimistic: true

Without optimistic: true, the field still works server-side but every update takes a full LiveView round-trip.

Auto-generated setters

setter: true generates a set_<name> action callable from the client (e.g. from a form input's phx-change):

state :search, :string, from: :url, default: "", setter: true
# Generates: action :set_search, [:value] do set :search, rx(@value) end

Type system

Built-in types with automatic URL serialization:

Custom types

defmodule MyApp.Types.Date do
use Lavash.Type
@impl true
def parse(value) when is_binary(value) do
case Date.from_iso8601(value) do
{:ok, date} -> {:ok, date}
{:error, _} -> {:error, "invalid date"}
end
end
@impl true
def dump(%Date{} = date), do: Date.to_iso8601(date)
end
state :start_date, MyApp.Types.Date, from: :url

Reactive expressions: rx

rx(...) captures an expression at compile time. References to @field are tracked as dependencies. The same expression compiles to both Elixir (for server-side evaluation) and JavaScript (for the optimistic hook).

calculate :doubled, rx(@count * 2)
calculate :total, rx(Enum.sum(@items))
calculate :greeting, rx("Hi, " <> @name)

Async calculations

async: true runs the computation in a background task. The field is set to AsyncResult.loading() immediately and updated when the task completes. Downstream calculations propagate loading/failed states automatically.

calculate :report, rx(generate_report(@filters)), async: true
calculate :report_size, rx(byte_size(@report)) # waits for :report

In templates, async fields are %Phoenix.LiveView.AsyncResult{}:

<%= case @report do %>
<% %AsyncResult{loading: true} -> %>Loading...
<% %AsyncResult{ok?: true, result: data} -> %>{inspect(data)}
<% _ -> %>Error
<% end %>

Importing reactive helpers

defrx declares a transpilable helper; import_rx makes it available in rx() blocks elsewhere:

defmodule MyApp.Validators do
use Lavash.Rx.Functions
defrx valid_email?(email) do
String.length(email) > 0 && String.contains?(email, "@")
end
end
defmodule MyAppWeb.SignupLive do
use Lavash.LiveView
import_rx MyApp.Validators
calculate :email_valid, rx(valid_email?(@email))
end

Reading Ash resources

Get by ID

read :product, Product do
id state(:product_id)
async true # default
end

Query with auto-mapped arguments

read :products, Product, :list do
invalidate :pubsub # fine-grained PubSub invalidation
end
# Auto-maps state fields to action arguments by name

As dropdown options

read :categories, Category do
async false
as_options label: :name, value: :id
end

Forms

Auto-detects create vs. update based on data:

form :edit_form, Product do
data result(:product) # nil → create, record → update
end
# Params are auto-created as :edit_form_params (ephemeral state).
# Validation derives are auto-generated: :edit_form_<field>_valid,
# :edit_form_<field>_errors, :edit_form_valid, :edit_form_errors.

Hook a form into your template:

<form phx-change="form_change_edit_form" phx-submit="save">
<input field={@edit_form[:name]} />
<input field={@edit_form[:price]} />
<button type="submit" disabled={not @edit_form_valid}>Save</button>
</form>

<input field={...}> auto-injects name, value, and the right data-lavash-* attrs so validation errors render instantly client-side.

Forms vs. data-lavash-bind on submit

data-lavash-bind (the attribute the auto-injector adds to <input field={...}>) syncs through Lavash's own channel events, not through phx-change. The flow is async: typing into a bound input fires a client-only optimistic update plus a debounced server push.

For inputs hooked up via <input field={@form[...]}> this is fine — phx-submit re-reads @form from the AshPhoenix.Form params, which are kept in dedicated ephemeral state (<form_name>_params).

For bound state on a hand-rolled form (data-lavash-bind="confirmed" on a checkbox, etc.) submit can race the bind sync. If the user ticks the box and immediately clicks submit, the phx-submit request can arrive at the server before the bind has propagated, and the action body sees the not-yet-synced value of @confirmed.

Two safe patterns until this gap closes:

A future release will sync bound state through the submit payload so the @field read works on submit too.

Cookbook: a full form-submission recipe

The pieces above — state, calculate, actions, custom mount/3, Lavash.Socket.put_state/3, and action ..., [:fields] — chain together on a real page. This recipe shows all of them in one module: an attestation form behind sign-in, with a URL-backed subject, ephemeral form state, a submit button that lights up when the form is ready, and a side-effecting submit handler.

defmodule MyAppWeb.AttestLive do
use Lavash.LiveView
on_mount {AshAuthentication.LiveView, :live_user_required}
# URL-backed: /attest?subject=alice is deep-linkable and refresh-safe.
# `url_name:` lets the public param stay short while the field name
# stays descriptive.
state :subject_handle, :string,
from: :url,
default: nil,
url_name: "subject",
required: true,
optimistic: true
# Ephemeral form state, bound to the inputs in the template so the
# checkbox + textarea can drive optimistic UI without a round-trip
# for every keystroke.
state :confirmed, :boolean, default: false, optimistic: true
state :notes, :string, default: "", optimistic: true
# Set on success so the template can swap the form for a thank-you.
state :submitted_at, :utc_datetime, default: nil, optimistic: true
# Seeded from the signed-in user inside the custom mount below.
state :actor_email, :string, default: nil
calculate :ready_to_submit,
rx(@confirmed and String.length(@notes) > 0 and is_nil(@submitted_at))
actions do
# `params [...]` makes the action read the submit payload directly
# rather than `@confirmed` / `@notes`, so it sees the fresh values
# even if the bind sync hasn't caught up yet.
action :submit, [:confirmed, :notes] do
run fn %{confirmed: confirmed, notes: notes} = assigns ->
case record_attestation(assigns.actor_email, assigns.subject_handle, confirmed, notes) do
{:ok, at} -> assign(assigns, :submitted_at, at)
{:error, _} -> assigns
end
end
end
end
def mount(params, session, socket) do
# Attach the reactive graph first — handle_params/3 needs it.
{:ok, socket} = Lavash.LiveView.Runtime.mount(__MODULE__, params, session, socket)
# Hydrate Lavash-aware state from the assigns the auth on_mount put
# on the socket. `put_state/3` (not `assign/3`) registers the field
# with the reactive graph and tracks dirty/url changes.
socket = Lavash.Socket.put_state(socket, :actor_email, socket.assigns.current_user.email)
{:ok, socket}
end
template do
~H"""
<div :if={is_nil(@submitted_at)}>
<h1>Attest for {@subject_handle}</h1>
<form phx-submit="submit">
<label>
<input type="checkbox" name="confirmed" data-lavash-bind="confirmed" />
I confirm the statements above.
</label>
<textarea name="notes" data-lavash-bind="notes"></textarea>
<button type="submit" disabled={not @ready_to_submit}>Submit</button>
</form>
</div>
<p :if={not is_nil(@submitted_at)}>
Recorded at <span data-lavash-display="submitted_at">{@submitted_at}</span>.
</p>
"""
end
defp record_attestation(actor_email, subject, confirmed, notes) do
# ...persist via Ash, audit log, etc.
{:ok, DateTime.utc_now()}
end
end

A few things to notice, because they're easy to miss:

Actions

Declarative event handlers triggered by phx-click, phx-change, etc.

actions do
action :save do
submit :edit_form, on_success: :after_save, on_error: :on_error
end
action :after_save do
flash :info, "Saved!"
navigate "/products"
end
action :on_error do
flash :error, "Failed to save"
end
# With parameters from phx-value-*
action :delete, [:id] do
effect fn %{params: %{id: id}} ->
Product |> Ash.get!(id) |> Ash.destroy!()
end
end
# Guarded — only fires when @form_valid is true
action :submit, [], [:form_valid] do
submit :form
end
end

Action operations

OperationDescription
set :field, rx(...)Set field via a reactive expression (transpilable)
set :field, valueSet field to a literal value
update :field, funTransform field with a function (server-only)
effect fnExecute side effects
submit :formSubmit a form
navigate pathNavigate to URL
flash :level, msgShow flash message
invoke id, :actionInvoke an action on a child component

set :field, rx(...) transpiles to JS for optimistic updates. update, effect, submit, etc. always go through the server.

Templates and auto-injection

Lavash modules declare their template with a template do ~H"..."end block. The transformer rewrites the template at compile time, injecting:

You writeBecomes
{@count} (optimistic)<span data-lavash-display="count">{@count}</span>
<input field={@form[:name]}>Phoenix form attrs + data-lavash-bind + error attrs
<div :if={@open}> (optimistic)adds data-lavash-visible="open"
<button disabled={not @valid}> (optimistic)adds data-lavash-enabled="valid"
<div class={if @flag, do: "on", else: "off"}> (optimistic)adds data-lavash-toggle="flag|on|off"
<div class={if "x" in @items, do: "sel", else: "unsel"}> (optimistic)adds data-lavash-member="items|sel|unsel" + data-lavash-member-value="x"
<.lavash_component module=Child id="x" bind={[n: :count]}>adds parent value forwarding + binding-chain plumbing

You write normal Phoenix HEEx; lavash adds the wiring underneath. Hand-written data-lavash-* attributes still work for cases the inference can't reach (non-bare expressions, unless, complex class concatenation, etc.).

~L (legacy shape)

render fn assigns -> ~L"..." end is still supported and produces the same compiled output as template do ~H"..."end. The ~L shape predates the template block and is the only path that supports render_loading fn for animated overlays. New code should prefer template do ~H.

Diagnostics

The transformer warns at compile time when:

Components

defmodule MyAppWeb.ProductCard do
use Lavash.Component
prop :product, :map, required: true
state :expanded, :boolean, from: :socket, default: false, optimistic: true
calculate :title, rx(@product.name)
actions do
action :toggle do
set :expanded, rx(not @expanded)
end
end
template do
~H"""
<div phx-click="toggle">
<h3>{@title}</h3>
<div :if={@expanded}>Details...</div>
</div>
"""
end
end

phx-target={@myself} is auto-injected inside component templates — you don't have to type it on every phx-* attribute.

Using a component

import Lavash.LiveView.Helpers, only: [lavash_component: 1]
<.lavash_component
module={MyAppWeb.ProductCard}
id={"product-#{product.id}"}
product={product}
/>

Bindings

A child can declare a bind= mapping to read and write a parent's state field:

<.lavash_component
module={MyAppWeb.Toggle}
id="dark-mode"
bind={[value: :dark_mode]}
/>

The child's :value field hydrates from the parent's :dark_mode on every update; the child's writes to :value propagate back up to the parent's :dark_mode. Works across arbitrarily nested chains via parent CID routing or send_update.

Invoking component actions from parent

actions do
action :open_modal, [:id] do
invoke "product-modal", :open,
module: MyAppWeb.ProductModal,
params: [product_id: {:param, :id}]
end
end

Overlays (modals, flyovers)

Pre-built phase-machine driven overlay behavior:

defmodule MyAppWeb.ProductModal do
use Lavash.Component, extensions: [Lavash.Overlay.Modal.Dsl]
import Lavash.Overlay.Modal.Helpers
modal do
open_field :product_id # nil = closed
close_on_escape true
close_on_backdrop true
async_assign :edit_form
end
read :product, Product do
id state(:product_id)
end
form :edit_form, Product do
data result(:product)
end
actions do
action :save do
submit :edit_form, on_success: :close
end
end
render fn assigns ->
~L"""
<div class="p-6">
<.modal_close_button myself={@myself} />
<!-- form content -->
</div>
"""
end
end

The overlay runs through phases (idle → entering → [loading] → visible → exiting → idle); the optimistic JS hook drives the transitions client-side.

PubSub invalidation

# In a read declaration
read :products, Product, :list do
invalidate :pubsub
end
# In the Ash resource: which attributes trigger invalidation
defmodule MyApp.Product do
use Ash.Resource, extensions: [Lavash.Resource]
lavash do
notify_on [:category_id, :in_stock]
end
end

When a form submits, Lavash broadcasts to PubSub topics matching the mutated resource. LiveViews with subscribed reads auto-refresh.

Using lavash without the DSL

Lavash.LiveView.Explicit exposes the reactive engine without the Spark DSL, the template transformer, the optimistic JS, or any of the overlay / form / binding machinery. You get the dependency graph and automatic recomputation; you write mount/3, handle_event/3, and render/1 like any plain Phoenix LiveView.

defmodule MyAppWeb.CounterLive do
use Lavash.LiveView.Explicit
reactive do
state :count, 0
state :step, 1
derive :doubled, rx(@count * @step)
end
@impl Phoenix.LiveView
def handle_event("inc", _, socket) do
{:noreply, put_state(socket, :count, &(&1 + 1))}
end
@impl Phoenix.LiveView
def render(assigns) do
~H"""
<p>{@count} (doubled = {@doubled})</p>
<button phx-click="inc">+</button>
"""
end
end

put_state/3 mutates a field and immediately recomputes the dependent graph — no "I forgot to call recompute" footgun. mount/3 and handle_info/2 for async derives are wired automatically.

This path is useful when you want the reactive primitives but don't need the DSL's optimistic JS, URL-backed state, forms, or overlays.

License

MIT