mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
8f29450594
* Remove Raw references * Remove more raws * Re-generate files * Remove raw folder from veneer * Fix import * Fix lint * Bring back raw folder in grafana-schema * Another lint * Remove use of "Structured" word in kinds * Delete unused function and remove some structured words * Bunch more removals of structured name Co-authored-by: sam boyer <sdboyer@grafana.com>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package corekind
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/google/wire"
|
|
"github.com/grafana/grafana/pkg/cuectx"
|
|
"github.com/grafana/grafana/pkg/kindsys"
|
|
"github.com/grafana/thema"
|
|
)
|
|
|
|
// KindSet contains all of the wire-style providers related to kinds.
|
|
var KindSet = wire.NewSet(
|
|
NewBase,
|
|
)
|
|
|
|
var (
|
|
baseOnce sync.Once
|
|
defaultBase *Base
|
|
)
|
|
|
|
// NewBase provides a registry of all core raw and structured kinds, without any
|
|
// composition of slot kinds.
|
|
//
|
|
// All calling code within grafana/grafana is expected to use Grafana's
|
|
// singleton [thema.Runtime], returned from [cuectx.GrafanaThemaRuntime]. If nil
|
|
// is passed, the singleton will be used.
|
|
func NewBase(rt *thema.Runtime) *Base {
|
|
allrt := cuectx.GrafanaThemaRuntime()
|
|
if rt == nil || rt == allrt {
|
|
baseOnce.Do(func() {
|
|
defaultBase = doNewBase(allrt)
|
|
})
|
|
return defaultBase
|
|
}
|
|
|
|
return doNewBase(rt)
|
|
}
|
|
|
|
// All returns a slice of [kindsys.Core] containing all core Grafana kinds.
|
|
//
|
|
// The returned slice is sorted lexicographically by kind machine name.
|
|
func (b *Base) All() []kindsys.Core {
|
|
ret := make([]kindsys.Core, len(b.all))
|
|
copy(ret, b.all)
|
|
return ret
|
|
}
|