fceruti
I just wanted to share with you a small macro that has cleaned up many many lines of code for me.
Basically in my contexts I had this kind of code everywhere
|> Repo.transaction()
|> case do
{:ok, %{goal: goal}} = result ->
PubSub.broadcast_goal_created(user, goal)
result
error ->
error
end
A possible solution would be to add maybe functions
|> Repo.transaction()
|> maybe_broadcast_goal_created(user)
..
def maybe_broadcast_goal_created({:ok, %{goal: goal}} = result, user) do
PubSub.broadcast_goal_created(user, goal)
result
end
def maybe_broadcast_goal_created(result, user), do: result
Which is not ideal since I’d have to create one pair for each function in context.
Macros to the rescue!
Inspired by how IO.inspect prints and keeps moving, I created case_continue, which runs case, ignores it’s result and continues the pipe as if it was never there.
defmodule Timetask.Helpers.Macros do
defmacro case_continue(prev, do: block) do
quote do
case unquote(prev) do
unquote(block ++ [{:->, [], [[{:_, [], nil}], nil]}])
end
unquote(prev)
end
end
end
Now I can write it like this.
|> Repo.transaction()
|> case_continue do
{:ok, %{goal: goal}} -> PubSub.broadcast_goal_created(user, goal)
end
Much nicer huh? What do you think? Do you like the name? I also had in mind case_bridge or case_skip.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Latest on Elixir Forum
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
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #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)
RudManusachi
Piping into
(see don’t pipe into case statements)
caselately became a subject for debatesMacros are awesome! ..mostly for stuff I do on my own
Especially adding up to the language syntax meant to be commonly used across the project might not be obvious to the team who work with the code.
_https://elixir-lang.org/getting-started/meta/macros.html#foreword_
Whenever I notice
caseof just two branches one of which just returns the input - I think ofwithWith your macro we can handle more than just one happy path, though.
al2o3cr
I don’t find the
error ->boilerplate that annoying, personally. I always prefer to unpack results (both successand error) from passingEcto.MultitoRepo.transactionas close to the transaction as possible, because otherwise operation names become an accidental part of the function’s interface.I’m also not sure how the above macro accomplishes the task - it seems like a result other than
{:ok, %{goal: _}}will fail to match in the generatedcasestatement.fceruti
Interesting, is this like a tab vs spaces kinda thing? hehe
I’ll check it out.
Yup, bug found! Too quick to publish (solved above)
Good point. You could still unpack the result in a later
case doto give shape to errors.or even
To me it feels natural to have a separate step in the pipeline dedicated to call external services. But that’s just me. It’s definitely clearer when dealing with
Repo’supdate,insertordelete, where Ecto’s interface is usually the function’s interface →{:ok, struct}&{:error, Changeset}.RudManusachi
It depends. Sometimes if “call to external service” fails we would want to rollback the transaction =)) can’t come up with a reasonable example from top of my head why would we took a transaction before external service call, but I have a feeling that I faced that in the past.
derek-zhou
Using the
then/2macro introduced in elixir 1.12, you can do:Sebb
Where is the debate? This just says: dont do it!
IloSophiep
Am i missing something or would one possible solution to define something like
Maybe.mapthat “hides” thatcaseexpression away in a generic way (or insteadResult.mapdepending on your context, but that’s not really important)?MaybeandResultmodules are common in lots of languages nowadays, so i hope it’s clear what i mean with that. That way you don’t have to define a helper for every situation.RudManusachi
Sorry, should have mentioned. Some discussions can be found here and there.. for example in threads in twitter like this one. Or in some threads in comments in HackerNews [1][2]
Sebb
There is no case for not piping into case in the links you provided.
fceruti
Great observation about “maybe” as a name. I actually renamed the macro to
maybe_case.I fail to grasp what you are trying to argue thou. Could you provide some high level code?