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 AddNewAuthorSearchResultConnector from './Author/AddNewAuthorSearchResultConnector'; import AddNewBookSearchResultConnector from './Book/AddNewBookSearchResultConnector'; 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 (
{ isFetching && } { !isFetching && !!error ?
Failed to load search results, please try again.
{getErrorMessage(error)}
: null } { !isFetching && !error && !!items.length &&
{ items.map((item) => { if (item.author) { const author = item.author; return ( ); } else if (item.book) { const book = item.book; return ( ); } return null; }) }
} { !isFetching && !error && !items.length && !!term &&
{translate('CouldntFindAnyResultsForTerm', [term])}
You can also search using the Goodreads ID of a book (e.g. edition:656), work (e.g. work:4912783) or author (e.g. author:128382), the isbn (e.g. isbn:067003469X) or the asin (e.g. asin:B00JCDK5ME)
} { !term &&
{translate('ItsEasyToAddANewAuthorOrBookJustStartTypingTheNameOfTheItemYouWantToAdd')}
You can also search using the Goodreads ID of a book (e.g. edition:656), work (e.g. work:4912783) or author (e.g. author:128382), the isbn (e.g. isbn:067003469X) or the asin (e.g. asin:B00JCDK5ME)
}
); } } 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;