Packages
torch
6.0.0
6.0.0
5.6.0
5.5.0
5.4.0
5.3.2
5.3.1
5.2.0
5.1.2
5.1.1
5.1.0
5.0.0
5.0.0-rc.4
5.0.0-rc.3
5.0.0-rc.2
5.0.0-rc.1
5.0.0-rc.0
4.3.2
4.3.1
4.3.0
4.2.1
4.2.0
retired
4.1.0
4.0.0
4.0.0-rc.0
3.9.1
3.9.0
3.8.0
3.7.1
3.7.0-rc.0
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.0
3.4.1
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.1.0
2.0.0
2.0.0-rc.3
2.0.0-rc.2
2.0.0-rc.1
1.0.0-rc.6
1.0.0-rc.5
1.0.0-rc.4
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
0.2.0-rc.5
0.2.0-rc.4
0.2.0-rc.3
0.2.0-rc.2
0.2.0-rc.1
0.1.0
Rapid admin generator for Phoenix
Current section
Files
Jump to
Current section
Files
lib/torch/views/flash_view.ex
defmodule Torch.FlashView do
@moduledoc """
Contains functions for dealing with flash messages.
"""
@moduledoc deprecated: "This module will be fully removed in Torch 6.0"
use Phoenix.Component
@doc """
DEPRECATED: Use Torch.Components.flash_messages/1 component instead
Returns a formatted group of all flash messages available.
## Parameters
- `assigns`: The current `Plug.Conn.assigns` map.
## Example
iex> conn = %Plug.Conn{assigns: %{flash: %{"error" => "Error Message", "info" => "Info Message", "custom" => "Custom flash key"}}}
...> flash_messages(conn.assigns) |> Phoenix.HTML.Safe.to_iodata() |> IO.iodata_to_binary()
"<section id=\\"torch-flash-messages\\">\\n <div class=\\"torch-container\\">\\n <p class=\\"torch-flash custom\\">Custom flash key <button class=\\"torch-flash-close\\">x</button></p><p class=\\"torch-flash error\\">Error Message <button class=\\"torch-flash-close\\">x</button></p><p class=\\"torch-flash info\\">Info Message <button class=\\"torch-flash-close\\">x</button></p>\\n </div>\\n</section>"
"""
@spec flash_messages(%{assigns: %{flash: map}}) :: Phoenix.LiveView.Rendered.t()
@deprecated "Use Torch.Components.flash_messages/1 instead"
def flash_messages(assigns), do: Torch.Component.flash_messages(assigns)
end