mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
296 lines
8.0 KiB
JavaScript
296 lines
8.0 KiB
JavaScript
import _ from 'lodash';
|
|
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import FormInputButton from 'Components/Form/FormInputButton';
|
|
import FormInputGroup from 'Components/Form/FormInputGroup';
|
|
import IndexersSelectInputConnector from 'Components/Form/IndexersSelectInputConnector';
|
|
import NewznabCategorySelectInputConnector from 'Components/Form/NewznabCategorySelectInputConnector';
|
|
import Icon from 'Components/Icon';
|
|
import keyboardShortcuts from 'Components/keyboardShortcuts';
|
|
import SpinnerButton from 'Components/Link/SpinnerButton';
|
|
import PageContentFooter from 'Components/Page/PageContentFooter';
|
|
import { icons, inputTypes, kinds } from 'Helpers/Props';
|
|
import translate from 'Utilities/String/translate';
|
|
import QueryParameterModal from './QueryParameterModal';
|
|
import SearchFooterLabel from './SearchFooterLabel';
|
|
import styles from './SearchFooter.css';
|
|
|
|
class SearchFooter extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
const {
|
|
defaultIndexerIds,
|
|
defaultCategories,
|
|
defaultSearchQuery,
|
|
defaultSearchType
|
|
} = props;
|
|
|
|
this.state = {
|
|
isQueryParameterModalOpen: false,
|
|
queryModalOptions: null,
|
|
searchType: defaultSearchType,
|
|
searchingReleases: false,
|
|
searchQuery: defaultSearchQuery || '',
|
|
searchIndexerIds: defaultIndexerIds,
|
|
searchCategories: defaultCategories
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
const {
|
|
searchIndexerIds,
|
|
searchCategories,
|
|
searchQuery
|
|
} = this.state;
|
|
|
|
if (searchQuery !== '' || searchCategories.length > 0 || searchIndexerIds.length > 0) {
|
|
this.onSearchPress();
|
|
}
|
|
|
|
this.props.bindShortcut('enter', this.onSearchPress, { isGlobal: true });
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
const {
|
|
isFetching,
|
|
defaultIndexerIds,
|
|
defaultCategories,
|
|
defaultSearchQuery,
|
|
defaultSearchType,
|
|
searchError
|
|
} = this.props;
|
|
|
|
const {
|
|
searchIndexerIds,
|
|
searchCategories,
|
|
searchType
|
|
} = this.state;
|
|
|
|
const newState = {};
|
|
|
|
if (defaultSearchQuery && defaultSearchQuery !== prevProps.defaultSearchQuery) {
|
|
newState.searchQuery = defaultSearchQuery;
|
|
}
|
|
|
|
if (searchType !== defaultSearchType) {
|
|
newState.searchType = defaultSearchType;
|
|
}
|
|
|
|
if (searchIndexerIds !== defaultIndexerIds) {
|
|
newState.searchIndexerIds = defaultIndexerIds;
|
|
}
|
|
|
|
if (searchCategories !== defaultCategories) {
|
|
newState.searchCategories = defaultCategories;
|
|
}
|
|
|
|
if (prevProps.isFetching && !isFetching && !searchError) {
|
|
newState.searchingReleases = false;
|
|
}
|
|
|
|
if (!_.isEmpty(newState)) {
|
|
this.setState(newState);
|
|
}
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onQueryParameterModalOpenClick = () => {
|
|
this.setState({
|
|
queryModalOptions: {
|
|
name: 'queryParameters'
|
|
},
|
|
isQueryParameterModalOpen: true
|
|
});
|
|
}
|
|
|
|
onQueryParameterModalClose = () => {
|
|
this.setState({ isQueryParameterModalOpen: false });
|
|
}
|
|
|
|
onSearchPress = () => {
|
|
this.props.onSearchPress(this.state.searchQuery, this.state.searchIndexerIds, this.state.searchCategories, this.state.searchType);
|
|
}
|
|
|
|
onSearchInputChange = ({ value }) => {
|
|
this.setState({ searchQuery: value });
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
isFetching,
|
|
isPopulated,
|
|
isGrabbing,
|
|
hasIndexers,
|
|
onInputChange,
|
|
onBulkGrabPress,
|
|
itemCount,
|
|
selectedCount
|
|
} = this.props;
|
|
|
|
const {
|
|
searchQuery,
|
|
searchIndexerIds,
|
|
searchCategories,
|
|
isQueryParameterModalOpen,
|
|
queryModalOptions,
|
|
searchType
|
|
} = this.state;
|
|
|
|
let icon = icons.SEARCH;
|
|
|
|
switch (searchType) {
|
|
case 'book':
|
|
icon = icons.BOOK;
|
|
break;
|
|
case 'tvsearch':
|
|
icon = icons.TV;
|
|
break;
|
|
case 'movie':
|
|
icon = icons.FILM;
|
|
break;
|
|
case 'music':
|
|
icon = icons.AUDIO;
|
|
break;
|
|
default:
|
|
icon = icons.SEARCH;
|
|
}
|
|
|
|
let footerLabel = `Search ${searchIndexerIds.length === 0 ? 'all' : searchIndexerIds.length} Indexers`;
|
|
|
|
if (isPopulated) {
|
|
footerLabel = selectedCount === 0 ? `Found ${itemCount} releases` : `Selected ${selectedCount} of ${itemCount} releases`;
|
|
}
|
|
|
|
return (
|
|
<PageContentFooter>
|
|
<div className={styles.inputContainer}>
|
|
<SearchFooterLabel
|
|
label={translate('Query')}
|
|
isSaving={false}
|
|
/>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.TEXT}
|
|
name="searchQuery"
|
|
value={searchQuery}
|
|
buttons={
|
|
<FormInputButton onPress={this.onQueryParameterModalOpenClick}>
|
|
<Icon
|
|
name={icon}
|
|
/>
|
|
</FormInputButton>}
|
|
onChange={this.onSearchInputChange}
|
|
onFocus={this.onApikeyFocus}
|
|
isDisabled={isFetching}
|
|
{...searchQuery}
|
|
/>
|
|
</div>
|
|
|
|
<div className={styles.indexerContainer}>
|
|
<SearchFooterLabel
|
|
label={translate('Indexers')}
|
|
isSaving={false}
|
|
/>
|
|
|
|
<IndexersSelectInputConnector
|
|
name='searchIndexerIds'
|
|
value={searchIndexerIds}
|
|
isDisabled={isFetching}
|
|
onChange={onInputChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className={styles.indexerContainer}>
|
|
<SearchFooterLabel
|
|
label={translate('Categories')}
|
|
isSaving={false}
|
|
/>
|
|
|
|
<NewznabCategorySelectInputConnector
|
|
name='searchCategories'
|
|
value={searchCategories}
|
|
isDisabled={isFetching}
|
|
onChange={onInputChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className={styles.buttonContainer}>
|
|
<div className={styles.buttonContainerContent}>
|
|
<SearchFooterLabel
|
|
className={styles.selectedReleasesLabel}
|
|
label={footerLabel}
|
|
isSaving={false}
|
|
/>
|
|
|
|
<div className={styles.buttons}>
|
|
|
|
{
|
|
isPopulated &&
|
|
<SpinnerButton
|
|
className={styles.searchButton}
|
|
kind={kinds.SUCCESS}
|
|
isSpinning={isGrabbing}
|
|
isDisabled={isFetching || !hasIndexers || selectedCount === 0}
|
|
onPress={onBulkGrabPress}
|
|
>
|
|
{translate('Grab Releases')}
|
|
</SpinnerButton>
|
|
}
|
|
|
|
<SpinnerButton
|
|
className={styles.searchButton}
|
|
isSpinning={isFetching}
|
|
isDisabled={isFetching || !hasIndexers}
|
|
onPress={this.onSearchPress}
|
|
>
|
|
{translate('Search')}
|
|
</SpinnerButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<QueryParameterModal
|
|
isOpen={isQueryParameterModalOpen}
|
|
{...queryModalOptions}
|
|
name='queryParameters'
|
|
value={searchQuery}
|
|
searchType={searchType}
|
|
onSearchInputChange={this.onSearchInputChange}
|
|
onInputChange={onInputChange}
|
|
onModalClose={this.onQueryParameterModalClose}
|
|
/>
|
|
</PageContentFooter>
|
|
);
|
|
}
|
|
}
|
|
|
|
SearchFooter.propTypes = {
|
|
defaultIndexerIds: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
defaultCategories: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
defaultSearchQuery: PropTypes.string.isRequired,
|
|
defaultSearchType: PropTypes.string.isRequired,
|
|
selectedCount: PropTypes.number.isRequired,
|
|
itemCount: PropTypes.number.isRequired,
|
|
isFetching: PropTypes.bool.isRequired,
|
|
isPopulated: PropTypes.bool.isRequired,
|
|
isGrabbing: PropTypes.bool.isRequired,
|
|
onSearchPress: PropTypes.func.isRequired,
|
|
onBulkGrabPress: PropTypes.func.isRequired,
|
|
hasIndexers: PropTypes.bool.isRequired,
|
|
onInputChange: PropTypes.func.isRequired,
|
|
searchError: PropTypes.object,
|
|
bindShortcut: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default keyboardShortcuts(SearchFooter);
|