// Lazily initialized dependencies.
init *lazy.Init
+ // Store holds state that survives server rebuilds.
+ store *maps.Scratch
+
// All of these represents the common parts of a page.Page
maps.Scratcher
navigation.PageMenusProvider
forceRender bool
}
+func (p *pageCommon) Store() *maps.Scratch {
+ return p.store
+}
+
type pagePages struct {
pagesInit sync.Once
pages page.Pages
FileProvider: metaProvider,
AuthorProvider: metaProvider,
Scratcher: maps.NewScratcher(),
+ store: maps.NewScratch(),
Positioner: page.NopPage,
InSectionPositioner: page.NopPage,
ResourceMetaProvider: metaProvider,
b.AssertFileContent("public/p6/index.html", "WordCount: 7\nFuzzyWordCount: 100\nReadingTime: 1\nLen Plain: 638\nLen PlainWords: 7\nTruncated: false\nLen Summary: 637\nLen Content: 652")
}
-func TestScratchSite(t *testing.T) {
+func TestScratch(t *testing.T) {
t.Parallel()
b := newTestSitesBuilder(t)
b.AssertFileContent("public/scratchme/index.html", "C: cv")
}
+func TestScratchRebuild(t *testing.T) {
+ t.Parallel()
+
+ files := `
+-- config.toml --
+-- content/p1.md --
+---
+title: "p1"
+---
+{{< scratchme >}}
+-- layouts/shortcodes/foo.html --
+notused
+-- layouts/shortcodes/scratchme.html --
+{{ .Page.Scratch.Set "scratch" "foo" }}
+{{ .Page.Store.Set "scratch" "bar" }}
+-- layouts/_default/single.html --
+{{ .Content }}
+Scratch: {{ .Scratch.Get "scratch" }}|
+Store: {{ .Store.Get "scratch" }}|
+`
+
+ b := NewIntegrationTestBuilder(
+ IntegrationTestConfig{
+ T: t,
+ TxtarString: files,
+ Running: true,
+ },
+ ).Build()
+
+ b.AssertFileContent("public/p1/index.html", `
+Scratch: foo|
+Store: bar|
+ `)
+
+ b.EditFiles("layouts/shortcodes/foo.html", "edit")
+
+ b.Build()
+
+ b.AssertFileContent("public/p1/index.html", `
+Scratch: |
+Store: bar|
+ `)
+}
+
func TestPageParam(t *testing.T) {
t.Parallel()
// Helper methods
ShortcodeInfoProvider
compare.Eqer
+
+ // Scratch returns a Scratch that can be used to store temporary state.
+ // Note that this Scratch gets reset on server rebuilds. See Store() for a variant that survives.
maps.Scratcher
+
+ // Store returns a Scratch that can be used to store temporary state.
+ // In contrast to Scratch(), this Scratch is not reset on server rebuilds.
+ Store() *maps.Scratch
+
RelatedKeywordsProvider
// GetTerms gets the terms of a given taxonomy,
return nil
}
+func (p *nopPage) Store() *maps.Scratch {
+ return nil
+}
+
func (p *nopPage) RelatedKeywords(cfg related.IndexConfig) ([]related.Keyword, error) {
return nil, nil
}
panic("not implemented")
}
+func (p *testPage) Store() *maps.Scratch {
+ panic("not implemented")
+}
+
func (p *testPage) RelatedKeywords(cfg related.IndexConfig) ([]related.Keyword, error) {
v, err := p.Param(cfg.Name)
if err != nil {