josefrichter
Hi, I have this double condition if foo && bar do something and all the other cases basically don’t interest me. both foo and bar are assigns in a liveview socket, and I believe there’s a nicer, more elixir style way, of writing my function. I am thinking of some cond with pattern matching, but not sure how to put together the syntax - I am basically stuck at the very first line of the block :-o Can you please give me a hint? Thank you
# 1. check whether we have socket.assign.user
# 2. check if all todos are true
IO.inspect socket.assigns
socket =
if (socket.assigns.user && list_completed?(socket.assigns.list_id)) do
email = socket.assigns.user.email
list_url = "https://organizer.gigalixirapp.com/#{list_id}"
IO.puts "All tasks complete!"
socket =
socket
|> put_flash(:info, "All tasks complete! Sending notification to #{email}...")
Task.Supervisor.start_child(Organizer.TaskSupervisor, fn ->
IO.puts "Sending to #{email} from within a Task"
Organizer.Mailer.send_completion_notification(email, list_url)
end)
socket
else
IO.puts "Nope, either no user, or list not complete yet..."
socket
end
...
defp list_completed?(list_id) do
Lists.list_todos(list_id)
|> Enum.all?(&(&1.done)) # checks if all true https://hexdocs.pm/elixir/Enum.html#all?/2
end
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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 everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 3- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
gregvaughn
I wouldn’t refactor it. Yes, you could use a case, cond, or with, but I don’t think any of them bring clarity over what you have. You only have 2 cases and your conditions are boolean.
al2o3cr
Here’s my take on it:
If possible, I like to avoid rebinding (the
socket = ...something that uses socket...pattern) partly because it adds indentation and partly because it’s a warning sign of complexity.Sometimes you can avoid that by shuffling operations; this version starts the task before calling
put_flash(versus the original that does the reverse) but there shouldn’t be any observable side-effect.I broke
send_completion_notificationout into a private function to keep the main chunk of code focused at a single level of abstraction: manipulatingsocket’s contents.Bigger tidying that could be done, depending on the context: is there something that ensures
socket.assigns.useris set before this code runs? If so, consider skipping the re-check in theifclause and Let It Crash.josefrichter
I like this! Not changing the logic, as @gregvaughn suggested, but nicely broken down into cleaner and more readable parts. Thank you!