kaa.python

kaa.python

I have a function in SharedView:

def my_func1(var1) do
  "hello #{var1}"
end

I want to be able to call it from my html templates using only its name, without the name of the module. I’ve tried this:

# web.ex
  def view do
    quote do
      use Phoenix.View, root: "web/templates"

      # ............
      import MyApp.SharedView, only: [my_func1: 1]

but it threw an exception:

you are trying to use the module MyApp.SharedView which is currently being defined.

How should I import it properly?

Showing Posts 1 to 10

chrismccord

chrismccord

Creator of Phoenix

Since your SharedView module also has this quote block injected, it’s trying to import itself, which is causing the error. The easiest option is to my those function, i.e. my_func/1 to another module that you import in the view block instead of defining it on SharedView

kaa.python

kaa.python OP

then what’s the function of SharedView?

LostKobrakai

LostKobrakai

SharedView is nothing special. It’s a view module like any other, but happens to be named Shared. You can for example use it like that in a controller: render(conn, SharedView, "partial.html", assigns) Likewise it does work in all other places where you can specify a view modules to render things.

If you want to share your posted function and not all the ability to render things just create a non-view helper module. Phoenix does that with the ErrorHelpers module.

kaa.python

kaa.python OP

I have a function which I’m using across many html templates. where should I put it if not in SharedView?

In Rails we have helpers for each controller, in Phoenix – Views, right?

LostKobrakai

LostKobrakai

SharedView is for shared templates. It’s not ideal to share functions in it with other views. To share function just copy what phoenix does with ErrorHelpers. There’s a ErrorHelpers module in the views folder and that module is imported in the web.ex file for views. ErrorHelpers is a plain elixir module, so you don’t have that circular import like with SharedView.

gregvaughn

gregvaughn

Another option is to go ahead and use SharedView but don’t insist on importing the function and instead alias SharedView. It means all the callsites will be SharedView.my_func() but it’s more explicit and clearer to people new to the codebase where that function is defined.

The more time I spend in Elixir the more I shift from imports to aliases.

kaa.python

kaa.python OP

how do I alias SharedView into an html template? Where should I call “alias MyApp.SharedView”?

LostKobrakai

LostKobrakai

The templates are essentially part of the related view module, so just alias it in the view module of the template you need the function in.

gregvaughn

gregvaughn

You can call it right where you were trying to import if you want it globally aliased in all views. In MyApp.Web.view: alias MyApp.SharedView

kaa.python

kaa.python OP

I don’t understand, say that more simply.

What’s MyApp.Web.view ?
Why would it be imported globally?

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
kpanic
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
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 Top

GenericJam
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
JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews