mhanberg

mhanberg

Expert LSP Core Team

I just released the first version of Temple: an HTML DSL for Elixir and Phoenix!

https://github.com/mhanberg/temple

You can read this blog post or the docs for more information!

Showing Posts 1 to 10

hauleth

hauleth

Out of curiosity - what are the advantages over Phoenix.HTML?

mhanberg

mhanberg OP

Expert LSP Core Team

This library is not a competitor to Phoenix.HTML, in fact Temple uses Phoenix.HTML as a dependency.

Temple needs to wrap Phoenix.HTML to make the functions work with the macros.

The reasons are related to how the markup is collected at runtime and there is some complexity around the anonymous functions used in the form_for and inputs_for functions from Phoenix.HTML.

mythicalprogrammer

mythicalprogrammer

Reminds me of an in between jade and haml.

Looks nice.

lucaong

lucaong

Looks nice! Well done :star:

About the existence of similar libraries, I think the fact that different authors experiment with different approaches is a positive sign of a good open-source ecosystem.

OvermindDL1

OvermindDL1

Ah I like code-syntax based DSEL’s like these, it makes it much easier to just use normal coding practices and functions instead of some unique syntax that makes it more difficult. :slight_smile:

ul class: "list" do
for item <- @items do

I’m guessing that it works by having each expression in the body list be placed into the final template, and something like for that returns a list just inlines each element of the list as a standalone expression?

defcomponent

Why use defcomponent over just a function call, or is it to work better with phoenix’s liveview stuff so you can inline it all more?

In the example, could:

  defcomponent :nav_item do
    div id: @id, class: "flex flex-col" do
      div @name, class: "margin-bottom-2"
      div @description
    end
  end

Be instead implemented just as:

  def nav_item(item) do
    temple do
      div id: item.key, class: "flex flex-col" do
        div item.name, class: "margin-bottom-2"
        div item.description
      end
    end
  end

And thus be used like nav_item(item) or nav_item item instead?

Components can also take children if passed a block and are accessed via the @children variable.

Is there any way to make it fail to compile if children are passed in when they aren’t used, or fail to compile if no children are passed in when they are required?

mhanberg

mhanberg OP

Expert LSP Core Team

I’m guessing that it works by having each expression in the body list be placed into the final template, and something like for that returns a list just inlines each element of the list as a standalone expression?

The macros expand to functions that when called, will emit markup into some state. If they are called inside a loop, they will be called multiple times.

Why use defcomponent over just a function call, or is it to work better with phoenix’s liveview stuff so you can inline it all more?

defcomponent is used to create a macro like div or span, except it is given the name you pass, and the props you pass it are replaced in it’s body.

If you create a function that calls the temple macro, it will return {:safe, "your markup"}, but it will not be emitted into the end result unless you call it with the partial macro.

  def nav_item(item) do
    temple do
      div id: item.key, class: "flex flex-col" do
        div item.name, class: "margin-bottom-2"
        div item.description
      end
    end
  end

temple do
  div do
    partial nav_item(item)
  end
end

will emit

<div>
    <div id='some-id' class='flex flex-col'>
        <div class='margin-bottom-2'>Some Name</div>
        <div>Some Description</div>
    </div>
</div>

Is there any way to make it fail to compile if children are passed in when they aren’t used, or fail to compile if no children are passed in when they are required?

It doesn’t do that right now, but I’m sure it’s possible!

darkmarmot

darkmarmot

Just wanted to say that Temple looks awesome! I am pining for it to get LiveView integration :slight_smile:

mhanberg

mhanberg OP

Expert LSP Core Team

Just released v0.1.1!

Single arity tags will now escape content passed to them, functioning the same as calling the text macro.

temple do
  div "<div>HELLO</div>"
  text "<div>HOWDY</div>"
end

# <div>&lt;div&gt:HELLO&lt;/&gt;</div>
# &lt;div&gt:HOWDY&lt;/&gt;

CHANGELOG

mhanberg

mhanberg OP

Expert LSP Core Team

Just released v0.1.2!

Components now work correctly when requireing their module (as opposed to calling import).

defmodule MyComponents do
  import Temple
  
  defcomponent :btn do
    input type: "submit", class: "btn btn-red lots-of-padding", value: @text 
  end
end

defmodule MyWebView do
  require MyComponents, as: C
  
  def render_a_template("index.html") do
    temple do
      form do
        label "Your Name", for: "name"
        input name: "name", type: "text"
        
        C.btn text: "Submit 
      end
    end
  end
end

#  <form>
#   <label for="name">Your Name</label>
#   <input name="name" type="text">
#   <input type="submit class="btn btn-red lots-of-padding" value="Submit">
#  </form>

CHANGELOG

Where Next? Top

Trending in Announcing Top

wojtekmach
Hey everyone! Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
handnot2
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application. This library uses Erlang esaml to provide plug enabl...
New
woylie
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries. offset-based pagination with...
New
restlessronin
The repo is at GitHub - cyberchitta/openai_ex: Community maintained Elixir library for OpenAI API · GitHub. Docs are at OpenaiEx User Gu...
152 11030 135
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
fuelen
Hi all! I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas. You...
New
woylie
Phoenix components for pagination, sortable tables and filter forms with Flop and (optionally) Ecto. pagination cursor pagination sorta...
New

Other Trending Topics Top

mudasobwa
I am seeing a lot of aplications of Argumentum ad Vericundiam in software discussions. They do link some piece of writing and point us to...
New
bartblast
Hey folks, I just published a post about Hologram’s funding and where the project goes next - the short version: Curiosum as Main Spons...
New
sorenone
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
Herve37
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using. We’re particularly inte...
New
AstonJ
This showed up on my feed.. anyone heard of it? Just hype? Ox Alpha is a reasoning model designed for coding, sustained ag...
New
akoutmos
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews