2019-09-09 16:52:14 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import classNames from 'classnames';
|
2019-12-11 14:50:51 +00:00
|
|
|
import find from 'lodash/find';
|
2019-09-09 16:52:14 +00:00
|
|
|
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';
|
2019-12-11 14:50:51 +00:00
|
|
|
import Overlay from '../../../App/components/Overlay';
|
|
|
|
import AddToCollectionSketchList from '../AddToCollectionSketchList';
|
|
|
|
import { SketchSearchbar } from '../Searchbar';
|
|
|
|
|
2019-09-09 16:52:14 +00:00
|
|
|
import CollectionListRow from './CollectionListRow';
|
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import ArrowUpIcon from '../../../../images/sort-arrow-up.svg';
|
|
|
|
import ArrowDownIcon from '../../../../images/sort-arrow-down.svg';
|
2019-09-09 16:52:14 +00:00
|
|
|
|
|
|
|
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();
|
2019-09-11 19:13:34 +00:00
|
|
|
|
|
|
|
this.state = {
|
|
|
|
hasLoadedData: false,
|
2019-12-11 14:50:51 +00:00
|
|
|
addingSketchesToCollectionId: null,
|
2019-09-11 19:13:34 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:50:51 +00:00
|
|
|
componentDidUpdate(prevProps, prevState) {
|
2019-09-11 19:13:34 +00:00
|
|
|
if (prevProps.loading === true && this.props.loading === false) {
|
2019-10-02 14:37:08 +00:00
|
|
|
// eslint-disable-next-line react/no-did-update-set-state
|
2019-09-11 19:13:34 +00:00
|
|
|
this.setState({
|
|
|
|
hasLoadedData: true,
|
|
|
|
});
|
|
|
|
}
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getTitle() {
|
|
|
|
if (this.props.username === this.props.user.username) {
|
|
|
|
return 'p5.js Web Editor | My collections';
|
|
|
|
}
|
|
|
|
return `p5.js Web Editor | ${this.props.username}'s collections`;
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:50:51 +00:00
|
|
|
showAddSketches = (collectionId) => {
|
|
|
|
this.setState({
|
|
|
|
addingSketchesToCollectionId: collectionId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
hideAddSketches = () => {
|
|
|
|
this.setState({
|
|
|
|
addingSketchesToCollectionId: null,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-09-09 16:52:14 +00:00
|
|
|
hasCollections() {
|
2019-09-11 19:13:34 +00:00
|
|
|
return (!this.props.loading || this.state.hasLoadedData) && this.props.collections.length > 0;
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_renderLoader() {
|
2019-09-11 19:13:34 +00:00
|
|
|
if (this.props.loading && !this.state.hasLoadedData) return <Loader />;
|
2019-09-09 16:52:14 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
_renderEmptyTable() {
|
|
|
|
if (!this.props.loading && this.props.collections.length === 0) {
|
|
|
|
return (<p className="sketches-table__empty">No collections.</p>);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:03:58 +00:00
|
|
|
_getButtonLabel = (fieldName, displayName) => {
|
|
|
|
const { field, direction } = this.props.sorting;
|
|
|
|
let buttonLabel;
|
|
|
|
if (field !== fieldName) {
|
|
|
|
if (field === 'name') {
|
|
|
|
buttonLabel = `Sort by ${displayName} ascending.`;
|
|
|
|
} else {
|
|
|
|
buttonLabel = `Sort by ${displayName} descending.`;
|
|
|
|
}
|
|
|
|
} else if (direction === SortingActions.DIRECTION.ASC) {
|
|
|
|
buttonLabel = `Sort by ${displayName} descending.`;
|
|
|
|
} else {
|
|
|
|
buttonLabel = `Sort by ${displayName} ascending.`;
|
|
|
|
}
|
|
|
|
return buttonLabel;
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:50:51 +00:00
|
|
|
_renderFieldHeader = (fieldName, displayName) => {
|
2019-09-09 16:52:14 +00:00
|
|
|
const { field, direction } = this.props.sorting;
|
|
|
|
const headerClass = classNames({
|
|
|
|
'sketches-table__header': true,
|
|
|
|
'sketches-table__header--selected': field === fieldName
|
|
|
|
});
|
2020-05-05 23:03:58 +00:00
|
|
|
const buttonLabel = this._getButtonLabel(fieldName, displayName);
|
2019-09-09 16:52:14 +00:00
|
|
|
return (
|
|
|
|
<th scope="col">
|
2020-05-05 23:03:58 +00:00
|
|
|
<button
|
|
|
|
className="sketch-list__sort-button"
|
|
|
|
onClick={() => this.props.toggleDirectionForField(fieldName)}
|
|
|
|
aria-label={buttonLabel}
|
|
|
|
>
|
2019-09-09 16:52:14 +00:00
|
|
|
<span className={headerClass}>{displayName}</span>
|
|
|
|
{field === fieldName && direction === SortingActions.DIRECTION.ASC &&
|
2020-05-05 23:03:58 +00:00
|
|
|
<ArrowUpIcon role="img" aria-label="Ascending" focusable="false" />
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
{field === fieldName && direction === SortingActions.DIRECTION.DESC &&
|
2020-05-05 23:03:58 +00:00
|
|
|
<ArrowDownIcon role="img" aria-label="Descending" focusable="false" />
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
</button>
|
|
|
|
</th>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const username = this.props.username !== undefined ? this.props.username : this.props.user.username;
|
|
|
|
|
|
|
|
return (
|
2020-05-19 19:34:00 +00:00
|
|
|
<article className="sketches-table-container">
|
2019-09-09 16:52:14 +00:00
|
|
|
<Helmet>
|
|
|
|
<title>{this.getTitle()}</title>
|
|
|
|
</Helmet>
|
|
|
|
|
|
|
|
{this._renderLoader()}
|
|
|
|
{this._renderEmptyTable()}
|
|
|
|
{this.hasCollections() &&
|
|
|
|
<table className="sketches-table" summary="table containing all collections">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
{this._renderFieldHeader('name', 'Name')}
|
|
|
|
{this._renderFieldHeader('createdAt', 'Date Created')}
|
|
|
|
{this._renderFieldHeader('updatedAt', 'Date Updated')}
|
|
|
|
{this._renderFieldHeader('numItems', '# sketches')}
|
|
|
|
<th scope="col"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.props.collections.map(collection =>
|
|
|
|
(<CollectionListRow
|
|
|
|
key={collection.id}
|
|
|
|
collection={collection}
|
|
|
|
user={this.props.user}
|
|
|
|
username={username}
|
|
|
|
project={this.props.project}
|
2019-12-11 14:50:51 +00:00
|
|
|
onAddSketches={() => this.showAddSketches(collection.id)}
|
2019-09-09 16:52:14 +00:00
|
|
|
/>))}
|
|
|
|
</tbody>
|
|
|
|
</table>}
|
2019-12-11 14:50:51 +00:00
|
|
|
{
|
|
|
|
this.state.addingSketchesToCollectionId && (
|
2019-12-11 14:56:57 +00:00
|
|
|
<Overlay
|
2020-01-15 09:50:17 +00:00
|
|
|
title="Add sketch"
|
2019-12-11 14:56:57 +00:00
|
|
|
actions={<SketchSearchbar />}
|
|
|
|
closeOverlay={this.hideAddSketches}
|
|
|
|
isFixedHeight
|
|
|
|
>
|
2019-12-11 14:50:51 +00:00
|
|
|
<div className="collection-add-sketch">
|
2019-12-11 14:56:57 +00:00
|
|
|
<AddToCollectionSketchList
|
|
|
|
username={this.props.username}
|
|
|
|
collection={find(this.props.collections, { id: this.state.addingSketchesToCollectionId })}
|
|
|
|
/>
|
2019-12-11 14:50:51 +00:00
|
|
|
</div>
|
|
|
|
</Overlay>
|
|
|
|
)
|
|
|
|
}
|
2020-05-19 19:34:00 +00:00
|
|
|
</article>
|
2019-09-09 16:52:14 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CollectionList.propTypes = {
|
|
|
|
user: PropTypes.shape({
|
|
|
|
username: PropTypes.string,
|
|
|
|
authenticated: PropTypes.bool.isRequired
|
|
|
|
}).isRequired,
|
2020-02-04 23:40:54 +00:00
|
|
|
projectId: PropTypes.string,
|
2019-09-09 16:52:14 +00:00
|
|
|
getCollections: PropTypes.func.isRequired,
|
2019-10-02 14:37:08 +00:00
|
|
|
getProject: PropTypes.func.isRequired,
|
2019-09-09 16:52:14 +00:00
|
|
|
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
|
|
|
|
})
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
CollectionList.defaultProps = {
|
2020-02-04 23:40:54 +00:00
|
|
|
projectId: undefined,
|
2019-09-09 16:52:14 +00:00
|
|
|
project: {
|
|
|
|
id: undefined,
|
|
|
|
owner: undefined
|
|
|
|
},
|
|
|
|
username: undefined
|
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
|
|
return {
|
|
|
|
user: state.user,
|
|
|
|
collections: getSortedCollections(state),
|
|
|
|
sorting: state.sorting,
|
|
|
|
loading: state.loading,
|
|
|
|
project: state.project,
|
2020-02-04 23:40:54 +00:00
|
|
|
projectId: ownProps && ownProps.params ? ownProps.params.project_id : null,
|
2019-09-09 16:52:14 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(
|
|
|
|
Object.assign({}, CollectionsActions, ProjectsActions, ProjectActions, ToastActions, SortingActions),
|
|
|
|
dispatch
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(CollectionList);
|