pulumi/pkg/codegen/nodejs/doc.go
Praneet Loke 7b17463031
[codegen/docs] Fix the generation of Function names, args, and result type names (#4490)
* Add a new DocLangHelper interface method to generate function names per language. Use the functionNames override map in Go to correctly generate a function name.

* Add kong to the title lookup map.

* Check if item was found in map.

* Use title case for the nodejs Function args type name. Use title case for the function name in the index page.

* Also fix the result name for a Function in nodejs to use title case.

* Use the module name to lookup the package.

* Use the title-case name for the Function name in the index page. Fix the language value passed to the lang chooser in function.tmpl.

* Use title case for nested type titles.

* Add title lookup for GitHub.
2020-04-27 17:47:01 -07:00

113 lines
4.4 KiB
Go

// Copyright 2016-2020, Pulumi Corporation.
//
// 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.
// Pulling out some of the repeated strings tokens into constants would harm readability, so we just ignore the
// goconst linter's warning.
//
// nolint: lll, goconst
package nodejs
import (
"fmt"
"strings"
"github.com/pulumi/pulumi/pkg/v2/codegen"
"github.com/pulumi/pulumi/pkg/v2/codegen/schema"
)
// DocLanguageHelper is the NodeJS-specific implementation of the DocLanguageHelper.
type DocLanguageHelper struct{}
var _ codegen.DocLanguageHelper = DocLanguageHelper{}
// GetDocLinkForPulumiType returns the NodeJS API doc link for a Pulumi type.
func (d DocLanguageHelper) GetDocLinkForPulumiType(pkg *schema.Package, typeName string) string {
typeName = strings.ReplaceAll(typeName, "?", "")
return fmt.Sprintf("/docs/reference/pkg/nodejs/pulumi/pulumi/#%s", typeName)
}
// GetDocLinkForResourceType returns the NodeJS API doc for a type belonging to a resource provider.
func (d DocLanguageHelper) GetDocLinkForResourceType(pkg *schema.Package, modName, typeName string) string {
var path string
switch {
case pkg.Name != "" && modName != "":
path = fmt.Sprintf("%s/%s", pkg.Name, modName)
case pkg.Name == "" && modName != "":
path = modName
case pkg.Name != "" && modName == "":
path = pkg.Name
}
typeName = strings.ReplaceAll(typeName, "?", "")
return fmt.Sprintf("/docs/reference/pkg/nodejs/pulumi/%s/#%s", path, typeName)
}
// GetDocLinkForResourceInputOrOutputType returns the doc link for an input or output type of a Resource.
func (d DocLanguageHelper) GetDocLinkForResourceInputOrOutputType(pkg *schema.Package, modName, typeName string, input bool) string {
typeName = strings.TrimSuffix(typeName, "?")
parts := strings.Split(typeName, ".")
typeName = parts[len(parts)-1]
if input {
return fmt.Sprintf("/docs/reference/pkg/nodejs/pulumi/%s/types/input/#%s", pkg.Name, typeName)
}
return fmt.Sprintf("/docs/reference/pkg/nodejs/pulumi/%s/types/output/#%s", pkg.Name, typeName)
}
// GetDocLinkForFunctionInputOrOutputType returns the doc link for an input or output type of a Function.
func (d DocLanguageHelper) GetDocLinkForFunctionInputOrOutputType(pkg *schema.Package, modName, typeName string, input bool) string {
return d.GetDocLinkForResourceInputOrOutputType(pkg, modName, typeName, input)
}
// GetDocLinkForBuiltInType returns the URL for a built-in type.
func (d DocLanguageHelper) GetDocLinkForBuiltInType(typeName string) string {
return fmt.Sprintf("https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/%s", typeName)
}
// GetLanguageTypeString returns the language-specific type given a Pulumi schema type.
func (d DocLanguageHelper) GetLanguageTypeString(pkg *schema.Package, moduleName string, t schema.Type, input, optional bool) string {
modCtx := &modContext{
pkg: pkg,
mod: moduleName,
}
typeName := modCtx.typeString(t, input, false, optional)
// Remove any package qualifiers from the type name.
typeQualifierPackage := "inputs"
if !input {
typeQualifierPackage = "outputs"
}
typeName = strings.ReplaceAll(typeName, typeQualifierPackage+".", "")
// Remove the union with `undefined` for optional types,
// since we will show that information separately anyway.
if optional {
typeName = strings.ReplaceAll(typeName, " | undefined", "?")
}
return typeName
}
func (d DocLanguageHelper) GetFunctionName(modName string, f *schema.Function) string {
return tokenToFunctionName(f.Token)
}
// GetResourceFunctionResultName returns the name of the result type when a function is used to lookup
// an existing resource.
func (d DocLanguageHelper) GetResourceFunctionResultName(modName string, f *schema.Function) string {
funcName := d.GetFunctionName(modName, f)
return title(funcName) + "Result"
}
// GetPropertyName returns the property name specific to NodeJS.
func (d DocLanguageHelper) GetPropertyName(p *schema.Property) (string, error) {
return p.Name, nil
}