mrfrenchfries

mrfrenchfries

Hello,

We’re trying to slowly move away from Surface into using regular Phoenix components (HEEX).
However we wish to still be able to use some of the surface components we already have. Is there a way to do that?

I tried calling it as <.MySurfaceComponent.render /> from a Phoenix.Component, which works for simple surface components, but when we have more complex components, it throws an error.

For example this:

defmodule MyAppWeb.Components.TestComponent do
  use Phoenix.Component
  alias MyAppWeb.Surface.TestSurfaceComponent
  
  def test_component(assigns) do
    ~H"""
    <div>
      <div>lv_component</div>
      <.another_component />
      <TestSurfaceComponent.render myprop="myprop" />
    </div>
    """
  end

  def another_component(assigns) do
    ~H"""
    <div>
      another_component
    </div>
    """
  end
end

defmodule MyAppWeb.Surface.AnotherSurfaceComponent do
  use Surface.Component
  def render(assigns) do
    ~F"""
    <div>another surface component</div>
    """
  end
end

defmodule MyAppWeb.Surface.TestSurfaceComponent do
  use Surface.Component
  alias MyAppWeb.Surface.AnotherSurfaceComponent
  prop myprop, :string
  def render(assigns) do
    ~F"""
    <div>
      <div>surface_component {@myprop}</div>
      <AnotherSurfaceComponent />
    </div>
    """
  end
end

Crashes with:

[error] GenServer #PID<0.1365.0> terminating
** (KeyError) key :__context__ not found in: %{__changed__: nil, __caller_scope_id__: nil, myprop: "myprop"}
    (my_app 0.1.0) lib/my_app_web/components/test_component.ex:37: anonymous fn/2 in MyAppWeb.Surface.TestSurfaceComponent."render (overridable 1)"/1
    (my_app 0.1.0) /Users/ricardo/XUKU/my_app/lib/my_app_web/components/test_component.ex:10: MyAppWeb.Components.TestComponent.test_component/1
    (elixir 1.15.2) lib/enum.ex:2510: Enum."-reduce/3-lists^foldl/2-0-"/3
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/diff.ex:384: Phoenix.LiveView.Diff.traverse/7
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/diff.ex:538: anonymous fn/4 in Phoenix.LiveView.Diff.traverse_dynamic/7
    (elixir 1.15.2) lib/enum.ex:2510: Enum."-reduce/3-lists^foldl/2-0-"/3
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/diff.ex:384: Phoenix.LiveView.Diff.traverse/7
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/diff.ex:136: Phoenix.LiveView.Diff.render/3
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/static.ex:252: Phoenix.LiveView.Static.to_rendered_content_tag/4
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/static.ex:135: Phoenix.LiveView.Static.render/3
    (phoenix_live_view 0.19.3) lib/phoenix_live_view/controller.ex:39: Phoenix.LiveView.Controller.live_render/3
    (phoenix 1.7.6) lib/phoenix/router.ex:430: Phoenix.Router.__call__/5
    (my_app 0.1.0) deps/plug/lib/plug/error_handler.ex:80: MyAppWeb.Router.call/2
    (my_app 0.1.0) lib/my_app_web/endpoint.ex:1: MyAppWeb.Endpoint.plug_builder_call/2
    (my_app 0.1.0) deps/plug/lib/plug/debugger.ex:136: MyAppWeb.Endpoint."call (overridable 3)"/2
    (my_app 0.1.0) lib/my_app_web/endpoint.ex:1: MyAppWeb.Endpoint.call/2
    (phoenix 1.7.6) lib/phoenix/endpoint/sync_code_reload_plug.ex:22: Phoenix.Endpoint.SyncCodeReloadPlug.do_call/4
    (bandit 1.0.0-pre.10) lib/bandit/pipeline.ex:116: Bandit.Pipeline.call_plug/2
Last message: {:continue, :handle_connection}
State: {%ThousandIsland.Socket{socket: #Port<0.60>, transport_module: ThousandIsland.Transports.TCP, read_timeout: 60000, span: %ThousandIsland.Telemetry{span_name: :connection, telemetry_span_context: #Reference<0.3603920085.2461532163.4417>, start_time: -576460726155188000, start_metadata: %{remote_port: 58973, remote_address: {127, 0, 0, 1}, telemetry_span_context: #Reference<0.3603920085.2461532163.4417>, parent_telemetry_span_context: #Reference<0.3603920085.2461270018.260616>}}}, %{opts: %{websocket: [], http_1: [], http_2: []}, plug: {Phoenix.Endpoint.SyncCodeReloadPlug, {MyAppWeb.Endpoint, []}}, handler_module: Bandit.InitialHandler, http_1_enabled: true, http_2_enabled: true, websocket_enabled: true}}}

Showing Posts 1 to 1

cmo

cmo

Using Surface components in vanilla Phoenix templates is partially supported but usually not recommended

— All posts loaded —

Where Next? Top

Trending in Questions Top

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews