mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-22 16:53:35 -05:00
224 lines
6.3 KiB
JavaScript
224 lines
6.3 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { SearchIcon } from '@patternfly/react-icons';
|
|
import {
|
|
Button,
|
|
ButtonVariant,
|
|
Chip,
|
|
InputGroup,
|
|
Modal,
|
|
} from '@patternfly/react-core';
|
|
import { withI18n } from '@lingui/react';
|
|
import { t } from '@lingui/macro';
|
|
|
|
import { withNetwork } from '../../contexts/Network';
|
|
import PaginatedDataList from '../PaginatedDataList';
|
|
import CheckboxListItem from '../ListItem';
|
|
import SelectedList from '../SelectedList';
|
|
import { getQSConfig, parseNamespacedQueryString } from '../../util/qs';
|
|
|
|
const paginationStyling = {
|
|
paddingLeft: '0',
|
|
justifyContent: 'flex-end',
|
|
borderRight: '1px solid #ebebeb',
|
|
borderBottom: '1px solid #ebebeb',
|
|
borderTop: '0'
|
|
};
|
|
|
|
class Lookup extends React.Component {
|
|
constructor (props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
isModalOpen: false,
|
|
lookupSelectedItems: [...props.value] || [],
|
|
results: [],
|
|
count: 0,
|
|
error: null,
|
|
};
|
|
this.qsConfig = getQSConfig('lookup', {
|
|
page: 1,
|
|
page_size: 5,
|
|
order_by: props.sortedColumnKey,
|
|
});
|
|
this.handleModalToggle = this.handleModalToggle.bind(this);
|
|
this.toggleSelected = this.toggleSelected.bind(this);
|
|
this.saveModal = this.saveModal.bind(this);
|
|
this.getData = this.getData.bind(this);
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.getData();
|
|
}
|
|
|
|
componentDidUpdate (prevProps) {
|
|
const { location } = this.props;
|
|
if (location !== prevProps.location) {
|
|
this.getData();
|
|
}
|
|
}
|
|
|
|
async getData () {
|
|
const { getItems, handleHttpError, location } = this.props;
|
|
const queryParams = parseNamespacedQueryString(this.qsConfig, location.search);
|
|
|
|
this.setState({ error: false });
|
|
try {
|
|
const { data } = await getItems(queryParams);
|
|
const { results, count } = data;
|
|
|
|
this.setState({
|
|
results,
|
|
count
|
|
});
|
|
} catch (err) {
|
|
handleHttpError(err) || this.setState({ error: true });
|
|
}
|
|
}
|
|
|
|
toggleSelected (row) {
|
|
const { name, onLookupSave } = this.props;
|
|
const { lookupSelectedItems: updatedSelectedItems, isModalOpen } = this.state;
|
|
|
|
const selectedIndex = updatedSelectedItems
|
|
.findIndex(selectedRow => selectedRow.id === row.id);
|
|
|
|
if (selectedIndex > -1) {
|
|
updatedSelectedItems.splice(selectedIndex, 1);
|
|
this.setState({ lookupSelectedItems: updatedSelectedItems });
|
|
} else {
|
|
this.setState(prevState => ({
|
|
lookupSelectedItems: [...prevState.lookupSelectedItems, row]
|
|
}));
|
|
}
|
|
|
|
// Updates the selected items from parent state
|
|
// This handles the case where the user removes chips from the lookup input
|
|
// while the modal is closed
|
|
if (!isModalOpen) {
|
|
onLookupSave(updatedSelectedItems, name);
|
|
}
|
|
}
|
|
|
|
handleModalToggle () {
|
|
const { isModalOpen } = this.state;
|
|
const { value } = this.props;
|
|
// Resets the selected items from parent state whenever modal is opened
|
|
// This handles the case where the user closes/cancels the modal and
|
|
// opens it again
|
|
if (!isModalOpen) {
|
|
this.setState({ lookupSelectedItems: [...value] });
|
|
}
|
|
this.setState((prevState) => ({
|
|
isModalOpen: !prevState.isModalOpen,
|
|
}));
|
|
}
|
|
|
|
saveModal () {
|
|
const { onLookupSave, name } = this.props;
|
|
const { lookupSelectedItems } = this.state;
|
|
onLookupSave(lookupSelectedItems, name);
|
|
this.handleModalToggle();
|
|
}
|
|
|
|
render () {
|
|
const {
|
|
isModalOpen,
|
|
lookupSelectedItems,
|
|
error,
|
|
results,
|
|
count,
|
|
} = this.state;
|
|
const { id, lookupHeader, value, columns, i18n } = this.props;
|
|
|
|
const header = lookupHeader || i18n._(t`items`);
|
|
|
|
const chips = value ? (
|
|
<div className="pf-c-chip-group">
|
|
{value.map(chip => (
|
|
<Chip key={chip.id} onClick={() => this.toggleSelected(chip)}>
|
|
{chip.name}
|
|
</Chip>
|
|
))}
|
|
</div>
|
|
) : null;
|
|
|
|
return (
|
|
<Fragment>
|
|
<InputGroup className="awx-lookup">
|
|
<Button
|
|
aria-label="Search"
|
|
id={id}
|
|
onClick={this.handleModalToggle}
|
|
variant={ButtonVariant.tertiary}
|
|
>
|
|
<SearchIcon />
|
|
</Button>
|
|
<div className="pf-c-form-control">
|
|
{chips}
|
|
</div>
|
|
</InputGroup>
|
|
<Modal
|
|
className="awx-c-modal"
|
|
title={i18n._(t`Select ${header}`)}
|
|
isOpen={isModalOpen}
|
|
onClose={this.handleModalToggle}
|
|
actions={[
|
|
<Button key="save" variant="primary" onClick={this.saveModal} style={(results.length === 0) ? { display: 'none' } : {}}>{i18n._(t`Save`)}</Button>,
|
|
<Button key="cancel" variant="secondary" onClick={this.handleModalToggle}>{(results.length === 0) ? i18n._(t`Close`) : i18n._(t`Cancel`)}</Button>
|
|
]}
|
|
>
|
|
<PaginatedDataList
|
|
items={results}
|
|
itemCount={count}
|
|
itemName={lookupHeader}
|
|
qsConfig={this.qsConfig}
|
|
toolbarColumns={columns}
|
|
renderItem={item => (
|
|
<CheckboxListItem
|
|
key={item.id}
|
|
itemId={item.id}
|
|
name={item.name}
|
|
isSelected={lookupSelectedItems.some(i => i.id === item.id)}
|
|
onSelect={() => this.toggleSelected(item)}
|
|
/>
|
|
)}
|
|
alignToolbarLeft
|
|
showPageSizeOptions={false}
|
|
paginationStyling={paginationStyling}
|
|
/>
|
|
{lookupSelectedItems.length > 0 && (
|
|
<SelectedList
|
|
label={i18n._(t`Selected`)}
|
|
selected={lookupSelectedItems}
|
|
showOverflowAfter={5}
|
|
onRemove={this.toggleSelected}
|
|
/>
|
|
)}
|
|
{ error ? <div>error</div> : '' }
|
|
</Modal>
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
Lookup.propTypes = {
|
|
id: PropTypes.string,
|
|
getItems: PropTypes.func.isRequired,
|
|
lookupHeader: PropTypes.string,
|
|
name: PropTypes.string, // TODO: delete, unused ?
|
|
onLookupSave: PropTypes.func.isRequired,
|
|
value: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
sortedColumnKey: PropTypes.string.isRequired,
|
|
};
|
|
|
|
Lookup.defaultProps = {
|
|
id: 'lookup-search',
|
|
lookupHeader: null,
|
|
name: null,
|
|
};
|
|
|
|
export { Lookup as _Lookup };
|
|
export default withI18n()(withNetwork(withRouter(Lookup)));
|