packages/web/src/components/list/SingleDropdownList.js
import React, { Component } from 'react';
import {
addComponent,
removeComponent,
watchComponent,
updateQuery,
setQueryOptions,
setQueryListener,
} from '@appbaseio/reactivecore/lib/actions';
import {
getQueryOptions,
pushToAndClause,
checkValueChange,
checkPropChange,
checkSomePropChange,
getClassName,
} from '@appbaseio/reactivecore/lib/utils/helper';
import types from '@appbaseio/reactivecore/lib/utils/types';
import { getAggsQuery, getCompositeAggsQuery } from './utils';
import Title from '../../styles/Title';
import Container from '../../styles/Container';
import Button, { loadMoreContainer } from '../../styles/Button';
import Dropdown from '../shared/Dropdown';
import { connect } from '../../utils';
class SingleDropdownList extends Component {
constructor(props) {
super(props);
this.state = {
currentValue: '',
options: [],
after: {}, // for composite aggs
isLastBucket: false,
};
this.locked = false;
this.internalComponent = `${props.componentId}__internal`;
props.setQueryListener(props.componentId, props.onQueryChange, null);
}
componentWillMount() {
this.props.addComponent(this.internalComponent);
this.props.addComponent(this.props.componentId);
this.updateQueryOptions(this.props);
this.setReact(this.props);
if (this.props.selectedValue) {
this.setValue(this.props.selectedValue);
} else if (this.props.defaultSelected) {
this.setValue(this.props.defaultSelected);
}
}
componentWillReceiveProps(nextProps) {
checkPropChange(this.props.react, nextProps.react, () => this.setReact(nextProps));
checkPropChange(this.props.options, nextProps.options, () => {
const { showLoadMore, dataField } = nextProps;
const { options } = this.state;
if (showLoadMore) {
// append options with showLoadMore
const { buckets } = nextProps.options[dataField];
const nextOptions = [
...options,
...buckets.map(bucket => ({
key: bucket.key[dataField],
doc_count: bucket.doc_count,
})),
];
const after = nextProps.options[dataField].after_key;
// detect the last bucket by checking if the next set of buckets were empty
const isLastBucket = !buckets.length;
this.setState({
after: {
after,
},
isLastBucket,
options: nextOptions,
});
} else {
this.setState({
options: nextProps.options[nextProps.dataField]
? nextProps.options[nextProps.dataField].buckets
: [],
});
}
});
checkSomePropChange(this.props, nextProps, ['size', 'sortBy'], () =>
this.updateQueryOptions(nextProps),
);
checkPropChange(this.props.dataField, nextProps.dataField, () => {
this.updateQueryOptions(nextProps);
this.updateQuery(this.state.currentValue, nextProps);
});
if (this.props.defaultSelected !== nextProps.defaultSelected) {
this.setValue(nextProps.defaultSelected);
} else if (this.state.currentValue !== nextProps.selectedValue) {
this.setValue(nextProps.selectedValue || '');
}
}
componentWillUnmount() {
this.props.removeComponent(this.props.componentId);
this.props.removeComponent(this.internalComponent);
}
setReact = (props) => {
const { react } = props;
if (react) {
const newReact = pushToAndClause(react, this.internalComponent);
props.watchComponent(props.componentId, newReact);
} else {
props.watchComponent(props.componentId, {
and: this.internalComponent,
});
}
};
static defaultQuery = (value, props) => {
let query = null;
if (props.selectAllLabel && props.selectAllLabel === value) {
if (props.showMissing) {
query = { match_all: {} };
}
query = {
exists: {
field: props.dataField,
},
};
} else if (value) {
if (props.showMissing && props.missingLabel === value) {
query = {
bool: {
must_not: {
exists: { field: props.dataField },
},
},
};
}
query = {
term: {
[props.dataField]: value,
},
};
}
if (query && props.nestedField) {
return {
query: {
nested: {
path: props.nestedField,
query,
},
},
};
}
return query;
};
setValue = (value, props = this.props) => {
// ignore state updates when component is locked
if (props.beforeValueChange && this.locked) {
return;
}
this.locked = true;
const performUpdate = () => {
this.setState(
{
currentValue: value,
},
() => {
this.updateQuery(value, props);
this.locked = false;
if (props.onValueChange) props.onValueChange(value);
},
);
};
checkValueChange(props.componentId, value, props.beforeValueChange, performUpdate);
};
updateQuery = (value, props) => {
const query = props.customQuery || SingleDropdownList.defaultQuery;
props.updateQuery({
componentId: props.componentId,
query: query(value, props),
value,
label: props.filterLabel,
showFilter: props.showFilter,
URLParams: props.URLParams,
componentType: 'SINGLEDROPDOWNLIST',
});
};
static generateQueryOptions(props, after) {
const queryOptions = getQueryOptions(props);
return props.showLoadMore
? getCompositeAggsQuery(queryOptions, props, after)
: getAggsQuery(queryOptions, props);
}
updateQueryOptions = (props, addAfterKey = false) => {
// when using composite aggs flush the current options for a fresh query
if (props.showLoadMore && !addAfterKey) {
this.setState({
options: [],
});
}
// for a new query due to other changes don't append after to get fresh results
const queryOptions = SingleDropdownList.generateQueryOptions(
props,
addAfterKey ? this.state.after : {},
);
props.setQueryOptions(this.internalComponent, queryOptions);
};
handleLoadMore = () => {
this.updateQueryOptions(this.props, true);
};
render() {
const { showLoadMore, loadMoreLabel } = this.props;
const { isLastBucket } = this.state;
let selectAll = [];
if (this.props.isLoading && this.props.loader) {
return this.props.loader;
}
if (this.state.options.length === 0) {
return null;
}
if (this.props.selectAllLabel) {
selectAll = [
{
key: this.props.selectAllLabel,
},
];
}
return (
<Container style={this.props.style} className={this.props.className}>
{this.props.title && (
<Title className={getClassName(this.props.innerClass, 'title') || null}>
{this.props.title}
</Title>
)}
<Dropdown
innerClass={this.props.innerClass}
items={[
...selectAll,
...this.state.options
.filter(item => String(item.key).trim().length)
.map(item => ({ ...item, key: String(item.key) })),
]}
onChange={this.setValue}
selectedItem={this.state.currentValue}
placeholder={this.props.placeholder}
labelField="key"
showCount={this.props.showCount}
themePreset={this.props.themePreset}
renderListItem={this.props.renderListItem}
showSearch={this.props.showSearch}
transformData={this.props.transformData}
footer={
showLoadMore
&& !isLastBucket && (
<div css={loadMoreContainer}>
<Button onClick={this.handleLoadMore}>{loadMoreLabel}</Button>
</div>
)
}
/>
</Container>
);
}
}
SingleDropdownList.propTypes = {
addComponent: types.funcRequired,
removeComponent: types.funcRequired,
setQueryListener: types.funcRequired,
setQueryOptions: types.funcRequired,
updateQuery: types.funcRequired,
watchComponent: types.funcRequired,
options: types.options,
selectedValue: types.selectedValue,
// component props
beforeValueChange: types.func,
className: types.string,
componentId: types.stringRequired,
customQuery: types.func,
dataField: types.stringRequired,
defaultSelected: types.string,
filterLabel: types.string,
innerClass: types.style,
isLoading: types.bool,
loader: types.title,
onQueryChange: types.func,
onValueChange: types.func,
placeholder: types.string,
react: types.react,
renderListItem: types.func,
transformData: types.func,
selectAllLabel: types.string,
showCount: types.bool,
showFilter: types.bool,
size: types.number,
sortBy: types.sortByWithCount,
style: types.style,
title: types.title,
themePreset: types.themePreset,
URLParams: types.bool,
showMissing: types.bool,
missingLabel: types.string,
showSearch: types.bool,
showLoadMore: types.bool,
loadMoreLabel: types.title,
nestedField: types.string,
};
SingleDropdownList.defaultProps = {
className: null,
placeholder: 'Select a value',
showCount: true,
showFilter: true,
size: 100,
sortBy: 'count',
style: {},
URLParams: false,
showMissing: false,
missingLabel: 'N/A',
showSearch: false,
showLoadMore: false,
loadMoreLabel: 'Load More',
};
const mapStateToProps = (state, props) => ({
options:
props.nestedField && state.aggregations[props.componentId]
? state.aggregations[props.componentId].reactivesearch_nested
: state.aggregations[props.componentId],
selectedValue:
(state.selectedValues[props.componentId]
&& state.selectedValues[props.componentId].value)
|| '',
isLoading: state.isLoading[props.componentId],
themePreset: state.config.themePreset,
});
const mapDispatchtoProps = dispatch => ({
addComponent: component => dispatch(addComponent(component)),
removeComponent: component => dispatch(removeComponent(component)),
setQueryOptions: (component, props) => dispatch(setQueryOptions(component, props)),
setQueryListener: (component, onQueryChange, beforeQueryChange) =>
dispatch(setQueryListener(component, onQueryChange, beforeQueryChange)),
updateQuery: updateQueryObject => dispatch(updateQuery(updateQueryObject)),
watchComponent: (component, react) => dispatch(watchComponent(component, react)),
});
export default connect(
mapStateToProps,
mapDispatchtoProps,
)(SingleDropdownList);