bones73k/lib/bones73k_web/views/layout_view.ex

22 lines
481 B
Elixir

defmodule Bones73kWeb.LayoutView do
use Bones73kWeb, :view
def nav_link_opts(conn, opts) do
case Keyword.get(opts, :to) == Phoenix.Controller.current_path(conn) do
false -> opts
true -> Keyword.update(opts, :class, "active", fn c -> "#{c} active" end)
end
end
def alert_kinds do
[
success: "success",
info: "info",
error: "danger",
warning: "warning",
primary: "primary",
secondary: "secondary"
]
end
end