acrolink
I am using something like this to filter Ecto.Query results:
def build_query(query, "order_by", order_by, _conn) when order_by != "" do
case order_by do
"desc_inserted_at" -> Ecto.Query.order_by(query, [p], [desc: p.inserted_at])
"asc_inserted_at" -> Ecto.Query.order_by(query, [p], [asc: p.inserted_at])
"desc_title" -> Ecto.Query.order_by(query, [p], [desc: p.title])
"asc_title" -> Ecto.Query.order_by(query, [p], [asc: p.title])
_ -> query
end
end
I will be passing to this method order_by variables with values like name, id, inserted_at, etc preceded by either desc or asc, e.g. desc_inserted_at.
My question, how to make it in less repetitive code, especially when it comes to specifying the direction desc or asc ? Thank you.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
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
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 20 Posts
kokolegorille
It would be easier to have a dir and order…
eg.
That does not check input validity, but You might see what I mean. It is not tested…
BTW You can use Regex like this to get metadata
UPDATE: I have should have written [h | t], thanks @blatyo for spotting typo
blatyo
I tend to use pattern matching in function heads. Here’s how I might approach it.
blatyo
Looks like you meant
[h | t] = order_by |> String.split("_")kokolegorille
Oh Yes, my bad
McElaney
Just add a step to the transformation that handles the repetitive bits. Easier to read than trying to meta program your way in to it.
idi527
I wouldn’t pass strings to a “context”, though. I would parse these strings at the boundary and turn them into more manageable data structures like
{:order_by, :desc, :inserted_at}, which would be easier to handle inside the “context”.On the boundary (maybe a controller):
Then in the “context”
acrolink
Thank you all for all possible solutions provided, I simply love Elixir. Much can be done with little code. I suspect other languages like
JAVAwon’t allow similar shortcuts, power and flexibility.jordiee
I may be wrong here but is it not slightly dangerous to use String.to_atom on what I suspect is user passed strings. This opens up an attack vector for memory issues because atoms are not garbage collected. Again correct me if I am wrong.
idi527
Yeah, it is dangerous.
String.to_existing_atom/1can be used instead.kokolegorille
Yes… You need to validate input in my code to avoid bad surprise
I like @blatyo pattern matching solution, as it includes sanity check, but the main point is to separate order_by in direction/order, so that You need only one Ecto.Query command.