gjaldon/ecto_enum


Ecto extension to support enums in models

License: MIT

Language: Elixir

Keywords: custom-enum, ecto, ecto-extension, elixir, enum, postgres-enum


EctoEnum

Hex.pm version Hex.pm downloads Inline docs Build Status

EctoEnum is an Ecto extension to support enums in your Ecto models.

Usage

First, we add ecto_enum to mix.exs:

def deps do
  [
    {:ecto_enum, "~> 1.3"}
  ]
end

Run mix deps.get to install ecto_enum.

Creating an Ecto Enum with defenum/2 macro

We will then have to define our enum. We can do this in a separate file since defining an enum is just defining a module. We do it like:

# lib/my_app/ecto_enums.ex

import EctoEnum
defenum StatusEnum, registered: 0, active: 1, inactive: 2, archived: 3

Note that we can also use string-backed enums by doing the following:

defenum StatusEnum, registered: "registered", active: "active", inactive: "active", archived: "archived"
# short-cut way of using string-backed enums
defenum StatusEnum, ["registered", "active", "inactive", "archived"]

Once defined, EctoEnum can be used like any other Ecto.Type by passing it to a field in your model's schema block. For example:

defmodule User do
  use Ecto.Schema

  schema "users" do
    field :status, StatusEnum
  end
end

In the above example, the :status will behave like an enum and will allow you to pass an integer, atom or string to it. This applies to saving the model, invoking Ecto.Changeset.cast/4, or performing a query on the status field. Let's do a few examples:

iex> user = Repo.insert!(%User{status: 0})
iex> Repo.get(User, user.id).status
:registered

iex> %{changes: changes} = cast(%User{}, %{"status" => "active"}, ~w(status), [])
iex> changes.status
:active

iex> from(u in User, where: u.status == ^:registered) |> Repo.all() |> length
1

Passing a value that the custom Enum type does not recognize will result in an error.

Creating an Ecto Enum by useing EctoEnum

Another way to create an Ecto Enum is by useing the EctoEnum or the EctoEnum.Postgres modules.

To use EctoEnum with integer-backed storage:

defmodule CustomEnum do
  use EctoEnum, ready: 0, set: 1, go: 2
end

To use EctoEnum with string-backed storage:

defmodule CustomEnum do
  use EctoEnum, "ready", "set", "go"
end

To use EctoEnum with Postgres user-defined types:

defmodule PostgresType do
  use EctoEnum, type: :new_type, enums: [:ready, :set, :go]
end

We can also use EctoEnum.Postgres directly like:

defmodule NewType do
  use EctoEnum.Postgres, type: :new_type, enums: [:ready, :set, :go]
end

Reflection

The enum type StatusEnum will also have a reflection function for inspecting the enum map at runtime.

iex> StatusEnum.__enum_map__()
[registered: 0, active: 1, inactive: 2, archived: 3]
iex> StatusEnum.__valid_values__()
[0, 1, 2, 3, :registered, :active, :inactive, :archived, "active", "archived",
"inactive", "registered"]

There is also a helper function that leverages the __valid_values__() reflection called valid_value?(value).

iex> StatusEnum.valid_value?(:registered)
true
iex> StatusEnum.valid_value?("invalid")
false

Using Postgres's Enum Type

Enumerated Types in Postgres are now supported. To use Postgres's Enum Type with EctoEnum, use the defenum/3 macro instead of defenum/2. We do it like:

# lib/my_app/ecto_enums.ex

import EctoEnum
defenum StatusEnum, :status, [:registered, :active, :inactive, :archived]

The second argument is the name you want to use for the new type you are creating in Postgres. Note that defenum/3 expects a list of atoms(could be strings) instead of a keyword list unlike in defenum/2. Another notable difference is that you can no longer use integers in place of atoms or strings as values in your enum type. Given the above code, this means that you can only pass the following values:

[:registered, :active, :inactive, :archived, "registered", "active", "inactive", "archived"]

In your migrations, you can make use of helper functions like:

def change do
  StatusEnum.create_type
  create table(:users_pg) do
    add :status, StatusEnum.type()
  end
end

create_type/0, type/0 and drop_type/0 are automatically defined for you in your custom Enum module.

You can also create the enum in a different schema:

defenum StatusEnum, :status, [:registered, :active, :inactive, :archived], schema: "alternative_schema"

Important notes/gotchas

Postgres

  • Keep in mind that ALTER TYPE ... ADD VALUE cannot be executed inside a transaction block. This means that running this inside a migration requires you to set to the module attribute @disable_ddl_transaction to true. For example:
defmodule MyApp.Repo.Migrations.AddToGenderEnum do
  use Ecto.Migration
  @disable_ddl_transaction true

  def up do
    Ecto.Migration.execute "ALTER TYPE gender ADD VALUE IF NOT EXISTS'other'"
  end

  def down do
  end
end
  • Note that there is no easy way to drop an enum value. It is not supported and you must create a new type without the value. Here are some work-arounds. Best to avoid having to drop an enum value.

Important links

Project Statistics

Sourcerank 11
Repository Size 173 KB
Stars 562
Forks 131
Watchers 11
Open issues 23
Dependencies 4
Contributors 27
Tags 14
Created
Last updated
Last pushed

Top Contributors See all

gjaldon Milad Milo Lee Bernard Duggan Dennis Beatty Haito Albert Arvidsson Josh Taylor Denis Andrejew Mateusz Czarnecki Chris Gaudreau LOU Xun Peter Marreck Shane Howley Karol Wojtaszek kiminoa Michael Lyu Bartosz Nowak Dan Andréasson Unai Esteibar

Packages Referencing this Repo

ecto_enum
Ecto extension to support enums in models
Latest release 1.4.0 - Updated - 562 stars

Recent Tags See all

v1.4.0 October 31, 2019
v1.3.2 July 25, 2019
v1.3.1 July 05, 2019
v1.3.0 June 27, 2019
v1.2.0 January 29, 2019
v1.1.0 December 07, 2017
v1.0.2 July 21, 2017
v1.0.1 December 27, 2016
v1.0 November 06, 2016
v0.4.0 August 10, 2016
v0.3.2 August 02, 2016
0.3.2 August 02, 2016
v0.3.1 May 10, 2016
v0.3.0 August 31, 2015

Interesting Forks See all

deadtrickster/ecto_enum
Ecto extension to support enums in models
Elixir - Last pushed - 1 stars
Enbala/ecto_enum
Ecto extension to support enums in models
Elixir - Updated - 1 stars
gullitmiranda/ecto_enum
Ecto extension to support enums in models
Elixir - Last pushed - 1 stars

Something wrong with this page? Make a suggestion

Last synced: 2024-07-29 03:07:25 UTC

Login to resync this repository