ant-design/components/cascader/index.jsx

110 lines
3.2 KiB
React
Raw Normal View History

2015-12-29 11:46:13 +08:00
import React from 'react';
import RcCascader from 'rc-cascader';
2015-12-29 11:46:13 +08:00
import Input from '../input';
2015-12-29 21:18:27 +08:00
import Icon from '../icon';
2015-12-29 11:46:13 +08:00
import arrayTreeFilter from 'array-tree-filter';
2015-12-29 18:31:48 +08:00
import classNames from 'classnames';
2015-12-29 11:46:13 +08:00
export default class Cascader extends React.Component {
2015-12-29 11:46:13 +08:00
constructor(props) {
super(props);
this.state = {
2015-12-29 21:18:27 +08:00
value: props.value || props.defaultValue || [],
popupVisible: false,
2015-12-29 11:46:13 +08:00
};
}
2015-12-29 21:18:27 +08:00
componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
2016-01-06 11:45:47 +08:00
this.setState({ value: nextProps.value || [] });
2015-12-29 21:18:27 +08:00
}
}
handleChange = (value, selectedOptions) => {
2015-12-29 21:18:27 +08:00
this.setValue(value, selectedOptions);
}
handlePopupVisibleChange = (popupVisible) => {
2015-12-29 21:18:27 +08:00
this.setState({ popupVisible });
this.props.onPopupVisibleChange(popupVisible);
}
setValue = (value, selectedOptions = []) => {
2015-12-29 21:18:27 +08:00
if (!('value' in this.props)) {
this.setState({ value });
}
2015-12-29 11:46:13 +08:00
this.props.onChange(value, selectedOptions);
}
getLabel() {
const { options, displayRender } = this.props;
const label = arrayTreeFilter(options, (o, level) => o.value === this.state.value[level])
.map(o => o.label);
return displayRender(label);
}
clearSelection = (e) => {
2015-12-29 21:18:27 +08:00
e.preventDefault();
2015-12-29 22:34:23 +08:00
e.stopPropagation();
2015-12-29 21:18:27 +08:00
this.setValue([]);
this.setState({ popupVisible: false });
}
2015-12-29 11:46:13 +08:00
render() {
2016-03-02 22:04:54 +08:00
const { prefixCls, children, placeholder, size, disabled,
className, style, allowClear, ...otherProps } = this.props;
2015-12-29 18:31:48 +08:00
const sizeCls = classNames({
'ant-input-lg': size === 'large',
'ant-input-sm': size === 'small',
});
const clearIcon = (allowClear && !disabled && this.state.value.length > 0) ?
2015-12-29 21:18:27 +08:00
<Icon type="cross-circle"
className={`${prefixCls}-picker-clear`}
onClick={this.clearSelection} /> : null;
2015-12-29 22:34:23 +08:00
const arrowCls = classNames({
[`${prefixCls}-picker-arrow`]: true,
[`${prefixCls}-picker-arrow-expand`]: this.state.popupVisible,
});
2016-01-05 11:31:22 +08:00
const pickerCls = classNames({
[className]: !!className,
2016-01-05 11:31:22 +08:00
[`${prefixCls}-picker`]: true,
[`${prefixCls}-picker-disabled`]: disabled,
});
2016-03-03 14:57:26 +08:00
// Fix bug of https://github.com/facebook/react/pull/5004
delete otherProps.onChange;
2015-12-29 11:46:13 +08:00
return (
<RcCascader {...this.props}
2015-12-29 21:18:27 +08:00
value={this.state.value}
popupVisible={this.state.popupVisible}
onPopupVisibleChange={this.handlePopupVisibleChange}
onChange={this.handleChange}>
2015-12-29 11:46:13 +08:00
{children ||
2016-01-04 19:23:19 +08:00
<span
2016-03-02 21:44:38 +08:00
style={style}
2016-01-05 11:31:22 +08:00
className={pickerCls}>
2016-03-02 22:04:54 +08:00
<Input {...otherProps}
placeholder={placeholder}
2015-12-29 21:18:27 +08:00
className={`${prefixCls}-input ant-input ${sizeCls}`}
2016-01-05 14:42:06 +08:00
style={{ width: '100%' }}
2015-12-29 21:18:27 +08:00
value={this.getLabel()}
2016-01-05 11:31:22 +08:00
disabled={disabled}
2015-12-29 21:18:27 +08:00
readOnly />
{clearIcon}
2015-12-29 22:34:23 +08:00
<Icon type="down" className={arrowCls} />
2015-12-29 21:18:27 +08:00
</span>
}
</RcCascader>
2015-12-29 11:46:13 +08:00
);
}
}
Cascader.defaultProps = {
2015-12-29 11:46:13 +08:00
prefixCls: 'ant-cascader',
placeholder: '请选择',
transitionName: 'slide-up',
2016-02-19 11:31:45 +08:00
popupPlacement: 'bottomLeft',
2015-12-29 11:46:13 +08:00
onChange() {},
options: [],
displayRender(label) {
return label.join(' / ');
},
2016-01-05 11:31:22 +08:00
disabled: false,
allowClear: true,
2015-12-29 21:18:27 +08:00
onPopupVisibleChange() {},
2015-12-29 11:46:13 +08:00
};