2023-02-21 12:32:09 -05:00
|
|
|
package css
|
|
|
|
|
|
|
|
import (
|
2023-02-25 03:24:59 -05:00
|
|
|
"context"
|
2024-06-23 06:10:35 -04:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
2023-02-25 03:24:59 -05:00
|
|
|
|
2024-06-23 06:10:35 -04:00
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
|
|
|
"github.com/gohugoio/hugo/common/paths"
|
2023-02-21 12:32:09 -05:00
|
|
|
"github.com/gohugoio/hugo/common/types/css"
|
|
|
|
"github.com/gohugoio/hugo/deps"
|
2024-06-23 06:10:35 -04:00
|
|
|
"github.com/gohugoio/hugo/resources"
|
|
|
|
"github.com/gohugoio/hugo/resources/resource"
|
|
|
|
"github.com/gohugoio/hugo/resources/resource_transformers/babel"
|
2024-06-23 06:49:10 -04:00
|
|
|
"github.com/gohugoio/hugo/resources/resource_transformers/cssjs"
|
2024-06-23 06:10:35 -04:00
|
|
|
"github.com/gohugoio/hugo/resources/resource_transformers/tocss/dartsass"
|
|
|
|
"github.com/gohugoio/hugo/resources/resource_transformers/tocss/scss"
|
2023-02-21 12:32:09 -05:00
|
|
|
"github.com/gohugoio/hugo/tpl/internal"
|
2024-06-23 06:10:35 -04:00
|
|
|
"github.com/gohugoio/hugo/tpl/internal/resourcehelpers"
|
2023-02-21 12:32:09 -05:00
|
|
|
"github.com/spf13/cast"
|
|
|
|
)
|
|
|
|
|
|
|
|
const name = "css"
|
|
|
|
|
|
|
|
// Namespace provides template functions for the "css" namespace.
|
2024-06-23 06:10:35 -04:00
|
|
|
type Namespace struct {
|
|
|
|
d *deps.Deps
|
|
|
|
scssClientLibSass *scss.Client
|
2024-06-23 06:49:10 -04:00
|
|
|
postcssClient *cssjs.PostCSSClient
|
|
|
|
tailwindcssClient *cssjs.TailwindCSSClient
|
2024-06-23 06:10:35 -04:00
|
|
|
babelClient *babel.Client
|
|
|
|
|
|
|
|
// The Dart Client requires a os/exec process, so only
|
|
|
|
// create it if we really need it.
|
|
|
|
// This is mostly to avoid creating one per site build test.
|
|
|
|
scssClientDartSassInit sync.Once
|
|
|
|
scssClientDartSass *dartsass.Client
|
|
|
|
}
|
2023-02-21 12:32:09 -05:00
|
|
|
|
|
|
|
// Quoted returns a string that needs to be quoted in CSS.
|
|
|
|
func (ns *Namespace) Quoted(v any) css.QuotedString {
|
|
|
|
s := cast.ToString(v)
|
|
|
|
return css.QuotedString(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unquoted returns a string that does not need to be quoted in CSS.
|
|
|
|
func (ns *Namespace) Unquoted(v any) css.UnquotedString {
|
|
|
|
s := cast.ToString(v)
|
|
|
|
return css.UnquotedString(s)
|
|
|
|
}
|
|
|
|
|
2024-06-23 06:10:35 -04:00
|
|
|
// PostCSS processes the given Resource with PostCSS.
|
|
|
|
func (ns *Namespace) PostCSS(args ...any) (resource.Resource, error) {
|
|
|
|
if len(args) > 2 {
|
|
|
|
return nil, errors.New("must not provide more arguments than resource object and options")
|
|
|
|
}
|
|
|
|
|
|
|
|
r, m, err := resourcehelpers.ResolveArgs(args)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return ns.postcssClient.Process(r, m)
|
|
|
|
}
|
|
|
|
|
2024-06-23 06:49:10 -04:00
|
|
|
// TailwindCSS processes the given Resource with tailwindcss.
|
|
|
|
func (ns *Namespace) TailwindCSS(args ...any) (resource.Resource, error) {
|
|
|
|
if len(args) > 2 {
|
|
|
|
return nil, errors.New("must not provide more arguments than resource object and options")
|
|
|
|
}
|
|
|
|
|
|
|
|
r, m, err := resourcehelpers.ResolveArgs(args)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return ns.tailwindcssClient.Process(r, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sass processes the given Resource with SASS.
|
2024-06-23 06:10:35 -04:00
|
|
|
func (ns *Namespace) Sass(args ...any) (resource.Resource, error) {
|
|
|
|
if len(args) > 2 {
|
|
|
|
return nil, errors.New("must not provide more arguments than resource object and options")
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Transpiler implementation can be controlled from the client by
|
|
|
|
// setting the 'transpiler' option.
|
|
|
|
// Default is currently 'libsass', but that may change.
|
|
|
|
transpilerDart = "dartsass"
|
|
|
|
transpilerLibSass = "libsass"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
r resources.ResourceTransformer
|
|
|
|
m map[string]any
|
|
|
|
targetPath string
|
|
|
|
err error
|
|
|
|
ok bool
|
|
|
|
transpiler = transpilerLibSass
|
|
|
|
)
|
|
|
|
|
|
|
|
r, targetPath, ok = resourcehelpers.ResolveIfFirstArgIsString(args)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
r, m, err = resourcehelpers.ResolveArgs(args)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if m != nil {
|
|
|
|
if t, _, found := maps.LookupEqualFold(m, "transpiler"); found {
|
|
|
|
switch t {
|
|
|
|
case transpilerDart, transpilerLibSass:
|
|
|
|
transpiler = cast.ToString(t)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unsupported transpiler %q; valid values are %q or %q", t, transpilerLibSass, transpilerDart)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if transpiler == transpilerLibSass {
|
|
|
|
var options scss.Options
|
|
|
|
if targetPath != "" {
|
|
|
|
options.TargetPath = paths.ToSlashTrimLeading(targetPath)
|
|
|
|
} else if m != nil {
|
|
|
|
options, err = scss.DecodeOptions(m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ns.scssClientLibSass.ToCSS(r, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
if m == nil {
|
|
|
|
m = make(map[string]any)
|
|
|
|
}
|
|
|
|
if targetPath != "" {
|
|
|
|
m["targetPath"] = targetPath
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := ns.getscssClientDartSass()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return client.ToCSS(r, m)
|
|
|
|
}
|
|
|
|
|
2023-02-21 12:32:09 -05:00
|
|
|
func init() {
|
|
|
|
f := func(d *deps.Deps) *internal.TemplateFuncsNamespace {
|
2024-06-23 06:10:35 -04:00
|
|
|
scssClient, err := scss.New(d.BaseFs.Assets, d.ResourceSpec)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
ctx := &Namespace{
|
|
|
|
d: d,
|
|
|
|
scssClientLibSass: scssClient,
|
2024-06-23 06:49:10 -04:00
|
|
|
postcssClient: cssjs.NewPostCSSClient(d.ResourceSpec),
|
|
|
|
tailwindcssClient: cssjs.NewTailwindCSSClient(d.ResourceSpec),
|
2024-06-23 06:10:35 -04:00
|
|
|
babelClient: babel.New(d.ResourceSpec),
|
|
|
|
}
|
2023-02-21 12:32:09 -05:00
|
|
|
|
|
|
|
ns := &internal.TemplateFuncsNamespace{
|
|
|
|
Name: name,
|
2023-02-25 03:24:59 -05:00
|
|
|
Context: func(cctx context.Context, args ...any) (any, error) { return ctx, nil },
|
2023-02-21 12:32:09 -05:00
|
|
|
}
|
|
|
|
|
2024-06-23 06:10:35 -04:00
|
|
|
ns.AddMethodMapping(ctx.Sass,
|
|
|
|
[]string{"toCSS"},
|
|
|
|
[][2]string{},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.PostCSS,
|
|
|
|
[]string{"postCSS"},
|
|
|
|
[][2]string{},
|
|
|
|
)
|
|
|
|
|
2023-02-21 12:32:09 -05:00
|
|
|
return ns
|
|
|
|
}
|
|
|
|
|
|
|
|
internal.AddTemplateFuncsNamespace(f)
|
|
|
|
}
|
2024-06-23 06:10:35 -04:00
|
|
|
|
|
|
|
func (ns *Namespace) getscssClientDartSass() (*dartsass.Client, error) {
|
|
|
|
var err error
|
|
|
|
ns.scssClientDartSassInit.Do(func() {
|
|
|
|
ns.scssClientDartSass, err = dartsass.New(ns.d.BaseFs.Assets, ns.d.ResourceSpec)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ns.d.BuildClosers.Add(ns.scssClientDartSass)
|
|
|
|
})
|
|
|
|
|
|
|
|
return ns.scssClientDartSass, err
|
|
|
|
}
|