wdiechmann

wdiechmann

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

Showing Posts 1 to 3

wdiechmann

wdiechmann OP

Think what I’m actually saying - after some -tube’n and googl’n - is: a mix phx.gen.surface just might go ahead and make my day :laughing:

odix67

odix67

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

wdiechmann

wdiechmann OP

Thank you @odix67 that I did indeed!

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews