tankh7

tankh7

Custom changeset validations return error protocol Enumerable not implemented for #Ecto.Changeset

I’m having an issue with my custom changeset validations. There is a form where a user can change their White Labeling colors for their app. I have created custom validations that make sure the colors submitted are either hexdecimal or rgb format. Validation works OK if the value being passed to the validation doesn’t contain # or rgb in the string. If it does, the validations crash the app.

I get this error:

protocol Enumerable not implemented for '#Ecto.Changeset<action: nil, changes: %{background: "#ff", header_background: "#ff"}, errors: [background: {"Color must be in hexdecimal or rgb format", [validation: :format]}], data: #App.WhiteLabels.Theme<>, valid?: false>' of type Ecto.Changeset (a struct). This protocol is implemented for the following type(s): Ecto.Adapters.SQL.Stream, Postgrex.Stream, Floki.HTMLTree, DBConnection.PrepareStream, DBConnection.Stream, StreamData, File.Stream, Map, List, IO.Stream, Range, HashDict, Stream, HashSet, Function, Date.Range, MapSet, GenEvent.Stream

Initial changeset being passed in looks like this

#Ecto.Changeset<
  action: nil,
  changes: %{background: "#ff", header_background: "#ff"},
  errors: [],
  data: #App.WhiteLabels.Theme<>,
  valid?: true
>

Here is a simplified version of my changeset code:

  @spec changeset(%__MODULE__{}, map) :: %Ecto.Changeset{}
  def changeset(schema, attrs) do
    schema
    |> cast(attrs, @fields)
    |> validate_required(@required_fields)
    |> validate_theme_change(:background)
    |> validate_theme_change(:header_background)
  end

  def validate_theme_change(changeset, field) do
    validate_change(changeset, field, fn (current_field, value) ->
      cond do
        String.contains?(value, "http") -> []
        String.contains?(value, "#") -> validate_hexdecimal(changeset, field) |> IO.inspect()
        String.contains?(value, "rgb") -> validate_rgb(changeset, field)
        true -> [{field, "Color must be in hexdecimal or rgb format"}]
      end
    end
    )
  end

  defp validate_hexdecimal(changeset, field) do
    validate_format(changeset, field, ~r/^([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/, message: "Color must be in hexdecimal or rgb format")
  end

  defp validate_rgb(changeset, field) do
    validate_format(changeset, field, ~r/^[Rr][Gg][Bb][\(](((([\d]{1,3})[\,]{0,1})[\s]*){3})[\)]$/, message: "Color must be in hexdecimal or rgb format")
  end

Stack trace shows it gets to the line |> validate_theme_change(:background)

Marked As Solved

tankh7

tankh7

Solved!

I’m returning a changeset instead of a list of errors in my validate_hexdecimal and validate_rgb functions.

Where Next?

Popular in Questions Top

JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
jononomo
I am trying to figure out how Mix knows whether the environment is test, dev, or prod – where is this set? Thanks.
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
PeterCarter
There are pre-rolled solutions for other frameworks that do work. However, Phoenix does not seem to have these. Have people had good expe...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New

Other popular topics Top

vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
dogweather
I wrote this comment on r/haskell, and it’s not popular there. :wink: But I think I’m on to something… Haskell reminds me of Java, and e...
New
gausby
I asked this very same question on twitter and got some interesting feedback, but I thought it would be a good question to ask here as we...
1207 40042 209
New
senggen
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] 15:22:35.803 [error] gen_event {lager_file_backend...
New

We're in Beta

About us Mission Statement