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?
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,
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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 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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
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
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
chrismccord
Since your
SharedViewmodule also has thisquoteblock injected, it’s trying to import itself, which is causing the error. The easiest option is to my those function, i.e.my_func/1to another module that you import in theviewblock instead of defining it on SharedViewkaa.python
then what’s the function of SharedView?
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
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
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
Another option is to go ahead and use
SharedViewbut don’t insist on importing the function and instead aliasSharedView. It means all the callsites will beSharedView.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
how do I alias SharedView into an html template? Where should I call “alias MyApp.SharedView”?
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
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.SharedViewkaa.python
I don’t understand, say that more simply.
What’s MyApp.Web.view ?
Why would it be imported globally?