wdiechmann

wdiechmann

Surface and heex

With Phoenix 1.6 out recently – and me having a nice side dish of Surface – I reckoned that it was time to test the water once more…and soon enough I had the first question:

Am I correct to understand that Surface components are not ready for .heex yet?

I should elaborate:

Did the getting started stuff - mix phx.new --live - adding the surface dependency, got puzzled by the lack of mentioning import surface on Surface compared to Surface — Surface v0.12.3, decided to throw it in there for good measure uncertain what it would bring though, then started on my virgin component,

defmodule Sp31ch3rWeb.Components.Button do

  use Surface.Component

  def render(assigns) do 
    ~F"""
      <button> test </button>
   """
  end
end

only to be very disappointed when I added my “revolutionary” component to my form_component.html.heex (autogenerated by mix phx.gen.live Events Call calls subject:string... ) and had ElixrLS read me the motd

(Phoenix.LiveView.HTMLTokenizer.ParseError) invalid tag <Button>

Ups - forgot to tell form_component.ex that I was into some sorcery sh*t - better fix that

defmodule Sp31ch3rWeb.CallLive.FormComponent do
  use Sp31ch3rWeb, :live_component

  alias Sp31ch3r.Events
  alias Sp31ch3rWeb.Components.Button
....
end

Nope - still an invalid tag -that ‘’ thing of mine :cry:

Did I skip on “the mix” ?

  def project do
      ...
      compilers: [:gettext] ++ Mix.compilers() ++ [:surface],
      ...
  end

  defp deps do
      ...
      {:surface, "~> 0.5.2"},
      {:surface_formatter, "~> 0.5.0"},
      {:surface_markdown, "~> 0.2.0"},
      ...
  end

Hmmm - then I hurried down another “rabbit hole” - make the existing/working LiveViews SurfaceViews instead!

  # lib/sp31ch3r_web.ex
  def live_component do
    quote do
      # use Phoenix.LiveComponent
      use Surface.LiveComponent

      unquote(view_helpers())
    end
  end

  #live/call_live/form_component.ex
defmodule Sp31ch3rWeb.CallLive.FormComponent do
  use Sp31ch3rWeb, :live_component

  alias Sp31ch3r.Events
  alias Sp31ch3rWeb.Components.Button
  alias Surface.Components.Form

   ...
<div>
  <h2>{@title}</h2>

  <Button/>
  <Form
    for={@changeset}
    id="call-form"
 

Nahh - the motd changed - but there’s still a motd :laughing:

== Compilation error in file lib/sp31ch3r_web/live/call_live/form_component.ex ==
sp31ch3r_app  | ** (Surface.Compiler.ParseError) lib/sp31ch3r_web/live/call_live/form_component.sface:2:9: expected attribute name

which finally left me with a sense of digging my self in over my head - braking everything apart cannot possibly be what Marius’ epiphany is all about?!

Marked As Solved

odix67

odix67

I think you will find some answers in another thread starting from this post 166

Last Post!

wdiechmann

wdiechmann

Thank you @odix67 that I did indeed!

Where Next?

Popular in Questions Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
skosch
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
Darmani72
If I have a post route which an argument: post /my_post_route/:my_param1, MyController.my_post_handler How would get the post params ...
New
marius95
Hello everyone, I try to use an Javascript Event Handler in my root.html.leex file. Therefore I created a function in the app.js file: ...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New

Other popular topics Top

jononomo
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
Darmani72
If I have a post route which an argument: post /my_post_route/:my_param1, MyController.my_post_handler How would get the post params ...
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New

We're in Beta

About us Mission Statement