import PropTypes from 'prop-types'; import React from 'react'; import { Helmet } from 'react-helmet'; import { withTranslation } from 'react-i18next'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import classNames from 'classnames'; import find from 'lodash/find'; import * as ProjectActions from '../../actions/project'; import * as ProjectsActions from '../../actions/projects'; import * as CollectionsActions from '../../actions/collections'; import * as ToastActions from '../../actions/toast'; import * as SortingActions from '../../actions/sorting'; import getSortedCollections from '../../selectors/collections'; import Loader from '../../../App/components/loader'; import Overlay from '../../../App/components/Overlay'; import AddToCollectionSketchList from '../AddToCollectionSketchList'; import { SketchSearchbar } from '../Searchbar'; import CollectionListRow from './CollectionListRow'; import ArrowUpIcon from '../../../../images/sort-arrow-up.svg'; import ArrowDownIcon from '../../../../images/sort-arrow-down.svg'; class CollectionList extends React.Component { constructor(props) { super(props); if (props.projectId) { props.getProject(props.projectId); } this.props.getCollections(this.props.username); this.props.resetSorting(); this.state = { hasLoadedData: false, addingSketchesToCollectionId: null, }; } componentDidUpdate(prevProps, prevState) { if (prevProps.loading === true && this.props.loading === false) { // eslint-disable-next-line react/no-did-update-set-state this.setState({ hasLoadedData: true, }); } } getTitle() { if (this.props.username === this.props.user.username) { return this.props.t('CollectionList.Title'); } return this.props.t('CollectionList.AnothersTitle', { anotheruser: this.props.username }); } showAddSketches = (collectionId) => { this.setState({ addingSketchesToCollectionId: collectionId, }); } hideAddSketches = () => { this.setState({ addingSketchesToCollectionId: null, }); } hasCollections() { return (!this.props.loading || this.state.hasLoadedData) && this.props.collections.length > 0; } _renderLoader() { if (this.props.loading && !this.state.hasLoadedData) return ; return null; } _renderEmptyTable() { if (!this.props.loading && this.props.collections.length === 0) { return (

{this.props.t('CollectionList.NoCollections')}

); } return null; } _getButtonLabel = (fieldName, displayName) => { const { field, direction } = this.props.sorting; let buttonLabel; if (field !== fieldName) { if (field === 'name') { buttonLabel = this.props.t('CollectionList.ButtonLabelAscendingARIA', { displayName }); } else { buttonLabel = this.props.t('CollectionList.ButtonLabelDescendingARIA', { displayName }); } } else if (direction === SortingActions.DIRECTION.ASC) { buttonLabel = this.props.t('CollectionList.ButtonLabelDescendingARIA', { displayName }); } else { buttonLabel = this.props.t('CollectionList.ButtonLabelAscendingARIA', { displayName }); } return buttonLabel; } _renderFieldHeader = (fieldName, displayName) => { const { field, direction } = this.props.sorting; const headerClass = classNames({ 'sketches-table__header': true, 'sketches-table__header--selected': field === fieldName }); const buttonLabel = this._getButtonLabel(fieldName, displayName); return ( ); } render() { const username = this.props.username !== undefined ? this.props.username : this.props.user.username; const { mobile } = this.props; return (
{this.getTitle()} {this._renderLoader()} {this._renderEmptyTable()} {this.hasCollections() && {this._renderFieldHeader('name', this.props.t('CollectionList.HeaderName'))} {this._renderFieldHeader('createdAt', this.props.t('CollectionList.HeaderCreatedAt', { context: mobile ? 'mobile' : '' }))} {this._renderFieldHeader('updatedAt', this.props.t('CollectionList.HeaderUpdatedAt', { context: mobile ? 'mobile' : '' }))} {this._renderFieldHeader('numItems', this.props.t('CollectionList.HeaderNumItems', { context: mobile ? 'mobile' : '' }))} {this.props.collections.map(collection => ( this.showAddSketches(collection.id)} />))}
} { this.state.addingSketchesToCollectionId && ( } closeOverlay={this.hideAddSketches} isFixedHeight > ) }
); } } CollectionList.propTypes = { user: PropTypes.shape({ username: PropTypes.string, authenticated: PropTypes.bool.isRequired }).isRequired, projectId: PropTypes.string, getCollections: PropTypes.func.isRequired, getProject: PropTypes.func.isRequired, collections: PropTypes.arrayOf(PropTypes.shape({ id: PropTypes.string.isRequired, name: PropTypes.string.isRequired, description: PropTypes.string, createdAt: PropTypes.string.isRequired, updatedAt: PropTypes.string.isRequired, })).isRequired, username: PropTypes.string, loading: PropTypes.bool.isRequired, toggleDirectionForField: PropTypes.func.isRequired, resetSorting: PropTypes.func.isRequired, sorting: PropTypes.shape({ field: PropTypes.string.isRequired, direction: PropTypes.string.isRequired }).isRequired, project: PropTypes.shape({ id: PropTypes.string, owner: PropTypes.shape({ id: PropTypes.string }) }), t: PropTypes.func.isRequired, mobile: PropTypes.bool, }; CollectionList.defaultProps = { projectId: undefined, project: { id: undefined, owner: undefined }, username: undefined, mobile: false }; function mapStateToProps(state, ownProps) { return { user: state.user, collections: getSortedCollections(state), sorting: state.sorting, loading: state.loading, project: state.project, projectId: ownProps && ownProps.params ? ownProps.params.project_id : null, }; } function mapDispatchToProps(dispatch) { return bindActionCreators( Object.assign({}, CollectionsActions, ProjectsActions, ProjectActions, ToastActions, SortingActions), dispatch ); } export default withTranslation()(connect(mapStateToProps, mapDispatchToProps)(CollectionList));