An open API service indexing awesome lists of open source software.

https://github.com/loopwerk/sagaswimrenderer

A renderer for Saga that uses Swim to turn a RenderingContext into a String
https://github.com/loopwerk/sagaswimrenderer

saga-plugin

Last synced: 17 days ago
JSON representation

A renderer for Saga that uses Swim to turn a RenderingContext into a String

Awesome Lists containing this project

README

          

# SagaSwimRenderer
A renderer for [Saga](https://github.com/loopwerk/Saga) that uses [Swim](https://github.com/robb/Swim) to turn a RenderingContext into a String.

It comes with a free function named `swim` which takes a function that goes from `RenderingContext` to `Node`, and turns it into a function that goes from `RenderingContext` to `String`, which can then be plugged into Saga's writers — which take functions of signature `(RenderingContext) -> String`.

## Example
The best example is Saga's [Example project](https://github.com/loopwerk/Saga/tree/main/Example/Sources/Example), although a simplified example app is [included in this repo](https://github.com/loopwerk/SagaSwimRenderer/tree/main/Example).

TLDR;

Package.swift

``` swift
// swift-tools-version:5.5

import PackageDescription

let package = Package(
name: "Example",
platforms: [
.macOS(.v12)
],
dependencies: [
.package(url: "https://github.com/loopwerk/Saga", from: "1.0.0"),
.package(url: "https://github.com/loopwerk/SagaParsleyMarkdownReader", from: "0.5.0"),
.package(url: "https://github.com/loopwerk/SagaSwimRenderer", from: "0.6.0")
],
targets: [
.target(
name: "Example",
dependencies: [
"Saga",
"SagaParsleyMarkdownReader",
"SagaSwimRenderer"
]
),
]
)
```

main.swift:

``` swift
import Saga
import SagaParsleyMarkdownReader
import SagaSwimRenderer

@main
struct Run {
static func main() async throws {
try await Saga(input: "content", output: "deploy")
.register(
metadata: EmptyMetadata.self,
readers: [.parsleyMarkdownReader()],
itemWriteMode: .keepAsFile,
writers: [
.itemWriter(swim(renderItem))
]
)

// Run the steps we registered above
.run()

// All the remaining files that were not parsed to markdown, so for example images, raw html files and css,
// are copied as-is to the output folder.
.staticFiles()
}
}

```

And your `renderItem` template:

``` swift
func renderItem(context: ItemRenderingContext) -> Node {
html(lang: "en-US") {
body {
div(id: "item") {
h1 { context.item.title }
context.item.body
}
}
}
}
```