108 lines
1.9 KiB
Elixir
108 lines
1.9 KiB
Elixir
![]() |
defmodule Content.Comments do
|
||
|
@moduledoc """
|
||
|
Functions for presenting comments on the site.
|
||
|
"""
|
||
|
import Ecto.Query, warn: false
|
||
|
alias Content.Comment
|
||
|
alias Content.Repo
|
||
|
|
||
|
def children(parent_comment_id, array_of_comments) do
|
||
|
array_of_comments
|
||
|
|> Enum.filter(&(&1.comment_parent == parent_comment_id))
|
||
|
end
|
||
|
|
||
|
@doc """
|
||
|
Returns the list of comments.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> list_comments()
|
||
|
[%Comment{}, ...]
|
||
|
|
||
|
"""
|
||
|
def list_comments do
|
||
|
Repo.all(Comment)
|
||
|
end
|
||
|
|
||
|
@doc """
|
||
|
Gets a single comment.
|
||
|
|
||
|
Raises `Ecto.NoResultsError` if the comment does not exist.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> get_comment!(123)
|
||
|
%Comment{}
|
||
|
|
||
|
iex> get_comment!(456)
|
||
|
** (Ecto.NoResultsError)
|
||
|
|
||
|
"""
|
||
|
def get_comment!(id), do: Repo.get!(Comment, id)
|
||
|
|
||
|
@doc """
|
||
|
Creates a comment.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> create_comment(%{field: value})
|
||
|
{:ok, %Comment{}}
|
||
|
|
||
|
iex> create_comment(%{field: bad_value})
|
||
|
{:error, %Ecto.Changeset{}}
|
||
|
|
||
|
"""
|
||
|
def create_comment(attrs \\ %{}) do
|
||
|
%Comment{}
|
||
|
|> Comment.changeset(attrs)
|
||
|
|> Repo.insert()
|
||
|
end
|
||
|
|
||
|
@doc """
|
||
|
Updates a comment.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> update_comment(comment, %{field: new_value})
|
||
|
{:ok, %Comment{}}
|
||
|
|
||
|
iex> update_comment(comment, %{field: bad_value})
|
||
|
{:error, %Ecto.Changeset{}}
|
||
|
|
||
|
"""
|
||
|
def update_comment(%Comment{} = comment, attrs) do
|
||
|
comment
|
||
|
|> Comment.changeset(attrs)
|
||
|
|> Repo.update()
|
||
|
end
|
||
|
|
||
|
@doc """
|
||
|
Deletes a Comment.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> delete_comment(comment)
|
||
|
{:ok, %Comment{}}
|
||
|
|
||
|
iex> delete_comment(comment)
|
||
|
{:error, %Ecto.Changeset{}}
|
||
|
|
||
|
"""
|
||
|
def delete_comment(%Comment{} = comment) do
|
||
|
Repo.delete(comment)
|
||
|
end
|
||
|
|
||
|
@doc """
|
||
|
Returns an `%Ecto.Changeset{}` for tracking comment changes.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> change_comment(comment)
|
||
|
%Ecto.Changeset{source: %Comment{}}
|
||
|
|
||
|
"""
|
||
|
def change_comment(%Comment{} = comment) do
|
||
|
Comment.changeset(comment, %{})
|
||
|
end
|
||
|
end
|