-
Notifications
You must be signed in to change notification settings - Fork 377
/
render.go
62 lines (53 loc) · 1.74 KB
/
render.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright (c) 2021 Terminus, Inc.
//
// This program is free software: you can use, redistribute, and/or modify
// it under the terms of the GNU Affero General Public License, version 3
// or later ("AGPL"), as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package fileExecute
import (
"context"
"encoding/json"
"github.com/sirupsen/logrus"
"github.com/erda-project/erda/apistructs"
protocol "github.com/erda-project/erda/modules/openapi/component-protocol"
)
type ComponentAction struct {
State State `json:"state"`
}
type State struct {
ActiveKey apistructs.ActiveKey `json:"activeKey"`
}
func (ca *ComponentAction) GenComponentState(c *apistructs.Component) error {
if c == nil || c.State == nil {
return nil
}
var state State
cont, err := json.Marshal(c.State)
if err != nil {
logrus.Errorf("marshal component state failed, content:%v, err:%v", c.State, err)
return err
}
err = json.Unmarshal(cont, &state)
if err != nil {
logrus.Errorf("unmarshal component state failed, content:%v, err:%v", cont, err)
return err
}
ca.State = state
return nil
}
func (ca *ComponentAction) Render(ctx context.Context, c *apistructs.Component, scenario apistructs.ComponentProtocolScenario, event apistructs.ComponentEvent, gs *apistructs.GlobalStateData) error {
if err := ca.GenComponentState(c); err != nil {
return err
}
return nil
}
func RenderCreator() protocol.CompRender {
return &ComponentAction{}
}