mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
63 lines
1.8 KiB
Elixir
63 lines
1.8 KiB
Elixir
defmodule PhilomenaWeb.Api.Json.CommentView do
|
|
use PhilomenaWeb, :view
|
|
alias PhilomenaWeb.UserAttributionView
|
|
|
|
def render("index.json", %{comments: comments, total: total} = assigns) do
|
|
%{
|
|
comments: render_many(comments, PhilomenaWeb.Api.Json.CommentView, "comment.json", assigns),
|
|
total: total
|
|
}
|
|
end
|
|
|
|
def render("show.json", %{comment: comment} = assigns) do
|
|
%{comment: render_one(comment, PhilomenaWeb.Api.Json.CommentView, "comment.json", assigns)}
|
|
end
|
|
|
|
def render("comment.json", %{comment: %{destroyed_content: true}}) do
|
|
nil
|
|
end
|
|
|
|
def render("comment.json", %{comment: %{image: %{hidden_from_users: true}} = comment}) do
|
|
%{
|
|
id: comment.id,
|
|
image_id: comment.image_id,
|
|
user_id: nil,
|
|
author: nil,
|
|
body: nil,
|
|
created_at: nil,
|
|
updated_at: nil,
|
|
edited_at: nil,
|
|
edit_reason: nil
|
|
}
|
|
end
|
|
|
|
def render("comment.json", %{comment: %{hidden_from_users: true} = comment}) do
|
|
%{
|
|
id: comment.id,
|
|
image_id: comment.image_id,
|
|
user_id: if(not comment.anonymous, do: comment.user_id),
|
|
author: UserAttributionView.name(comment),
|
|
avatar: UserAttributionView.avatar_url(comment),
|
|
body: nil,
|
|
created_at: comment.created_at,
|
|
updated_at: comment.updated_at,
|
|
edited_at: nil,
|
|
edit_reason: nil
|
|
}
|
|
end
|
|
|
|
def render("comment.json", %{comment: comment}) do
|
|
%{
|
|
id: comment.id,
|
|
image_id: comment.image_id,
|
|
user_id: if(not comment.anonymous, do: comment.user_id),
|
|
author: UserAttributionView.name(comment),
|
|
avatar: UserAttributionView.avatar_url(comment),
|
|
body: comment.body,
|
|
created_at: comment.created_at,
|
|
updated_at: comment.updated_at,
|
|
edited_at: comment.edited_at,
|
|
edit_reason: comment.edit_reason
|
|
}
|
|
end
|
|
end
|