mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-20 00:07:27 +00:00
* Fix: refactor the source of all kinds of views, use the "Factory Method" design patterns to rewrite the code to upgrade the quality of code Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: fix test case of the refactored code and some bugs Signed-off-by: HanMengnan <1448189829@qq.com> * Fix: rename the interface of ResourceView Signed-off-by: HanMengnan <1448189829@qq.com> Signed-off-by: HanMengnan <1448189829@qq.com>
65 lines
1.7 KiB
Go
65 lines
1.7 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 (
|
|
"context"
|
|
"time"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"github.com/oam-dev/kubevela/references/cli/top/utils"
|
|
)
|
|
|
|
// Namespace is namespace struct
|
|
type Namespace struct {
|
|
name string
|
|
status string
|
|
age string
|
|
}
|
|
|
|
// NamespaceList is namespace list
|
|
type NamespaceList []Namespace
|
|
|
|
// ListNamespaces return all namespaces
|
|
func ListNamespaces(ctx context.Context, c client.Client) (NamespaceList, error) {
|
|
var nsList v1.NamespaceList
|
|
if err := c.List(ctx, &nsList); err != nil {
|
|
return NamespaceList{}, err
|
|
}
|
|
nsInfoList := make(NamespaceList, len(nsList.Items))
|
|
for index, ns := range nsList.Items {
|
|
nsInfoList[index] = Namespace{
|
|
name: ns.Name,
|
|
status: string(ns.Status.Phase),
|
|
age: utils.TimeFormat(time.Since(ns.CreationTimestamp.Time)),
|
|
}
|
|
}
|
|
return nsInfoList, nil
|
|
}
|
|
|
|
// ToTableBody generate body of table in namespace view
|
|
func (l NamespaceList) ToTableBody() [][]string {
|
|
data := make([][]string, len(l)+1)
|
|
data[0] = []string{"all", "*", "*"}
|
|
for index, ns := range l {
|
|
data[index+1] = []string{ns.name, ns.status, ns.age}
|
|
}
|
|
return data
|
|
}
|