mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
473898e47c
* Move some thema code inside grafana * Use new codegen instead of thema for core kinds * Replace TS generator * Use new generator for go types * Remove thema from oapi generator * Remove thema from generators * Don't use kindsys/thema for core kinds * Remove kindsys/thema from plugins * Remove last thema related * Remove most of cuectx and move utils_ts into codegen. It also deletes wire dependency * Merge plugins generators * Delete thema dependency 🎉 * Fix CODEOWNERS * Fix package name * Fix TS output names * More path fixes * Fix mod codeowners * Use original plugin's name * Remove kindsys dependency 🎉 * Modify oapi schema and create an apply function to fix elasticsearch errors * cue.mod was deleted by mistake * Fix TS panels * sort imports * Fixing elasticsearch output * Downgrade oapi-codegen library * Update output ts files * More fixes * Restore old elasticsearch generated file and skip its generation. Remove core imports into plugins * More lint fixes * Add codeowners * restore embed.go file * Fix embed.go
88 lines
2.1 KiB
Go
88 lines
2.1 KiB
Go
package codegen
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/grafana/codejen"
|
|
"github.com/grafana/cuetsy/ts"
|
|
"github.com/grafana/cuetsy/ts/ast"
|
|
)
|
|
|
|
// LatestMajorsOrXJenny returns a jenny that repeats the input for the latest in each major version.
|
|
func LatestMajorsOrXJenny(parentdir string) OneToMany {
|
|
return &lmox{
|
|
parentdir: parentdir,
|
|
inner: TSTypesJenny{ApplyFuncs: []ApplyFunc{renameSpecNode}},
|
|
}
|
|
}
|
|
|
|
type lmox struct {
|
|
parentdir string
|
|
inner codejen.OneToOne[SchemaForGen]
|
|
}
|
|
|
|
func (j *lmox) JennyName() string {
|
|
return "LatestMajorsOrXJenny"
|
|
}
|
|
|
|
func (j *lmox) Generate(sfg SchemaForGen) (codejen.Files, error) {
|
|
sfg.IsGroup = true
|
|
f, err := j.inner.Generate(sfg)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%s jenny failed for %s: %w", j.inner.JennyName(), sfg.Name, err)
|
|
}
|
|
if f == nil || !f.Exists() {
|
|
return nil, nil
|
|
}
|
|
|
|
f.RelativePath = filepath.Join(j.parentdir, sfg.OutputName, "x", f.RelativePath)
|
|
f.From = append(f.From, j)
|
|
return codejen.Files{*f}, nil
|
|
}
|
|
|
|
// renameSpecNode rename spec node from the TS file result
|
|
func renameSpecNode(sfg SchemaForGen, tf *ast.File) {
|
|
specidx, specdefidx := -1, -1
|
|
for idx, def := range tf.Nodes {
|
|
// Peer through export keywords
|
|
if ex, is := def.(ast.ExportKeyword); is {
|
|
def = ex.Decl
|
|
}
|
|
|
|
switch x := def.(type) {
|
|
case ast.TypeDecl:
|
|
if x.Name.Name == "spec" {
|
|
specidx = idx
|
|
x.Name.Name = sfg.Name
|
|
tf.Nodes[idx] = x
|
|
}
|
|
case ast.VarDecl:
|
|
// Before:
|
|
// export const defaultspec: Partial<spec> = {
|
|
// After:
|
|
// / export const defaultPlaylist: Partial<Playlist> = {
|
|
if x.Names.Idents[0].Name == "defaultspec" {
|
|
specdefidx = idx
|
|
x.Names.Idents[0].Name = "default" + sfg.Name
|
|
tt := x.Type.(ast.TypeTransformExpr)
|
|
tt.Expr = ts.Ident(sfg.Name)
|
|
x.Type = tt
|
|
tf.Nodes[idx] = x
|
|
}
|
|
}
|
|
}
|
|
|
|
if specidx != -1 {
|
|
decl := tf.Nodes[specidx]
|
|
tf.Nodes = append(append(tf.Nodes[:specidx], tf.Nodes[specidx+1:]...), decl)
|
|
}
|
|
if specdefidx != -1 {
|
|
if specdefidx > specidx {
|
|
specdefidx--
|
|
}
|
|
decl := tf.Nodes[specdefidx]
|
|
tf.Nodes = append(append(tf.Nodes[:specdefidx], tf.Nodes[specdefidx+1:]...), decl)
|
|
}
|
|
}
|