You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
213 lines
5.9 KiB
213 lines
5.9 KiB
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import TextInput from 'Components/Form/TextInput';
|
|
import Icon from 'Components/Icon';
|
|
import Button from 'Components/Link/Button';
|
|
import Link from 'Components/Link/Link';
|
|
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
|
|
import PageContent from 'Components/Page/PageContent';
|
|
import PageContentBody from 'Components/Page/PageContentBody';
|
|
import { icons } from 'Helpers/Props';
|
|
import getErrorMessage from 'Utilities/Object/getErrorMessage';
|
|
import translate from 'Utilities/String/translate';
|
|
import AddNewAlbumSearchResultConnector from './Album/AddNewAlbumSearchResultConnector';
|
|
import AddNewArtistSearchResultConnector from './Artist/AddNewArtistSearchResultConnector';
|
|
import styles from './AddNewItem.css';
|
|
|
|
class AddNewItem extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
this.state = {
|
|
term: props.term || '',
|
|
isFetching: false
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
const term = this.state.term;
|
|
|
|
if (term) {
|
|
this.props.onSearchChange(term);
|
|
}
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
const {
|
|
term,
|
|
isFetching
|
|
} = this.props;
|
|
|
|
if (term && term !== prevProps.term) {
|
|
this.setState({
|
|
term,
|
|
isFetching: true
|
|
});
|
|
this.props.onSearchChange(term);
|
|
} else if (isFetching !== prevProps.isFetching) {
|
|
this.setState({
|
|
isFetching
|
|
});
|
|
}
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onSearchInputChange = ({ value }) => {
|
|
const hasValue = !!value.trim();
|
|
|
|
this.setState({ term: value, isFetching: hasValue }, () => {
|
|
if (hasValue) {
|
|
this.props.onSearchChange(value);
|
|
} else {
|
|
this.props.onClearSearch();
|
|
}
|
|
});
|
|
};
|
|
|
|
onClearSearchPress = () => {
|
|
this.setState({ term: '' });
|
|
this.props.onClearSearch();
|
|
};
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
error,
|
|
items
|
|
} = this.props;
|
|
|
|
const term = this.state.term;
|
|
const isFetching = this.state.isFetching;
|
|
|
|
return (
|
|
<PageContent title={translate('AddNewItem')}>
|
|
<PageContentBody>
|
|
<div className={styles.searchContainer}>
|
|
<div className={styles.searchIconContainer}>
|
|
<Icon
|
|
name={icons.SEARCH}
|
|
size={20}
|
|
/>
|
|
</div>
|
|
|
|
<TextInput
|
|
className={styles.searchInput}
|
|
name="searchBox"
|
|
value={term}
|
|
placeholder={translate('SearchBoxPlaceHolder')}
|
|
autoFocus={true}
|
|
onChange={this.onSearchInputChange}
|
|
/>
|
|
|
|
<Button
|
|
className={styles.clearLookupButton}
|
|
onPress={this.onClearSearchPress}
|
|
>
|
|
<Icon
|
|
name={icons.REMOVE}
|
|
size={20}
|
|
/>
|
|
</Button>
|
|
</div>
|
|
|
|
{
|
|
isFetching &&
|
|
<LoadingIndicator />
|
|
}
|
|
|
|
{
|
|
!isFetching && !!error ?
|
|
<div className={styles.message}>
|
|
<div className={styles.helpText}>
|
|
{translate('FailedLoadingSearchResults')}
|
|
</div>
|
|
<div>{getErrorMessage(error)}</div>
|
|
</div> : null
|
|
}
|
|
|
|
{
|
|
!isFetching && !error && !!items.length &&
|
|
<div className={styles.searchResults}>
|
|
{
|
|
items.map((item) => {
|
|
if (item.artist) {
|
|
const artist = item.artist;
|
|
return (
|
|
<AddNewArtistSearchResultConnector
|
|
key={item.id}
|
|
{...artist}
|
|
/>
|
|
);
|
|
} else if (item.album) {
|
|
const album = item.album;
|
|
return (
|
|
<AddNewAlbumSearchResultConnector
|
|
key={item.id}
|
|
isExistingAlbum={'id' in album && album.id !== 0}
|
|
isExistingArtist={'id' in album.artist && album.artist.id !== 0}
|
|
{...album}
|
|
/>
|
|
);
|
|
}
|
|
return null;
|
|
})
|
|
}
|
|
</div>
|
|
}
|
|
|
|
{
|
|
!isFetching && !error && !items.length && !!term &&
|
|
<div className={styles.message}>
|
|
<div className={styles.noResults}>
|
|
{translate('CouldntFindAnyResultsForTerm'[term])}
|
|
</div>
|
|
<div>
|
|
You can also search using the
|
|
<Link to="https://musicbrainz.org/search"> MusicBrainz ID </Link>
|
|
of an artist or release group e.g. lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
{
|
|
!term &&
|
|
<div className={styles.message}>
|
|
<div className={styles.helpText}>
|
|
{translate('ItsEasyToAddANewArtistJustStartTypingTheNameOfTheArtistYouWantToAdd')}
|
|
</div>
|
|
<div>
|
|
You can also search using the
|
|
<Link to="https://musicbrainz.org/search"> MusicBrainz ID </Link>
|
|
of an artist e.g. lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
<div />
|
|
</PageContentBody>
|
|
</PageContent>
|
|
);
|
|
}
|
|
}
|
|
|
|
AddNewItem.propTypes = {
|
|
term: PropTypes.string,
|
|
isFetching: PropTypes.bool.isRequired,
|
|
error: PropTypes.object,
|
|
isAdding: PropTypes.bool.isRequired,
|
|
addError: PropTypes.object,
|
|
items: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
onSearchChange: PropTypes.func.isRequired,
|
|
onClearSearch: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default AddNewItem;
|