mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +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>
85 lines
1.8 KiB
Go
85 lines
1.8 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 model
|
|
|
|
import (
|
|
"sort"
|
|
|
|
"github.com/gdamore/tcell/v2"
|
|
)
|
|
|
|
// KeyAction is key action struct
|
|
type KeyAction struct {
|
|
Description string
|
|
Action func(*tcell.EventKey) *tcell.EventKey
|
|
Visible bool
|
|
Shared bool
|
|
}
|
|
|
|
// KeyActions is a map from key to action
|
|
type KeyActions map[tcell.Key]KeyAction
|
|
|
|
// Hint convert key action map to menu hints
|
|
func (ka KeyActions) Hint() []MenuHint {
|
|
tmp := make([]int, 0)
|
|
for k := range ka {
|
|
tmp = append(tmp, int(k))
|
|
}
|
|
sort.Ints(tmp)
|
|
hints := make([]MenuHint, 0)
|
|
|
|
for _, key := range tmp {
|
|
if name, ok := tcell.KeyNames[tcell.Key(key)]; ok {
|
|
hints = append(hints,
|
|
MenuHint{
|
|
Key: name,
|
|
Description: ka[tcell.Key(key)].Description,
|
|
},
|
|
)
|
|
}
|
|
}
|
|
return hints
|
|
}
|
|
|
|
// Add a key action to key action map
|
|
func (ka KeyActions) Add(actions KeyActions) {
|
|
for k, v := range actions {
|
|
ka[k] = v
|
|
}
|
|
}
|
|
|
|
// Set a key action to key action map
|
|
func (ka KeyActions) Set(actions KeyActions) {
|
|
for k, v := range actions {
|
|
ka[k] = v
|
|
}
|
|
}
|
|
|
|
// Delete aim key from key action map
|
|
func (ka KeyActions) Delete(kk []tcell.Key) {
|
|
for _, k := range kk {
|
|
delete(ka, k)
|
|
}
|
|
}
|
|
|
|
// Clear key action map clear up
|
|
func (ka KeyActions) Clear() {
|
|
for k := range ka {
|
|
delete(ka, k)
|
|
}
|
|
}
|