defmodule TempleTest do
use ExUnit.Case, async: true
use Temple
describe "custom component" do
test "defines a basic component" do
import Component
{:safe, result} =
temple do
flex()
end
assert result == ~s{
}
end
test "defines a component that takes 1 child" do
import Component
{:safe, result} =
temple do
takes_children do
div id: "dynamic-child"
end
end
assert result ==
~s{}
end
test "defines a component that takes multiple children" do
import Component
{:safe, result} =
temple do
takes_children do
div id: "dynamic-child-1"
div id: "dynamic-child-2"
end
end
assert result ==
~s{}
end
test "can access a prop" do
import Component
{:safe, result} =
temple do
takes_children name: "mitch" do
text @name
end
end
assert result ==
~s{}
end
test "can have arbitrary code inside the definition" do
import Component
{:safe, result} =
temple do
arbitrary_code()
end
assert result == ~s{55
}
end
test "can use conditionals to render different markup" do
import Component
{:safe, result} =
temple do
uses_conditionals(condition: true)
uses_conditionals(condition: false)
end
assert result == ~s{}
end
test "can pass arbitrary data as props" do
import Component
{:safe, result} =
temple do
arbitrary_data(
lists: [:atom, %{key: "value"}, {:status, :tuple}, "string", 1, [1, 2, 3]]
)
end
assert result ==
~s|:atom
%{key: "value"}
{:status, :tuple}
"string"
1
[1, 2, 3]
|
end
test "can pass a variable as a prop" do
import Component
bob = "hi"
{:safe, result} =
temple do
variable_as_prop(bob: bob)
end
assert result == ~s||
end
test "can pass a variable as a prop to a component with a block" do
import Component
bob = "hi"
{:safe, result} =
temple do
variable_as_prop_with_block bob: bob do
div()
end
end
assert result == ~s||
end
test "can pass all of the props as a variable" do
import Component
props = [bob: "hi"]
{:safe, result} =
temple do
variable_as_prop(props)
end
assert result == ~s||
end
test "can pass all of the props as a variable with a block" do
import Component
props = [bob: "hi"]
{:safe, result} =
temple do
variable_as_prop_with_block props do
div()
end
end
assert result == ~s||
end
test "can pass a map as props with a block" do
import Component
props = %{bob: "hi"}
{:safe, result} =
temple do
variable_as_prop_with_block props do
div()
end
variable_as_prop_with_block %{bob: "hi"} do
div()
end
end
assert result == ~s||
end
end
end