ajur58

ajur58

Hey everyone,

I’m trying to do something fairly simple and for some reason I just can’t figure out the answer.

I have the standard layouts structure with layouts.ex using embed_templates and an app.html.heex in the layouts folder. I want to render other partial templates within app.html.heex so that I don’t end up with one giant file, for example _header.html.heex. If I follow the examples in the docs and what I found online, I should use <%= render("_header.html", assigns) %>, but this throws saying “render/2 not defined”

This makes me think that it’s probably due to using embed_templates, but I have no clue where I should look to get started. I’d be more than happy if someone would also point me in the direction of docs that I should’ve read so that I don’t ask stupid questions like this anymore. Thanks!

Showing Posts 1 to 6

ajur58

ajur58 OP

Update: I think I figured it out. There’s something magical that happens when you post a question to the forum :smiley:

Seems like I should’ve read Phoenix.View more thoroughly, on the bottom part there’s a guide talking about migrating fro pre Phoenix 1.7. I should’ve just used <._header />. So far so good. Now I just need to figure out how I can place these partials in a subfolder as I’ll have multiple templates and the folder might get messy.

For anyone in a similar situation, here’s the link to the docs page: Phoenix.View — phoenix_view v2.0.4

Kurisu

Kurisu

I didn’t try this but what about playing with the options of embed_templates.

Maybe something like this…

defmodule DemoWeb.Layouts do
  use DemoWeb, :html

  embed_templates "layouts/**/*"
end

They said in the docs that we can even make multiple calls of embed_templates in the same view module.

Maybe something like this would work as well?

defmodule DemoWeb.Layouts do
  use DemoWeb, :html

  embed_templates "layouts/*"
  embed_templates "layouts/subfolder/*"
  embed_templates "layouts/another_subfolder/*"
end
Kurisu

Kurisu

Another solution would be to name your partials as suggested here.

Kurisu

Kurisu

I just found myself in a situation where I also needed to use “partial templates” and I remembered this post. This solution worked well, but if you need something that is in “assigns” within the partial template, here is one way that I found, for anyone interested.

For example, let’s say the partial is “_menu_user_management” and it needs access to @current_user. Here is how the parent template can pass it on to it:

<._menu_user_management {assigns}>

or like in the link you provided:

<._menu_user_management current_user={@current_user} />

ajur58

ajur58 OP

One week later, I needed exactly this. Works like a charm, thanks for your reply! Gotta love the forums <3

zeugen

zeugen

Thanks for helping me, too. Studying the book Programming Phoenix >= 1.4, I have this code snippet (page 55):

Showing User

<%= render "user.html", user: @user %>

To my friends who are also studying the book, use:

Showing User

<.user user={@user} />

Grateful to @ajur58 for sharing the question and @Kurisu and other friends for answering the question.

Now my code is working.

— All posts loaded —

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
RemyXRenard
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
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
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
FlyingNoodle
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

Other Trending Topics Top

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
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews