builder

package
v0.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 22, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Initialization

type Initialization struct {
	PropertyPath string
	Value        any
}

type RewriteRule

type RewriteRule func(schemas ast.Schemas, builders ast.Builders) (ast.Builders, error)

func AddOption

func AddOption(selector Selector, newOption veneers.Option) RewriteRule

AddOption adds a completely new option to the selected builders.

func ComposeDashboardPanel

func ComposeDashboardPanel(selector Selector, panelBuilderName string, panelOptionsToExclude []string) RewriteRule

func DefaultToConstant

func DefaultToConstant(selector Selector, options []string) RewriteRule

DefaultToConstant sets a default value into a constant. When we unfold a value, omit an option, or any other action; we can lose the default value in the Builder struct. If we parse the defaults using the Builder and not the Schema, we might not have all the defaults and with this rule, we set these defaults as constants inside the constructor.

func Duplicate

func Duplicate(selector Selector, duplicateName string, excludeOptions []string) RewriteRule

func Initialize

func Initialize(selector Selector, statements []Initialization) RewriteRule

func MergeInto

func MergeInto(selector Selector, sourceBuilderName string, underPath string, excludeOptions []string, renameOptions map[string]string) RewriteRule

func Omit

func Omit(selector Selector) RewriteRule

func PromoteOptionsToConstructor

func PromoteOptionsToConstructor(selector Selector, optionNames []string) RewriteRule

PromoteOptionsToConstructor promotes the given options as constructor parameters. Both arguments and assignments described by the options will be exposed in the builder's constructor.

func Properties

func Properties(selector Selector, properties []ast.StructField) RewriteRule

func Rename

func Rename(selector Selector, newName string) RewriteRule

func VeneerTrailAsComments

func VeneerTrailAsComments(selector Selector) RewriteRule

type Selector

type Selector func(schemas ast.Schemas, builder ast.Builder) bool

func ByName

func ByName(pkg string, builderName string) Selector

ByName matches builders for the given name. Note: the comparison on builder name is case-insensitive.

func ByObjectName

func ByObjectName(pkg string, objectName string) Selector

ByObjectName matches builders for the given the object (referred to by its package and name). Note: the comparison on object name is case-insensitive.

func ComposableDashboardPanel

func ComposableDashboardPanel() Selector

ComposableDashboardPanel matches builders for Panel variants.

func EveryBuilder

func EveryBuilder() Selector

EveryBuilder accepts any given builder.

func StructGeneratedFromDisjunction

func StructGeneratedFromDisjunction() Selector

StructGeneratedFromDisjunction matches builders for structs that were generated from a disjunction (see the Disjunction compiler pass).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL