diff --git a/lib/cannery/tags.ex b/lib/cannery/tags.ex index 4a74f06a..8246608d 100644 --- a/lib/cannery/tags.ex +++ b/lib/cannery/tags.ex @@ -4,7 +4,7 @@ defmodule Cannery.Tags do """ import Ecto.Query, warn: false - alias Cannery.Repo + alias Cannery.{Accounts, Repo} alias Cannery.Tags.Tag @@ -17,8 +17,15 @@ defmodule Cannery.Tags do [%Tag{}, ...] """ - def list_tags do - Repo.all(Tag) + @spec list_tags(Accounts.User.t()) :: [Tag.t()] + def list_tags(%{id: user_id}) do + list_tags(user_id) + end + + def list_tags(user_id) do + Repo.all( + from t in Tag, where: t.user_id == ^user_id + ) end @doc """ @@ -35,6 +42,7 @@ defmodule Cannery.Tags do ** (Ecto.NoResultsError) """ + @spec get_tag!(Ecto.UUID.t()) :: Tag.t() def get_tag!(id), do: Repo.get!(Tag, id) @doc """ @@ -49,10 +57,9 @@ defmodule Cannery.Tags do {:error, %Ecto.Changeset{}} """ - def create_tag(attrs \\ %{}) do - %Tag{} - |> Tag.changeset(attrs) - |> Repo.insert() + @spec create_tag(map()) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()} + def create_tag(attrs) do + %Tag{} |> Tag.changeset(attrs) |> Repo.insert() end @doc """ @@ -67,10 +74,9 @@ defmodule Cannery.Tags do {:error, %Ecto.Changeset{}} """ - def update_tag(%Tag{} = tag, attrs) do - tag - |> Tag.changeset(attrs) - |> Repo.update() + @spec update_tag(Tag.t(), map()) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()} + def update_tag(tag, attrs) do + tag |> Tag.changeset(attrs) |> Repo.update() end @doc """ @@ -85,7 +91,8 @@ defmodule Cannery.Tags do {:error, %Ecto.Changeset{}} """ - def delete_tag(%Tag{} = tag) do + @spec delete_tag(Tag.t()) :: {:ok, Tag.t()} | {:error, Ecto.Changeset.t()} + def delete_tag(tag) do Repo.delete(tag) end @@ -98,7 +105,9 @@ defmodule Cannery.Tags do %Ecto.Changeset{data: %Tag{}} """ - def change_tag(%Tag{} = tag, attrs \\ %{}) do + @spec change_tag(Tag.t()) :: Ecto.Changeset.t() + @spec change_tag(Tag.t(), map()) :: Ecto.Changeset.t() + def change_tag(tag, attrs \\ %{}) do Tag.changeset(tag, attrs) end end diff --git a/lib/cannery/tags/tag.ex b/lib/cannery/tags/tag.ex index 521ca2fe..abd564c0 100644 --- a/lib/cannery/tags/tag.ex +++ b/lib/cannery/tags/tag.ex @@ -16,7 +16,7 @@ defmodule Cannery.Tags.Tag do @doc false def changeset(tag, attrs) do tag - |> cast(attrs, [:name, :bg_color, :text_color]) - |> validate_required([:name, :bg_color, :text_color]) + |> cast(attrs, [:name, :bg_color, :text_color, :user_id]) + |> validate_required([:name, :bg_color, :text_color, :user_id]) end end diff --git a/lib/cannery_web/live/tag_live/form_component.ex b/lib/cannery_web/live/tag_live/form_component.ex index 60e88791..5eeeb36a 100644 --- a/lib/cannery_web/live/tag_live/form_component.ex +++ b/lib/cannery_web/live/tag_live/form_component.ex @@ -15,6 +15,8 @@ defmodule CanneryWeb.TagLive.FormComponent do @impl true def handle_event("validate", %{"tag" => tag_params}, socket) do + tag_params = tag_params |> Map.put("user_id", socket.assigns.current_user.id) + changeset = socket.assigns.tag |> Tags.change_tag(tag_params) @@ -24,6 +26,7 @@ defmodule CanneryWeb.TagLive.FormComponent do end def handle_event("save", %{"tag" => tag_params}, socket) do + tag_params = tag_params |> Map.put("user_id", socket.assigns.current_user.id) save_tag(socket, socket.assigns.action, tag_params) end diff --git a/lib/cannery_web/live/tag_live/form_component.html.leex b/lib/cannery_web/live/tag_live/form_component.html.leex index ae331c60..0c4f448a 100644 --- a/lib/cannery_web/live/tag_live/form_component.html.leex +++ b/lib/cannery_web/live/tag_live/form_component.html.leex @@ -1,22 +1,32 @@ -
+ Tags can be added to your containers to help you organize +
+ + <%= if @tags |> Enum.empty?() do %> +Name | -Bg-color | -Text-color | - -- |
---|---|---|---|
<%= tag.name %> | -<%= tag.bg_color %> | -<%= tag.text_color %> | - -- <%= live_patch "Edit", to: Routes.tag_index_path(@socket, :edit, tag) %> - <%= link "Delete", to: "#", phx_click: "delete", phx_value_id: tag.id, data: [confirm: "Are you sure?"] %> - | -