-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
186 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
require "../spec_helper" | ||
require "../../src/blueprint/raw_html" | ||
|
||
private class BaseLayout | ||
include Blueprint::RawHTML | ||
|
||
private def blueprint(&) | ||
doctype | ||
|
||
html lang: "en" do | ||
head do | ||
title "Test page" | ||
|
||
meta charset: "utf-8" | ||
meta name: "viewport", content: "width=device-width,initial-scale=1" | ||
|
||
link href: "app.css", rel: "stylesheet" | ||
script type: "text/javascript", src: "app.js" | ||
end | ||
|
||
body do | ||
yield | ||
end | ||
end | ||
end | ||
end | ||
|
||
private class NavbarComponent | ||
include Blueprint::RawHTML | ||
|
||
private def blueprint | ||
nav do | ||
ul do | ||
li { a("Home", href: "/home") } | ||
li { a("About", href: "/about") } | ||
li { a("Contact", href: "/contact") } | ||
end | ||
end | ||
end | ||
end | ||
|
||
private class ArticleComponent | ||
include Blueprint::RawHTML | ||
|
||
def initialize(@title : String); end | ||
|
||
private def blueprint(&) | ||
div class: "flex flex-col gap-2 bg-white border shadow" do | ||
title | ||
yield | ||
end | ||
end | ||
|
||
def title | ||
div @title, class: "p-2 text-lg font-bold" | ||
end | ||
|
||
def body(&) | ||
div class: "p-4" do | ||
yield | ||
end | ||
end | ||
end | ||
|
||
private class ExamplePage | ||
include Blueprint::RawHTML | ||
|
||
private def blueprint | ||
render BaseLayout.new do | ||
render NavbarComponent.new | ||
|
||
div do | ||
article("Hello World", "Welcome to blueprint") | ||
article("Blueprint", "Blueprint is an Html builder") | ||
div(class: { hello: "world" }) { "<script>alert('hello')</script>" } | ||
a "Click me!", class: "bg-red\" onclick=\"alert('danger!')" | ||
end | ||
end | ||
end | ||
|
||
private def article(title : String, content : String) | ||
render ArticleComponent.new(title) do |article| | ||
article.body { content } | ||
end | ||
end | ||
end | ||
|
||
describe Blueprint::RawHTML do | ||
describe "#to_html" do | ||
it "renders html" do | ||
page = ExamplePage.new | ||
expected_html = <<-HTML.strip.gsub(/\R\s+/, "") | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Test page</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<link href="app.css" rel="stylesheet"> | ||
<script type="text/javascript" src="app.js"></script> | ||
</head> | ||
<body> | ||
<nav> | ||
<ul> | ||
<li><a href="/home">Home</a></li> | ||
<li><a href="/about">About</a></li> | ||
<li><a href="/contact">Contact</a></li> | ||
</ul> | ||
</nav> | ||
<div> | ||
<div class="flex flex-col gap-2 bg-white border shadow"> | ||
<div class="p-2 text-lg font-bold">Hello World</div> | ||
<div class="p-4">Welcome to blueprint</div> | ||
</div> | ||
<div class="flex flex-col gap-2 bg-white border shadow"> | ||
<div class="p-2 text-lg font-bold">Blueprint</div> | ||
<div class="p-4">Blueprint is an Html builder</div> | ||
</div> | ||
<div><script>alert('hello')</script></div> | ||
<a class="bg-red" onclick="alert('danger!')">Click me!</a> | ||
</div> | ||
</body> | ||
</html> | ||
HTML | ||
|
||
html = page.to_html | ||
|
||
html.should eq expected_html | ||
Check failure on line 135 in spec/blueprint/raw_html_spec.cr GitHub Actions / Test
|
||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
require "html" | ||
|
||
require "./html" | ||
|
||
module Blueprint::RawHTML | ||
include Blueprint::HTML | ||
|
||
private def append_attribute(attribute_name, attribute_value) : Nil | ||
@buffer << " " | ||
@buffer << attribute_name.to_s | ||
@buffer << %(=") | ||
@buffer << attribute_value.to_s | ||
@buffer << %(") | ||
end | ||
|
||
private def render_block(&) : Nil | ||
buffer_size_before_block_evaluation = @buffer.bytesize | ||
content = with self yield | ||
@buffer << content.to_s if buffer_size_before_block_evaluation == @buffer.bytesize | ||
end | ||
|
||
private def element(_tag_name : String | Symbol, __content__ : String, **attributes) : Nil | ||
@buffer << "<" | ||
@buffer << _tag_name | ||
parse_attributes(attributes) | ||
@buffer << ">" | ||
@buffer << __content__ | ||
@buffer << "</" | ||
@buffer << _tag_name | ||
@buffer << ">" | ||
end | ||
|
||
private def plain(content : String) : Nil | ||
@buffer << content | ||
end | ||
|
||
private def comment(&) : Nil | ||
@buffer << "<!--" | ||
@buffer << yield | ||
@buffer << "-->" | ||
end | ||
|
||
private def comment(content : String) : Nil | ||
@buffer << "<!--" | ||
@buffer << content | ||
@buffer << "-->" | ||
end | ||
end |