mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-17 14:57:12 +00:00
* Feat: UI sketch init Signed-off-by: HanMengnan <1448189829@qq.com> * Feat: Resource data load finish Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: optimize code struct Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: add test case and fix some bugs 1. add test case to package model 2. fix a bug of ListClusters 3. optimize code structure Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix go.mod package version Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix some bugs and optimize code structure Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix irregular code and add comments Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: supplement test cases and fix bugs Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: move the `vela status --ui` command out and add it as a new command `vela top` Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix package import sequence and go.mod Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: add copyright header Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: update description and example of command `vela top` Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: convert color variables to const variables Signed-off-by: HanMengnan <1448189829@qq.com>
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
/*
|
|
Copyright 2022 The KubeVela Authors.
|
|
|
|
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 view
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/oam-dev/kubevela/references/cli/top/model"
|
|
)
|
|
|
|
// Command is a kind of abstract of user UI operation
|
|
type Command struct {
|
|
app *App
|
|
}
|
|
|
|
// NewCommand return app's command instance
|
|
func NewCommand(app *App) *Command {
|
|
command := &Command{
|
|
app: app,
|
|
}
|
|
return command
|
|
}
|
|
|
|
// Init command instance
|
|
func (c *Command) Init() {}
|
|
|
|
func (c *Command) exec(_ string, component model.Component) {
|
|
c.app.inject(component)
|
|
}
|
|
|
|
func (c *Command) run(ctx context.Context, cmd string) {
|
|
cmd = strings.ToLower(cmd)
|
|
var component model.Component
|
|
switch {
|
|
case cmd == "?" || cmd == "h" || cmd == "help":
|
|
component = NewHelpView(c.app)
|
|
default:
|
|
if resource, ok := ResourceMap[cmd]; ok {
|
|
component = resource.viewFunc(ctx, c.app)
|
|
} else {
|
|
return
|
|
}
|
|
}
|
|
c.exec(cmd, component)
|
|
}
|