mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-08 16:00:26 +08:00
81 lines
1.9 KiB
Go
81 lines
1.9 KiB
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package charts
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/metrics/charts/chartutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/metrics/metricutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
"github.com/iwind/TeaGo/actions"
|
|
)
|
|
|
|
type UpdateAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *UpdateAction) Init() {
|
|
this.Nav("", "", "chart,chartUpdate")
|
|
}
|
|
|
|
func (this *UpdateAction) RunGet(params struct {
|
|
ChartId int64
|
|
}) {
|
|
chart, err := chartutils.InitChart(this.Parent(), params.ChartId)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
_, err = metricutils.InitItem(this.Parent(), chart.MetricItem.Id)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
this.Data["types"] = serverconfigs.FindAllMetricChartTypes()
|
|
|
|
this.Show()
|
|
}
|
|
|
|
func (this *UpdateAction) RunPost(params struct {
|
|
ChartId int64
|
|
Name string
|
|
Type string
|
|
WidthDiv int32
|
|
MaxItems int32
|
|
IsOn bool
|
|
IgnoreEmptyKeys bool
|
|
IgnoredKeys []string
|
|
|
|
Must *actions.Must
|
|
CSRF *actionutils.CSRF
|
|
}) {
|
|
defer this.CreateLogInfo("修改指标图表 %d", params.ChartId)
|
|
|
|
params.Must.
|
|
Field("name", params.Name).
|
|
Require("请输入图表名称").
|
|
Field("type", params.Type).
|
|
Require("请选择图表类型")
|
|
|
|
_, err := this.RPC().MetricChartRPC().UpdateMetricChart(this.AdminContext(), &pb.UpdateMetricChartRequest{
|
|
MetricChartId: params.ChartId,
|
|
Name: params.Name,
|
|
Type: params.Type,
|
|
WidthDiv: params.WidthDiv,
|
|
MaxItems: params.MaxItems,
|
|
ParamsJSON: nil,
|
|
IgnoreEmptyKeys: params.IgnoreEmptyKeys,
|
|
IgnoredKeys: params.IgnoredKeys,
|
|
IsOn: params.IsOn,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
this.Success()
|
|
}
|