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
Solved!
I’m returning a changeset instead of a list of errors in my validate_hexdecimal and validate_rgb functions.
1
Popular in Questions
Hello, how can I check the Phoenix version ?
Thanks !
New
I am trying to figure out how Mix knows whether the environment is test, dev, or prod – where is this set?
Thanks.
New
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
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
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
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
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
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
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
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
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
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...
New
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #hex









