aymanosman

aymanosman

See this GitHub issue Passing a slot via attributes emits a warning (but still works) · Issue #3399 · phoenixframework/phoenix_live_view · GitHub.

Currently, it is possible to pass along a slot argument to another component, but not without the compiler emitting a warning.

The warning looks like this:

     warning: undefined attribute "loading" for component Phoenix.Component.async_result/1
     │
 133 │       I am a wrapper <.async_result assign={@assign} loading={@loading} inner_block={@inner_block} />

And here is an example of code that will induce the warning.

attr :assign, :any
slot :loading
slot :inner_block
def wrap_async_result(assigns) do
  ~H"""
  <div>
    I am a wrapper <.async_result assign={@assign} loading={@loading} inner_block={@inner_block} />
  </div>
  """
end
<.wrap_async_result assign={AsyncResult.loading()}>
  <:loading>Loading...</:loading>
  Finished
</.wrap_async_result>

Assuming attributes and slots will always share the same “namespace” (so there could not be an attribute and slot with the same name defined on a component), it seems useful to be able to pass a slot via attributes.

Are there any downsides I’m not considering?

Showing Posts 1 to 2

LostKobrakai

LostKobrakai

The coupling. This might not matter much for like inner_block, but all other slots can have their own set of attributes, which can be validated by the compiler, be documented and so on. All that doesn’t really work well if you can pass those slots to further components as is. Conceptually a slots really belongs to the component it’s rendered within, not some child component of it.

Instead the wrapper can explicitly render slots for the subcomponent based on it’s own slots.

~H"""
  <div>
    I am a wrapper <.async_result assign={@assign} loading={@loading}><%= render_slot(@inner_block) %></.async_result>
  </div>
  """
aymanosman

aymanosman OP

Your example should be…

~H"""
<div>
  I am a wrapper
  <.async_result assign={@assign}>
    <:loading><%= render_slot(@loading) %></:loading>
    <%= render_slot(@inner_block) %>
  </.async_result>
</div>
"""

…since @loading is also a slot.

I agree that coupling is something to consider when components call other
components. But consider a function calling another function and passing through
arguments — this also introduces coupling, yet it’s natural in many cases.

As for checking and validation not working well, that seems more like a current
limitation of the compiler rather than an inherent conceptual issue with slots
being passed along. I was hoping to open up a discussion about the development
complexity this might introduce and weigh that against the potential benefits.

On the conceptual side, saying that slots belong strictly to the component
they’re rendered within feels a bit rigid to me. It’s similar to saying that
arguments strictly belong to a function and shouldn’t be passed to others.

— All posts loaded —

Where Next? Top

Trending in Proposals: Ideas Top

woylie
We are seeing a lot of warning logs like this: navigate event to "https://someurl" failed because you are redirecting across live_sessio...
New

Other Trending Topics Top

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
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
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews