forked from apache/incubator-seata
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDetailForm.js
More file actions
182 lines (156 loc) · 5.24 KB
/
Copy pathDetailForm.js
File metadata and controls
182 lines (156 loc) · 5.24 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
import React, { Fragment } from 'react';
import { Card, Form, Input, Select, Button } from 'antd';
import { withPropsAPI } from 'gg-editor';
import upperFirst from 'lodash/upperFirst';
const { Item } = Form;
const { Option } = Select;
const { TextArea } = Input;
const inlineFormItemLayout = {
labelCol: {
sm: { span: 5 },
},
wrapperCol: {
sm: { span: 19 },
},
};
let lastSelectedItem;
class DetailForm extends React.Component {
get item() {
const { propsAPI } = this.props;
return propsAPI.getSelected()[0] ? propsAPI.getSelected()[0] : lastSelectedItem;
}
componentWillMount() {
// fix edit node details
this.operationDetail();
}
operationDetail = () => {
const { propsAPI, form } = this.props;
const currentPage = propsAPI.editor.getCurrentPage().getGraph();
currentPage.on('node:click', (e) => {
const { label, stateId, stateType, stateProps } = e.item.getModel();
lastSelectedItem = e.item;
form.setFieldsValue({ label, stateId, stateType, stateProps: JSON.stringify(stateProps, null, 2) });
});
currentPage.on('edge:click', (e) => {
const { label = '', shape = 'flow-smooth', stateProps } = e.item.getModel();
lastSelectedItem = e.item;
form.setFieldsValue({ label, shape, stateProps: JSON.stringify(stateProps, null, 2) });
});
}
handleSubmit = (e) => {
if (e && e.preventDefault) {
e.preventDefault();
}
const { form, propsAPI } = this.props;
const { executeCommand, update } = propsAPI;
setTimeout(() => {
form.validateFieldsAndScroll((err, values) => {
if (err) {
return;
}
const item = this.item;
if (!item) {
return;
}
if (values.stateProps) {
values.stateProps = JSON.parse(values.stateProps);
}
lastSelectedItem = item;
executeCommand(() => {
update(item, {
...values,
});
});
});
}, 0);
};
renderEdgeShapeSelect = () => {
return (
<Select onChange={this.handleSubmit}>
<Option value="flow-smooth">Smooth</Option>
<Option value="flow-polyline">Polyline</Option>
<Option value="flow-polyline-round">Polyline Round</Option>
</Select>
);
};
renderNodeDetail = () => {
const { form } = this.props;
const { label, stateId, stateType, stateProps } = this.item.getModel();
return (
<Fragment>
<Item label="Label" {...inlineFormItemLayout}>
{form.getFieldDecorator('label', {
initialValue: label,
})(<Input onBlur={this.handleSubmit} />)}
</Item>
<Item label="Id" {...inlineFormItemLayout}>
{form.getFieldDecorator('stateId', {
initialValue: stateId,
})(<Input onBlur={this.handleSubmit} />)}
</Item>
<Item label="Type" {...inlineFormItemLayout}>
{form.getFieldDecorator('stateType', {
initialValue: stateType,
})(<Input readOnly={true} />)}
</Item>
<Item label="Props" {...inlineFormItemLayout}>
{form.getFieldDecorator('stateProps', {
initialValue: JSON.stringify(stateProps, null, 2),
})(<TextArea onBlur={this.handleSubmit} rows={16} />)}
</Item>
<a target="_blank" style={{ float: 'right' }} href="https://seata.apache.org/zh-cn/docs/user/saga.html">How to fill the properties?</a>
</Fragment >
);
};
renderEdgeDetail = () => {
const { form } = this.props;
const { label = '', shape = 'flow-smooth', stateProps } = this.item.getModel();
return (
<Fragment>
<Item label="Label" {...inlineFormItemLayout}>
{form.getFieldDecorator('label', {
initialValue: label,
})(<Input onBlur={this.handleSubmit} />)}
</Item>
<Item label="Shape" {...inlineFormItemLayout}>
{form.getFieldDecorator('shape', {
initialValue: shape,
})(this.renderEdgeShapeSelect())}
</Item>
<Item label="Props" {...inlineFormItemLayout}>
{form.getFieldDecorator('stateProps', {
initialValue: JSON.stringify(stateProps, null, 2),
})(<TextArea onBlur={this.handleSubmit} rows={16} />)}
</Item>
<a target="_blank" style={{ float: 'right' }} href="https://seata.apache.org/zh-cn/docs/user/saga.html">How to fill the properties?</a>
</Fragment>
);
};
renderGroupDetail = () => {
const { form } = this.props;
const { label = 'New Group' } = this.item.getModel();
return (
<Item label="Label" {...inlineFormItemLayout}>
{form.getFieldDecorator('label', {
initialValue: label,
})(<Input onBlur={this.handleSubmit} />)}
</Item>
);
};
render() {
const { type } = this.props;
if (!this.item) {
return null;
}
return (
<Card type="inner" size="small" title={upperFirst(type)} bordered={false}>
<Form onSubmit={this.handleSubmit}>
{type === 'node' && this.renderNodeDetail()}
{type === 'edge' && this.renderEdgeDetail()}
{type === 'group' && this.renderGroupDetail()}
</Form>
</Card>
);
}
}
export default Form.create()(withPropsAPI(DetailForm));