26 lines
		
	
	
		
			619 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			619 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule CanneryWeb.ContainerLive.Show do
 | 
						|
  @moduledoc """
 | 
						|
  Liveview for showing and editing a Cannery.Containers.Container
 | 
						|
  """
 | 
						|
 | 
						|
  use CanneryWeb, :live_view
 | 
						|
 | 
						|
  alias Cannery.Containers
 | 
						|
 | 
						|
  @impl true
 | 
						|
  def mount(_params, session, socket) do
 | 
						|
    {:ok, socket |> assign_defaults(session)}
 | 
						|
  end
 | 
						|
 | 
						|
  @impl true
 | 
						|
  def handle_params(%{"id" => id}, _, socket) do
 | 
						|
    {:noreply,
 | 
						|
     socket
 | 
						|
     |> assign(:page_title, page_title(socket.assigns.live_action))
 | 
						|
     |> assign(:container, Containers.get_container!(id))}
 | 
						|
  end
 | 
						|
 | 
						|
  defp page_title(:show), do: "Show Container"
 | 
						|
  defp page_title(:edit), do: "Edit Container"
 | 
						|
end
 |