@react-awesome-query-builder/antd
Version:
User-friendly query builder for React. AntDesign widgets
93 lines (83 loc) • 2.98 kB
JSX
import React, { Component } from "react";
import PropTypes from "prop-types";
import { Select } from "antd";
import {calcTextWidth, SELECT_WIDTH_OFFSET_RIGHT} from "../../utils/domUtils";
import omit from "lodash/omit";
import { Utils } from "@react-awesome-query-builder/ui";
const { useOnPropsChanged } = Utils.ReactUtils;
const { mapListValues } = Utils.ListUtils;
const Option = Select.Option;
export default class MultiSelectWidget extends Component {
static propTypes = {
setValue: PropTypes.func.isRequired,
config: PropTypes.object.isRequired,
value: PropTypes.array,
field: PropTypes.any,
placeholder: PropTypes.string,
customProps: PropTypes.object,
fieldDefinition: PropTypes.object,
readonly: PropTypes.bool,
// from fieldSettings:
listValues: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
allowCustomValues: PropTypes.bool,
};
constructor(props) {
super(props);
useOnPropsChanged(this);
this.onPropsChanged(props);
}
onPropsChanged(nextProps) {
const {listValues} = nextProps;
let optionsMaxWidth = 0;
mapListValues(listValues, ({title, value}) => {
optionsMaxWidth = Math.max(optionsMaxWidth, calcTextWidth(title, null));
});
if (!isNaN(optionsMaxWidth) && optionsMaxWidth) {
this.optionsMaxWidth = optionsMaxWidth;
}
this.options = mapListValues(listValues, ({title, value}) => {
return (<Option key={value} value={value}>{title}</Option>);
});
}
handleChange = (val) => {
if (val && !val.length)
val = undefined; //not allow []
this.props.setValue(val);
};
filterOption = (input, option) => {
const dataForFilter = option.children || option.value;
return dataForFilter.toLowerCase().indexOf(input.toLowerCase()) >= 0;
};
render() {
const {config, placeholder, allowCustomValues, customProps, value, readonly} = this.props;
const {renderSize} = config.settings;
const placeholderWidth = calcTextWidth(placeholder);
const dropdownEmptyWidth = placeholderWidth ? placeholderWidth + SELECT_WIDTH_OFFSET_RIGHT : null;
const aValue = value && value.length ? value : undefined;
const width = aValue ? null : dropdownEmptyWidth;
const dropdownWidth = this.optionsMaxWidth ? this.optionsMaxWidth + SELECT_WIDTH_OFFSET_RIGHT : null;
const customSelectProps = omit(customProps, ["showCheckboxes"]);
return (
<Select
disabled={readonly}
mode={allowCustomValues ? "tags" : "multiple"}
style={{
minWidth: width,
width: width,
}}
dropdownStyle={{
width: dropdownWidth,
}}
key={"widget-multiselect"}
popupMatchSelectWidth={false}
placeholder={placeholder}
size={renderSize}
value={aValue}
onChange={this.handleChange}
filterOption={this.filterOption}
{...customSelectProps}
>{this.options}
</Select>
);
}
}