14.
Templating with Leaf
Written by Tim Condon
Note: This update is an early-access release. This chapter has not yet been updated to Vapor 4.
In a previous section of the book, you learned how to create an API using Vapor and Fluent. You then learned how to create an iOS client to consume the API. In this section, you’ll create another client — a website. You’ll see how to use Leaf to create dynamic websites in Vapor applications.
Leaf
Leaf is Vapor’s templating language. A templating language allows you to pass information to a page so it can generate the final HTML without knowing everything up front. For example, in the TIL application, you don’t know every acronym that users will create when you deploy your application. Templating allows you handle this with ease.
Templating languages also allow you to reduce duplication in your webpages. Instead of multiple pages for acronyms, you create a single template and set the properties specific to displaying a particular acronym. If you decide to change the way you display an acronym, you only need change your code in one place and all acronym pages will show the new format.
Finally, templating languages allow you to embed templates into other templates. For example, if you have navigation on your website, you can create a single template that generates the code for your navigation. You embed the navigation template in all templates that need navigation rather than duplicating code.
Configuring Leaf
To use Leaf, you need to add it to your project as a dependency. Using the TIL application from Chapter 11, “Testing”, or the starter project from this chapter, open Package.swift. Replace its contents with the following:
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "TILApp",
dependencies: [
.package(
url: "https://github.com/vapor/vapor.git",
from: "3.0.0"),
.package(
url: "https://github.com/vapor/fluent-postgresql.git",
from: "1.0.0"),
.package(
url: "https://github.com/vapor/leaf.git",
from: "3.0.0")
],
targets: [
.target(name: "App",
dependencies: ["FluentPostgreSQL",
"Vapor",
"Leaf"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"]),
]
)
The changes made were:
- Make the
TILApppackage depend upon the Leaf package. - Make the
Apptarget depend upon theLeaftarget to ensure it links properly.
By default, Leaf expects templates to be in the Resources/Views directory. In Terminal, type the following to create these directories:
mkdir -p Resources/Views
Finally, you must create new routes for the website. Create a new controller to contain these routes. In Terminal, type the following:
touch Sources/App/Controllers/WebsiteController.swift
With everything configured, regenerate the Xcode project to start using Leaf. In Terminal, type the following:
vapor xcode -y
Rendering a page
Open WebsiteController.swift and create a new type to hold all the website routes and a route that returns an index template:
import Vapor
import Leaf
// 1
struct WebsiteController: RouteCollection {
// 2
func boot(router: Router) throws {
// 3
router.get(use: indexHandler)
}
// 4
func indexHandler(_ req: Request) throws -> Future<View> {
// 5
return try req.view().render("index")
}
}
Here’s what this does:
- Declare a new
WebsiteControllertype that conforms toRouteCollection. - Implement
boot(router:)as required byRouteCollection. - Register
indexHandler(_:)to process GET requests to the router’s root path, i.e., a request to /. - Implement
indexHandler(_:)that returnsFuture<View>. - Render the index template and return the result. You’ll learn about
req.view()in a moment.
Leaf generates a page from a template called index.leaf inside the Resources/Views directory.
Note that the file extension’s not required by the render(_:) call. Create this file and insert the following:
<!DOCTYPE html>
#// 1
<html lang="en">
<head>
<meta charset="utf-8" />
#// 2
<title>Hello World</title>
</head>
<body>
#// 3
<h1>Hello World</h1>
</body>
</html>
Here’s what this file does:
- Declare a basic HTML 5 page with a
<head>and<body>. - Set the page title to Hello World — this is the title displayed in a browser’s tab.
- Set the body to be a single
<h1>title that says Hello World.
Note: You can create your .leaf files using any text editor you choose, including Xcode. If you use Xcode, choose Editor ▸ Syntax Coloring ▸ HTML in order to get proper highlighting of elements and indentation support.
You must register your new WebsiteController. Open routes.swift and add the following to the end of routes(_:):
let websiteController = WebsiteController()
try router.register(collection: websiteController)
Next, you must register the Leaf service. Open configure.swift and add the following to the imports section below import Vapor:
import Leaf
Next, after try services.register(FluentPostgreSQLProvider()), add the following:
try services.register(LeafProvider())
Using the generic req.view() to obtain a renderer allows you to switch to different templating engines easily. While this may not be useful when running your application, it’s extremely useful for testing.
For example, it allows you to use a test renderer to produce plain text to verify against, rather than parsing HTML output in your test cases.
req.view() asks Vapor to provide a type that conforms to ViewRenderer. TemplateKit — the module that Leaf is built upon — provides PlaintextRenderer and Leaf provides LeafRenderer. In configure.swift add the following to the end of configure(_:_:_:):
config.prefer(LeafRenderer.self, for: ViewRenderer.self)
This tells Vapor to use LeafRenderer when asked for a ViewRenderer type.
Build and run the application, remembering to choose the Run scheme, then open your browser. Enter the URL http://localhost:8080 and you’ll receive the page generated from the template:
Injecting variables
The template is currently just a static page and not at all impressive! Make the page more dynamic, open index.leaf and change the <title> line to the following:
<title>#(title) | Acronyms</title>
This extracts a parameter called title using the #() Leaf function. Like a lot of Vapor, Leaf uses Codable to handle data.
At the bottom of WebsiteController.swift, add the following, to create a new type to contain the title:
struct IndexContext: Encodable {
let title: String
}
As data only flows to Leaf, you only need to conform to Encodable. IndexContext is the data for your view, similar to a view model in the MVVM design pattern. Next, change indexHandler(_:) to pass an IndexContext to the template. Replace the implementation with the following:
func indexHandler(_ req: Request) throws -> Future<View> {
// 1
let context = IndexContext(title: "Home page")
// 2
return try req.view().render("index", context)
}
Here’s what the new code does:
- Create an
IndexContextcontaining the desired title. - Pass the
contextto Leaf as the second parameter torender(_:_:).
Build and run, then refresh the page in the browser. You’ll see the updated title:
Using tags
The home page of the TIL website should display a list of all the acronyms. Still in WebsiteController.swift, add a new property to IndexContext underneath title:
let acronyms: [Acronym]?
This is an optional array of acronyms; it can be nil as there may be no acronyms in the database. Next, change indexHandler(_:) to get all the acronyms and insert them in the IndexContext.
Replace the implementation once more with the following:
func indexHandler(_ req: Request) throws -> Future<View> {
// 1
return Acronym.query(on: req)
.all()
.flatMap(to: View.self) { acronyms in
// 2
let acronymsData = acronyms.isEmpty ? nil : acronyms
let context = IndexContext(
title: "Home page",
acronyms: acronymsData)
return try req.view().render("index", context)
}
}
Here’s what this does:
- Use a Fluent query to get all the acronyms from the database.
- Add the acronyms to
IndexContextif there are any, otherwise set the variable tonil. Leaf can check fornilin the template.
Finally open index.leaf and change the parts between the <body> tags to the following:
#// 1
<h1>Acronyms</h1>
#// 2
#if(acronyms) {
#// 3
<table>
<thead>
<tr>
<th>Short</th>
<th>Long</th>
</tr>
</thead>
<tbody>
#// 4
#for(acronym in acronyms) {
<tr>
#// 5
<td>#(acronym.short)</td>
<td>#(acronym.long)</td>
</tr>
}
</tbody>
</table>
#// 6
} else {
<h2>There aren’t any acronyms yet!</h2>
}
Here’s what the new code does:
- Declare a new heading, “Acronyms”.
- Use Leaf’s
#if()tag to see if theacronymsvariable is set.#if()can validate variables for nullability, work on booleans or even evaluate expressions. - If
acronymsis set, create an HTML table. The table has a header row —<thead>— with two columns, Short and Long. - Use Leaf’s
#for()tag to loop through all the acronyms. This works in a similar way to Swift’sforloop. - Create a row for each acronym. Use Leaf’s
#()function to extract the variable. Since everything isEncodable, you can use dot notation to access properties on acronyms, just like Swift! - If there are no acronyms, print a suitable message.
Build and run, then refresh the page in the browser.
If you have no acronyms in the database, you’ll see the correct message:
If there are acronyms in the database, you’ll see them in the table:
Acronym detail page
Now, you need a page to show the details for each acronym. At the end of WebsiteController.swift, create a new type to hold the context for this page:
struct AcronymContext: Encodable {
let title: String
let acronym: Acronym
let user: User
}
This AcronymContext contains a title for the page, the acronym itself and the user who created the acronym. Create the following route handler for the acronym detail page under indexHandler(_:):
// 1
func acronymHandler(_ req: Request) throws -> Future<View> {
// 2
return try req.parameters.next(Acronym.self)
.flatMap(to: View.self) { acronym in
// 3
return acronym.user
.get(on: req)
.flatMap(to: View.self) { user in
// 4
let context = AcronymContext(
title: acronym.short,
acronym: acronym,
user: user)
return try req.view().render("acronym", context)
}
}
}
Here’s what this route handler does:
- Declare a new route handler,
acronymHandler(_:), that returnsFuture<View>. - Extract the acronym from the request’s parameters and unwrap the result.
- Get the user for acronym and unwrap the result.
- Create an
AcronymContextthat contains the appropriate details and render the page using the acronym.leaf template.
Finally register the route at the bottom of boot(router:):
router.get("acronyms", Acronym.parameter, use: acronymHandler)
This registers the acronymHandler route for /acronyms/<ACRONYM ID>, similar to the API. Create the acronym.leaf template inside the Resources/Views directory and open the new file and add the following:
<!DOCTYPE html>
#// 1
<html lang="en">
<head>
<meta charset="utf-8" />
#// 2
<title>#(title) | Acronyms</title>
</head>
<body>
#// 3
<h1>#(acronym.short)</h1>
#// 4
<h2>#(acronym.long)</h2>
#// 5
<p>Created by #(user.name)</p>
</body>
</html>
Here’s what this template does:
- Declare an HTML5 page like index.leaf.
- Set the title to the value that’s passed in.
- Print the acronym’s
shortproperty in an<h1>heading. - Print the acronym’s
longproperty in an<h2>heading. - Print the acronym’s user in a
<p>block
Finally, change index.leaf so you can navigate to the page. Replace the first column in the table for each acronym (<td>#(acronym.short)</td>) with:
<td><a href="/acronyms/#(acronym.id)">#(acronym.short)</a></td>
This wraps the acronym’s short property in an HTML <a> tag, which is a link. The link sets the URL for each acronym to the route registered above. Build and run, then refresh the page in the browser:
You’ll see that each acronym’s short form is now a link. Click the link and the browser navigates to the acronym’s page:
Where to go from here?
This chapter introduced Leaf and showed you how to start building a dynamic website. The next chapters in this section show you how to embed templates into other templates, beautify your application and create acronyms from the website.