Skip to content

Commit 04f21b4

Browse files
committed
Add transform.PortableText
Using this in a content adapter could look like this: ```handlebars {{ $projectID := "<myproject>" }} {{ $useCached := true }} {{ $api := "api" }} {{ if $useCached }} {{/* See https://www.sanity.io/docs/api-cdn */}} {{ $api = "apicdn" }} {{ end }} {{ $url := printf "https://%s.%s.sanity.io/v2021-06-07/data/query/production" $projectID $api }} {{/* prettier-ignore-start */ -}} {{ $q := `*[_type == 'post']{ title, publishedAt, summary, slug, body[]{ ..., _type == "image" => { ..., asset->{ _id, path, url, altText, title, description, metadata { dimensions { aspectRatio, width, height } } } } }, }` }} {{/* prettier-ignore-end */ -}} {{ $body := dict "query" $q | jsonify }} {{ $opts := dict "method" "post" "body" $body }} {{ $t := debug.Timer "sanity.get" }} {{ $r := resources.GetRemote $url $opts }} {{ $t.Stop }} {{ $m := $r | transform.Unmarshal }} {{ $result := $m.result }} {{ $t := debug.Timer "sanity.parse" }} {{ range $result }} {{ if not .slug }} {{ continue }} {{ end }} {{ $markdown := transform.PortableText .body }} {{ $t.Stop }} {{ $content := dict "mediaType" "text/markdown" "value" $markdown }} {{ $params := dict "portabletext" (.body | jsonify (dict "indent" " ")) }} {{ $page := dict "content" $content "kind" "page" "path" .slug.current "title" .title "date" (.publishedAt | time ) "summary" .summary "params" $params }} {{ $.AddPage $page }} {{ end }} ```
1 parent ab9e545 commit 04f21b4

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed

‎go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ require (
1212
github.com/bep/goat v0.5.0
1313
github.com/bep/godartsass/v2 v2.3.2
1414
github.com/bep/golibsass v1.2.0
15+
github.com/bep/goportabletext v0.1.0
1516
github.com/bep/gowebp v0.3.0
1617
github.com/bep/helpers v0.5.0
1718
github.com/bep/imagemeta v0.8.4

‎go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ github.com/bep/godartsass/v2 v2.3.2 h1:meuc76J1C1soSCAnlnJRdGqJ5S4m6/GW+8hmOe9tO
133133
github.com/bep/godartsass/v2 v2.3.2/go.mod h1:Qe5WOS9nVJy7G0jHssXPd3c+Pqk/f7+Tm6k/vahbVgs=
134134
github.com/bep/golibsass v1.2.0 h1:nyZUkKP/0psr8nT6GR2cnmt99xS93Ji82ZD9AgOK6VI=
135135
github.com/bep/golibsass v1.2.0/go.mod h1:DL87K8Un/+pWUS75ggYv41bliGiolxzDKWJAq3eJ1MA=
136+
github.com/bep/goportabletext v0.1.0 h1:8dqym2So1cEqVZiBa4ZnMM1R9l/DnC1h4ONg4J5kujw=
137+
github.com/bep/goportabletext v0.1.0/go.mod h1:6lzSTsSue75bbcyvVc0zqd1CdApuT+xkZQ6Re5DzZFg=
136138
github.com/bep/gowebp v0.3.0 h1:MhmMrcf88pUY7/PsEhMgEP0T6fDUnRTMpN8OclDrbrY=
137139
github.com/bep/gowebp v0.3.0/go.mod h1:ZhFodwdiFp8ehGJpF4LdPl6unxZm9lLFjxD3z2h2AgI=
138140
github.com/bep/helpers v0.5.0 h1:rneezhnG7GzLFlsEWO/EnleaBRuluBDGFimalO6Y50o=
@@ -217,6 +219,8 @@ github.com/go-openapi/jsonpointer v0.21.0 h1:YgdVicSA9vH5RiHs9TZW5oyafXZFc6+2Vc1
217219
github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY=
218220
github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+GrE=
219221
github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ=
222+
github.com/go-quicktest/qt v1.101.0 h1:O1K29Txy5P2OK0dGo59b7b0LR6wKfIhttaAhHUyn7eI=
223+
github.com/go-quicktest/qt v1.101.0/go.mod h1:14Bz/f7NwaXPtdYEgzsx46kqSxVwTbzVZsDC26tQJow=
220224
github.com/go-test/deep v1.0.8 h1:TDsG77qcSprGbC6vTN8OuXp5g+J+b5Pcguhf7Zt61VM=
221225
github.com/go-test/deep v1.0.8/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE=
222226
github.com/gobuffalo/flect v1.0.3 h1:xeWBM2nui+qnVvNM4S3foBhCAL2XgPU+a7FdpelbTq4=

‎tpl/transform/transform.go

+19
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ import (
2525
"strings"
2626
"sync/atomic"
2727

28+
bp "github.com/gohugoio/hugo/bufferpool"
29+
30+
"github.com/bep/goportabletext"
31+
2832
"github.com/gohugoio/hugo/cache/dynacache"
2933
"github.com/gohugoio/hugo/common/hashing"
3034
"github.com/gohugoio/hugo/common/hugio"
@@ -197,6 +201,21 @@ func (ns *Namespace) Plainify(s any) (template.HTML, error) {
197201
return template.HTML(tpl.StripHTML(ss)), nil
198202
}
199203

204+
// PortableText converts the portable text in v to Markdown.
205+
// We may add more options in the future.
206+
func (ns *Namespace) PortableText(v any) (string, error) {
207+
buf := bp.GetBuffer()
208+
defer bp.PutBuffer(buf)
209+
opts := goportabletext.ToMarkdownOptions{
210+
Dst: buf,
211+
Src: v,
212+
}
213+
if err := goportabletext.ToMarkdown(opts); err != nil {
214+
return "", err
215+
}
216+
return buf.String(), nil
217+
}
218+
200219
// ToMath converts a LaTeX string to math in the given format, default MathML.
201220
// This uses KaTeX to render the math, see https://katex.org/.
202221
func (ns *Namespace) ToMath(ctx context.Context, args ...any) (template.HTML, error) {

‎tpl/transform/transform_integration_test.go

+30
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,33 @@ disableKinds = ['page','rss','section','sitemap','taxonomy','term']
349349
b.AssertFileExists("public/index.html", true)
350350
b.AssertFileContent("public/index.html", `{"a":{"b":1},"c":{"d":2}}`)
351351
}
352+
353+
func TestPortableText(t *testing.T) {
354+
files := `
355+
-- hugo.toml --
356+
-- assets/sample.json --
357+
[
358+
{
359+
"_key": "a",
360+
"_type": "block",
361+
"children": [
362+
{
363+
"_key": "b",
364+
"_type": "span",
365+
"marks": [],
366+
"text": "Heading 2"
367+
}
368+
],
369+
"markDefs": [],
370+
"style": "h2"
371+
}
372+
]
373+
-- layouts/index.html --
374+
{{ $markdown := resources.Get "sample.json" | transform.Unmarshal | transform.PortableText }}
375+
Markdown: {{ $markdown }}|
376+
377+
`
378+
b := hugolib.Test(t, files)
379+
380+
b.AssertFileContent("public/index.html", "Markdown: ## Heading 2\n|")
381+
}

0 commit comments

Comments
 (0)