augnustin
So I have this macro:
defmacro content(_opts \\ [], do: block) do
quote location: :keep do
def page_view(var!(conn)) do
import Kernel, except: [div: 2, to_string: 1]
import ExAdmin.ViewHelpers
use Xain
_ = var!(conn)
markup safe: true do
unquote(block)
end
end
end
end
Which is used like that:
content do
# Whatever code
end
How can I pass the conn variable to the content block?
content do
IO.inspect(conn)
end
Can’t make it work. ![]()
Thanks
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
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #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)
LostKobrakai
See my last paragraph here: I don't understand quote/unquote: why do we need them? - #4 by LostKobrakai
More on unquote fragments: Kernel.SpecialForms — Elixir v1.20.2
LostKobrakai
This seems to work fine for me and circumvents the whole problem of unquote fragments.
augnustin
Thanks a lot for your answers.
This works like a charm. It even works with the original version, which I did not think of testing since I could not imagine it would.
How does the block knows about
conn? For a almost functional language that is elixir, this is amazing to see a named variable coming in like this!But it does solve my issue, which is great!
LostKobrakai
Using
var!makes the variable unhygienic, so it bleeds into the inner blocks scope. If you consider the resulting AST you’ll notice, that the inner block just refers to a variable like this{:conn, [], Some.Module}, where the last part is the context of the variable.var!makes it so that the contexts match, while without that they won’t.The resulting AST doesn’t really care if it came out of a macro or not. With it it looks like you wrote:
Which is obviously fine code.
augnustin
Yes, I imagined this was equivalent to:
The only thing that makes me slightly uncomfortable is that the variable is named so one needs to read the calling code (or the doc) to know what variables are available but I guess that’s how things go!
Thanks for your support
LostKobrakai
You could build the macro to be called like that:
or
I’d not jump to unhygienic variables without a good reason.
OvermindDL1
I personally prefer something like:
You can either decompose it to grab the head as the var, or just use it as a case context with full matching and all, which is also so easy to do in quotes.
augnustin
Those two solutions seem much cleaner in terms of readability.
That said, I’m going for the undeclared version since it is the original from a lib (ex_admin) and I don’t need to change it here.
silviurosu
I like very much your idea. Can you give an example how can I write a macro like this?
I would like to be able to call it like this:
I can not figure out how to write the macro. What I have by now is:
OvermindDL1
You’d want to instead do this function as something like this instead: