commonParam.js
1.31 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
import React, { Component } from 'react';
import { Button } from 'antd';
import styles from '@/index.less';
import * as commonUtils from '@/utils/utils';
class commonParamComponent extends Component {
constructor(props) {
super(props);
this.state = {
};
}
/** 渲染前只执行一次 */
componentWillMount() {
this.assignmentWillProps(this.props);
}
componentWillReceiveProps(nextProps) {
this.assignmentWillProps(nextProps);
}
handleDoubleClick = (e, child) => {
const { sReturnFieldName } = this.props;
const { [`${sReturnFieldName}`]: currValue } = child;
this.props.onDoubleClick(this.props.name, currValue);
}
assignmentWillProps = (props) => {
this.setState({ disabled: props.disabled, data: commonUtils.isEmptyArr(props.data) ? [] : props.data });
}
render() {
const { data, disabled } = this.state;
const { sReturnFieldName } = this.props;
return (
<div className={styles.tabButton}>
{
data.map(child => (
<Button
key={child[`${sReturnFieldName}`]}
disabled={disabled}
onDoubleClick={e => this.handleDoubleClick(e, child)}
>
{child.sName}
</Button>
))
}
</div>
);
}
}
export default commonParamComponent;