Aggiedit/lib/aggiedit_web/live/post_live/index.ex

70 lines
2.3 KiB
Elixir
Raw Normal View History

defmodule AggieditWeb.PostLive.Index do
use AggieditWeb, :live_view
2022-04-13 15:13:41 -04:00
alias Aggiedit.Accounts.User
2022-04-13 14:42:01 -04:00
alias Aggiedit.Roles
alias Aggiedit.Rooms
2022-04-13 15:13:41 -04:00
alias Aggiedit.Rooms.{Post, Room}
alias Aggiedit.Repo
@impl true
def mount(%{"room_id" => room_id} = params, session, socket) do
{:ok, socket} = AggieditWeb.PostLive.Helper.assign_socket_room_and_user_or_error(params, session, socket)
# if !is_nil(socket.assigns[:room]) do
# {:ok, assign(socket, %{:posts => socket.assigns.room |> Repo.preload(:posts) |> Map.get(:posts)})}
# else
# {:ok, socket}
# end
2022-04-06 16:41:19 -04:00
case socket.assigns do
%{:room => room} ->
{:ok, assign(socket, %{:posts => room |> Repo.preload(:posts) |> Map.get(:posts)})}
_ -> {:ok, socket}
2022-04-06 16:41:19 -04:00
end
end
2022-04-13 14:42:01 -04:00
@impl true
def handle_params(%{"id" => id}=params, _url, socket) do
post = Rooms.get_post!(id)
if Roles.guard?(socket.assigns.current_user, socket.assigns.live_action, post) do
{:noreply, apply_action(socket, socket.assigns.live_action, params)}
2022-04-13 14:42:01 -04:00
else
{:noreply, socket |> put_flash(:error, "You do not have permission to edit this post.") |> redirect(to: Routes.post_index_path(socket, :index, socket.assigns.room))}
2022-04-13 14:42:01 -04:00
end
end
@impl true
def handle_params(params, _url, socket) do
2022-04-13 14:42:01 -04:00
IO.puts(inspect(params))
{:noreply, apply_action(socket, socket.assigns.live_action, params)}
end
2022-04-13 14:42:01 -04:00
defp apply_action(socket, :edit, %{"id" => id}=params) do
socket
|> assign(:page_title, "Edit Post")
2022-04-08 15:01:24 -04:00
|> assign(:post, Rooms.get_post!(id) |> Repo.preload(:upload))
end
defp apply_action(socket, :new, _params) do
socket
|> assign(:page_title, "New Post")
2022-04-07 17:52:32 -04:00
|> assign(:post, %Post{})
end
defp apply_action(socket, :index, _params) do
socket
|> assign(:page_title, "Listing Posts")
|> assign(:post, nil)
end
@impl true
def handle_event("delete", %{"id" => id}, socket) do
post = Rooms.get_post!(id)
2022-04-13 14:42:01 -04:00
if Roles.guard?(socket.assigns.current_user, :delete, post) do
Rooms.delete_post(post)
{:noreply, socket |> put_flash(:success, "Post deleted.") |> redirect(to: Routes.post_index_path(socket, :index, socket.assigns.room))}
2022-04-13 14:42:01 -04:00
else
{:noreply, socket |> put_flash(:error, "You do not have permission to delete this post.") |> redirect(to: Routes.post_index_path(socket, :index, socket.assigns.room))}
2022-04-13 14:42:01 -04:00
end
end
end