2020-07-02 12:16:32 -04:00
|
|
|
// Copyright 2020 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 js provides functions for building JavaScript resources
|
|
|
|
package js
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gohugoio/hugo/deps"
|
|
|
|
"github.com/gohugoio/hugo/resources"
|
|
|
|
"github.com/gohugoio/hugo/resources/resource"
|
|
|
|
"github.com/gohugoio/hugo/resources/resource_transformers/js"
|
2020-07-12 06:47:14 -04:00
|
|
|
"github.com/gohugoio/hugo/tpl/internal/resourcehelpers"
|
2020-07-02 12:16:32 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// New returns a new instance of the js-namespaced template functions.
|
|
|
|
func New(deps *deps.Deps) *Namespace {
|
2020-07-13 05:01:38 -04:00
|
|
|
if deps.ResourceSpec == nil {
|
|
|
|
return &Namespace{}
|
|
|
|
}
|
2020-07-02 12:16:32 -04:00
|
|
|
return &Namespace{
|
|
|
|
client: js.New(deps.BaseFs.Assets, deps.ResourceSpec),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Namespace provides template functions for the "js" namespace.
|
|
|
|
type Namespace struct {
|
|
|
|
deps *deps.Deps
|
|
|
|
client *js.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build processes the given Resource with ESBuild.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (ns *Namespace) Build(args ...any) (resource.Resource, error) {
|
2020-07-12 06:47:14 -04:00
|
|
|
var (
|
|
|
|
r resources.ResourceTransformer
|
2022-03-17 17:03:27 -04:00
|
|
|
m map[string]any
|
2020-07-12 06:47:14 -04:00
|
|
|
targetPath string
|
|
|
|
err error
|
|
|
|
ok bool
|
|
|
|
)
|
|
|
|
|
|
|
|
r, targetPath, ok = resourcehelpers.ResolveIfFirstArgIsString(args)
|
2020-07-02 12:16:32 -04:00
|
|
|
|
2020-07-12 06:47:14 -04:00
|
|
|
if !ok {
|
|
|
|
r, m, err = resourcehelpers.ResolveArgs(args)
|
2020-07-02 12:16:32 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-12 06:47:14 -04:00
|
|
|
if targetPath != "" {
|
2022-03-17 17:03:27 -04:00
|
|
|
m = map[string]any{"targetPath": targetPath}
|
2020-07-02 12:16:32 -04:00
|
|
|
}
|
|
|
|
|
2020-07-21 11:03:06 -04:00
|
|
|
return ns.client.Process(r, m)
|
2020-07-02 12:16:32 -04:00
|
|
|
}
|