View Source TestWeb.PostTable behaviour (Exzeitable v0.6.4)

Users post table

Summary

Functions

Convenience helper so LiveView doesn't have to be called directly

Typing into the search box... searches. Crazy, right?

Refresh periodically grabs new records from the database

Initial setup on page load

Callback implementation for Phoenix.LiveView.render/1.

Types

Callbacks

@callback render(map()) :: {:ok, iolist()}

Functions

Convenience helper so LiveView doesn't have to be called directly

Example

<%= YourAppWeb.Live.Site.live_table(@conn, query: @query) %>
Link to this function

custom_button(socket, entry, csrf_token)

View Source
Link to this function

do_search(query, search)

View Source
@spec do_search(Ecto.Query.t(), String.t()) :: Ecto.Query.t()
Link to this function

handle_event(binary, arg2, socket)

View Source
@spec handle_event(String.t(), map(), socket()) :: {:noreply, socket()}

Typing into the search box... searches. Crazy, right?

Link to this function

handle_info(atom, socket)

View Source

Refresh periodically grabs new records from the database

Link to this function

live_table(conn, opts \\ [])

View Source
@spec live_table(
  Plug.Conn.t(),
  keyword()
) :: {:safe, iolist()}
Link to this function

mount(arg1, assigns, socket)

View Source
@spec mount(:not_mounted_at_router | map(), map(), socket()) :: {:ok, socket()}

Initial setup on page load

Callback implementation for Phoenix.LiveView.render/1.