Files
hugo/hugolib/page__output.go
T
Bjørn Erik Pedersen 70db201ed4 Add importContext option to css.Build, js.Build, css.Sass and css.TailwindCSS
This allows @import statements to be resolved in a set of user provided resources (e.g. from resources.FromString or css.ChromaStyles) before the assets filesystem.

The option also applies to css.PostCSS via the shared import inlining, and css.Sass requires the dartsass transpiler. The import context is part of the transformation cache key.

Fixes #15103

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-08-03 21:20:06 +02:00

193 lines
4.9 KiB
Go

// Copyright 2019 The Hugo Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package hugolib
import (
"fmt"
"path"
"strings"
"github.com/gohugoio/hugo/identity"
"github.com/gohugoio/hugo/output"
"github.com/gohugoio/hugo/resources/page"
"github.com/gohugoio/hugo/resources/resource"
)
var paginatorNotSupported = page.PaginatorNotSupportedFunc(func() error {
return fmt.Errorf("pagination not supported for this page")
})
func newPageOutput(
ps *pageState,
pp pagePaths,
f output.Format,
render bool,
) *pageOutput {
var targetPathsProvider targetPathsHolder
var linksProvider resource.ResourceLinksProvider
ft, found := pp.targetPaths[f.Name]
if !found {
// Link to the main output format
ft = pp.targetPaths[pp.firstOutputFormat.Format.Name]
}
targetPathsProvider = ft
linksProvider = ft
var paginatorProvider page.PaginatorProvider
var pag *pagePaginator
if render && ps.IsBranch() {
pag = newPagePaginator(ps)
paginatorProvider = pag
} else {
paginatorProvider = paginatorNotSupported
}
providers := struct {
page.PaginatorProvider
resource.ResourceLinksProvider
targetPather
}{
paginatorProvider,
linksProvider,
targetPathsProvider,
}
po := &pageOutput{
p: ps,
f: f,
pagePerOutputProviders: providers,
MarkupProvider: page.NopPage,
ContentProvider: page.NopPage,
PageRenderProvider: page.NopPage,
TableOfContentsProvider: page.NopPage,
render: render,
paginator: pag,
dependencyManagerOutput: ps.s.Conf.NewIdentityManager(),
}
return po
}
// We create a pageOutput for every output format combination, even if this
// particular page isn't configured to be rendered to that format.
type pageOutput struct {
p *pageState
// Set if this page is configured to be rendered to this format.
render bool
f output.Format
// Only set if render is set.
// Note that this will be lazily initialized, so only used if actually
// used in template(s).
paginator *pagePaginator
// These interface provides the functionality that is specific for this
// output format.
contentRenderer page.ContentRenderer
pagePerOutputProviders
page.MarkupProvider
page.ContentProvider
page.PageRenderProvider
page.TableOfContentsProvider
page.RenderShortcodesProvider
// May be nil.
pco *pageContentOutput
dependencyManagerOutput identity.Manager
renderState int // Reset when it needs to be rendered again.
renderOnce bool // To make sure we at least try to render it once.
}
func (po *pageOutput) Aliases() []string {
conf := po.p.s.conf
p := po.p
f := po.f
// This is relatively cheap to create, and the common case is to call this once.
// So avoid caching this value.
aliases := make([]string, len(po.p.m.pageConfig.Aliases))
for i, a := range po.p.m.pageConfig.Aliases {
isRelative := !strings.HasPrefix(a, "/")
var baseDir string
if isRelative {
// Form the baseDir by taking the resource's base target
// and moving up one level to the parent.
parentContext := path.Join(p.targetPaths().SubResourceBaseTarget, "..")
baseDir = parentContext
} else {
// Form the baseDir by prepending the content dimension
// prefixes with the Output Format path.
baseDir = path.Join("/", p.targetPathDescriptor.PrefixFilePath, f.Path)
}
a = path.Join(baseDir, a)
if conf.C.IsUglyURLSection(p.Section()) && !pathHasOutputFormatSuffix(a, f) {
a += f.MediaType.FirstSuffix.FullSuffix
}
aliases[i] = a
}
return aliases
}
// Key returns a unique key for this page output, used to e.g. hashing.
func (po *pageOutput) Key() string {
return po.p.Path() + po.f.Name
}
func (po *pageOutput) incrRenderState() {
po.renderState++
po.renderOnce = true
}
// isRendered reports whether this output format or its content has been rendered.
func (po *pageOutput) isRendered() bool {
if po.renderState > 0 {
return true
}
if po.pco != nil && po.pco.contentRendered.Load() {
return true
}
return false
}
func (po *pageOutput) IdentifierBase() string {
return po.p.f.Name
}
func (po *pageOutput) GetDependencyManager() identity.Manager {
return po.dependencyManagerOutput
}
func (p *pageOutput) setContentProvider(cp *pageContentOutput) {
if cp == nil {
return
}
p.contentRenderer = cp
p.ContentProvider = cp
p.MarkupProvider = cp
p.PageRenderProvider = cp
p.TableOfContentsProvider = cp
p.RenderShortcodesProvider = cp
p.pco = cp
}