grantwest
If I have nested structures, and I want to fetch a field from the a nested structure, but handle a nil case, is there a succinct way to do that? Lets say I have a Project struct which has a client field, which is itself a struct that has field name:
project = %Project{}
name = project.client.name
This works, but if client is nil we get an error. If these were maps I could do
name = get_in(project, [:client, :name]) || ""
Now we get the name if it exists, or we have an empty string. This does not work with structs because they don’t implement access. Is there a similarly concise solution for structs?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
codeanpeace
Hmm, pattern matching comes to mind…
For example, pattern matching via a
casestatement:Or alternatively, pattern matching via function heads:
BradS2S
You can also use a combination of the
Kernel.get_in/2function and theAccess.key/2:name = get_in(project, [Access.key(:client), Access.key(:name)]) || “”
But I think pattern matching is always best first option
benwilson512
It may be heretical but for all of my ecto structs at least we just went ahead and implemented the
Accessbehavior functions so that we can just use access normally. The ergonomics are really nice.cmo
I do the same. There are a couple of projects on hex that you can use:
accessibleand another I can’t remember, or roll your own.trisolaran
You can use Access.key/2 (or Access.key!/1):
chocolatedonut
Is this then an exception to the following note from the
Acessmodule?Any unforeseen downsides of your approach?
benwilson512
Yeah I think that moduledoc is perhaps a bit too strongly worded, because it isn’t that structs aren’t allowed to use that syntax, it’s just that it won’t work by default.
Not really, it’s worked great. In fact in particular, it works rather well with how Ecto handles associations that aren’t loaded yet. Eg:
If you forget to
Repo.preload(shipment, [origin_location: :customer])then you get:Which is great! You didn’t load the association and so instead of treating that as just
nilit errors, indicating that you need to actually load it to determine if it’s there or not.JohnnyCurran
How was the behavior implemented code-wise? I want to do this on our structs
krstfk
Any time nested data access is concerned I’m partial to pathex by @hst337
I find this lib to be very convenient and well documented.
chocolatedonut
Thanks so much Ben! Really appreciate your reply. And on top of that, your approach is even better! Thanks for the example.