cannery/lib/cannery/ammo/ammo_group.ex

81 lines
2.6 KiB
Elixir
Raw Normal View History

2021-09-02 23:31:14 -04:00
defmodule Cannery.Ammo.AmmoGroup do
2022-01-22 21:40:29 -05:00
@moduledoc """
A group of a certain ammunition type.
Can be placed in a container, and contains auxiliary information such as the
amount paid for that ammunition, or what condition it is in
"""
2021-09-02 23:31:14 -04:00
use Ecto.Schema
import Ecto.Changeset
2022-01-31 20:08:01 -05:00
alias Cannery.Ammo.{AmmoGroup, AmmoType}
2022-02-15 21:56:01 -05:00
alias Cannery.{Accounts.User, ActivityLog.ShotGroup, Containers.Container}
2022-01-31 20:08:01 -05:00
alias Ecto.{Changeset, UUID}
2021-09-02 23:31:14 -04:00
@primary_key {:id, :binary_id, autogenerate: true}
@foreign_key_type :binary_id
schema "ammo_groups" do
field :count, :integer
field :notes, :string
field :price_paid, :float
2022-02-15 17:33:45 -05:00
field :staged, :boolean, default: false
2022-01-31 20:08:01 -05:00
belongs_to :ammo_type, AmmoType
belongs_to :container, Container
belongs_to :user, User
2021-09-02 23:31:14 -04:00
2022-02-15 21:56:01 -05:00
has_many :shot_groups, ShotGroup
2021-09-02 23:31:14 -04:00
timestamps()
end
2022-01-31 20:08:01 -05:00
@type t :: %AmmoGroup{
id: id(),
count: integer,
2022-02-09 23:45:10 -05:00
notes: String.t() | nil,
price_paid: float() | nil,
2022-02-15 17:33:45 -05:00
staged: boolean(),
2022-02-09 23:45:10 -05:00
ammo_type: AmmoType.t() | nil,
2022-01-31 20:08:01 -05:00
ammo_type_id: AmmoType.id(),
2022-02-09 23:45:10 -05:00
container: Container.t() | nil,
2022-01-31 20:08:01 -05:00
container_id: Container.id(),
2022-02-09 23:45:10 -05:00
user: User.t() | nil,
2022-01-31 20:08:01 -05:00
user_id: User.id(),
inserted_at: NaiveDateTime.t(),
updated_at: NaiveDateTime.t()
}
@type new_ammo_group :: %AmmoGroup{}
@type id :: UUID.t()
2021-09-02 23:31:14 -04:00
@doc false
2022-02-14 20:51:09 -05:00
@spec create_changeset(new_ammo_group(), attrs :: map()) :: Changeset.t(new_ammo_group())
def create_changeset(ammo_group, attrs) do
2021-09-02 23:31:14 -04:00
ammo_group
2022-02-15 17:33:45 -05:00
|> cast(attrs, [:count, :price_paid, :notes, :staged, :ammo_type_id, :container_id, :user_id])
2022-02-14 20:51:09 -05:00
|> validate_number(:count, greater_than: 0)
2022-02-15 17:33:45 -05:00
|> validate_required([:count, :staged, :ammo_type_id, :container_id, :user_id])
2021-09-02 23:31:14 -04:00
end
@doc false
@spec update_changeset(t() | new_ammo_group(), attrs :: map()) ::
Changeset.t(t() | new_ammo_group())
def update_changeset(ammo_group, attrs) do
ammo_group
2022-02-15 17:33:45 -05:00
|> cast(attrs, [:count, :price_paid, :notes, :staged, :ammo_type_id, :container_id])
|> validate_number(:count, greater_than_or_equal_to: 0)
2022-02-15 17:33:45 -05:00
|> validate_required([:count, :staged, :ammo_type_id, :container_id, :user_id])
2022-02-14 20:51:09 -05:00
end
@doc """
This range changeset is used when "using up" ammo groups, and allows for
updating the count to 0
"""
@spec range_changeset(t() | new_ammo_group(), attrs :: map()) ::
Changeset.t(t() | new_ammo_group())
def range_changeset(ammo_group, attrs) do
ammo_group
2022-02-15 17:33:45 -05:00
|> cast(attrs, [:count, :staged])
|> validate_required([:count, :staged, :ammo_type_id, :container_id, :user_id])
end
2021-09-02 23:31:14 -04:00
end