2021-07-05 11:38:07 +08:00
|
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
|
|
2020-09-06 16:19:34 +08:00
|
|
|
package cluster
|
2020-07-22 22:19:39 +08:00
|
|
|
|
2020-07-29 19:34:54 +08:00
|
|
|
import (
|
2021-07-05 11:38:07 +08:00
|
|
|
teaconst "github.com/TeaOSLab/EdgeAdmin/internal/const"
|
2020-07-29 19:34:54 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
2020-11-02 09:37:20 +08:00
|
|
|
"strconv"
|
2020-07-29 19:34:54 +08:00
|
|
|
)
|
2020-07-22 22:19:39 +08:00
|
|
|
|
|
|
|
|
type IndexAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *IndexAction) Init() {
|
2021-07-05 11:38:07 +08:00
|
|
|
this.Nav("", "", "")
|
2020-07-22 22:19:39 +08:00
|
|
|
}
|
|
|
|
|
|
2020-09-06 16:19:34 +08:00
|
|
|
func (this *IndexAction) RunGet(params struct {
|
2021-07-05 11:38:07 +08:00
|
|
|
ClusterId int64
|
2020-09-06 16:19:34 +08:00
|
|
|
}) {
|
2021-07-05 11:38:07 +08:00
|
|
|
if teaconst.IsPlus {
|
|
|
|
|
this.RedirectURL("/clusters/cluster/boards?clusterId=" + strconv.FormatInt(params.ClusterId, 10))
|
|
|
|
|
} else {
|
|
|
|
|
this.RedirectURL("/clusters/cluster/nodes?clusterId=" + strconv.FormatInt(params.ClusterId, 10))
|
2020-10-28 20:00:27 +08:00
|
|
|
}
|
2020-07-22 22:19:39 +08:00
|
|
|
}
|