2019-03-02 09:35:40 +00:00
|
|
|
import format from 'date-fns/format';
|
2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2019-03-02 09:35:40 +00:00
|
|
|
import { Helmet } from 'react-helmet';
|
2020-08-22 10:50:49 +00:00
|
|
|
import { withTranslation } from 'react-i18next';
|
2016-08-15 21:06:12 +00:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-19 20:21:25 +00:00
|
|
|
import { Link } from 'react-router';
|
2016-08-15 21:06:12 +00:00
|
|
|
import { bindActionCreators } from 'redux';
|
2019-06-06 21:17:33 +00:00
|
|
|
import classNames from 'classnames';
|
2019-08-09 17:04:11 +00:00
|
|
|
import slugify from 'slugify';
|
2016-08-15 21:06:12 +00:00
|
|
|
import * as ProjectActions from '../actions/project';
|
2019-06-19 20:21:25 +00:00
|
|
|
import * as ProjectsActions from '../actions/projects';
|
2019-09-17 18:48:37 +00:00
|
|
|
import * as CollectionsActions from '../actions/collections';
|
2017-01-06 18:08:03 +00:00
|
|
|
import * as ToastActions from '../actions/toast';
|
2019-06-06 21:17:33 +00:00
|
|
|
import * as SortingActions from '../actions/sorting';
|
2019-06-19 20:21:25 +00:00
|
|
|
import * as IdeActions from '../actions/ide';
|
2019-06-06 21:17:33 +00:00
|
|
|
import getSortedSketches from '../selectors/projects';
|
2019-05-01 20:32:39 +00:00
|
|
|
import Loader from '../../App/components/loader';
|
2019-11-10 16:07:53 +00:00
|
|
|
import Overlay from '../../App/components/Overlay';
|
|
|
|
import AddToCollectionList from './AddToCollectionList';
|
2017-02-22 19:29:35 +00:00
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import ArrowUpIcon from '../../../images/sort-arrow-up.svg';
|
|
|
|
import ArrowDownIcon from '../../../images/sort-arrow-down.svg';
|
|
|
|
import DownFilledTriangleIcon from '../../../images/down-filled-triangle.svg';
|
2019-06-19 20:21:25 +00:00
|
|
|
|
2020-08-04 15:01:33 +00:00
|
|
|
|
2020-08-04 19:57:24 +00:00
|
|
|
const formatDateCell = (date, mobile = false) => format(new Date(date), mobile ? 'MMM D, YYYY' : 'MMM D, YYYY h:mm A');
|
2020-08-04 15:01:33 +00:00
|
|
|
|
2019-06-19 20:21:25 +00:00
|
|
|
class SketchListRowBase extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
optionsOpen: false,
|
|
|
|
renameOpen: false,
|
|
|
|
renameValue: props.sketch.name,
|
2019-10-20 19:59:16 +00:00
|
|
|
isFocused: false,
|
2019-06-19 20:21:25 +00:00
|
|
|
};
|
2020-02-27 20:27:28 +00:00
|
|
|
this.renameInput = React.createRef();
|
2019-06-19 20:21:25 +00:00
|
|
|
}
|
2019-06-19 20:21:25 +00:00
|
|
|
|
2019-06-19 20:21:25 +00:00
|
|
|
onFocusComponent = () => {
|
|
|
|
this.setState({ isFocused: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
onBlurComponent = () => {
|
|
|
|
this.setState({ isFocused: false });
|
|
|
|
setTimeout(() => {
|
|
|
|
if (!this.state.isFocused) {
|
|
|
|
this.closeAll();
|
|
|
|
}
|
|
|
|
}, 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
openOptions = () => {
|
|
|
|
this.setState({
|
|
|
|
optionsOpen: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
closeOptions = () => {
|
|
|
|
this.setState({
|
|
|
|
optionsOpen: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleOptions = () => {
|
|
|
|
if (this.state.optionsOpen) {
|
|
|
|
this.closeOptions();
|
|
|
|
} else {
|
|
|
|
this.openOptions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
openRename = () => {
|
|
|
|
this.setState({
|
2020-04-02 21:52:04 +00:00
|
|
|
renameOpen: true,
|
|
|
|
renameValue: this.props.sketch.name
|
2020-02-27 20:27:28 +00:00
|
|
|
}, () => this.renameInput.current.focus());
|
2019-06-19 20:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
closeRename = () => {
|
|
|
|
this.setState({
|
|
|
|
renameOpen: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
closeAll = () => {
|
|
|
|
this.setState({
|
|
|
|
renameOpen: false,
|
|
|
|
optionsOpen: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRenameChange = (e) => {
|
|
|
|
this.setState({
|
|
|
|
renameValue: e.target.value
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRenameEnter = (e) => {
|
|
|
|
if (e.key === 'Enter') {
|
2020-04-02 21:52:04 +00:00
|
|
|
this.updateName();
|
2019-06-19 20:21:25 +00:00
|
|
|
this.closeAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-02 21:52:04 +00:00
|
|
|
handleRenameBlur = () => {
|
|
|
|
this.updateName();
|
|
|
|
this.closeAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateName = () => {
|
|
|
|
const isValid = this.state.renameValue.trim().length !== 0;
|
|
|
|
if (isValid) {
|
|
|
|
this.props.changeProjectName(this.props.sketch.id, this.state.renameValue.trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 20:21:25 +00:00
|
|
|
resetSketchName = () => {
|
|
|
|
this.setState({
|
2020-04-02 21:52:04 +00:00
|
|
|
renameValue: this.props.sketch.name,
|
|
|
|
renameOpen: false
|
2019-06-19 20:21:25 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDropdownOpen = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.openOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRenameOpen = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.openRename();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchDownload = () => {
|
|
|
|
this.props.exportProjectAsZip(this.props.sketch.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchDuplicate = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.props.cloneProject(this.props.sketch.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchShare = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.props.showShareModal(this.props.sketch.id, this.props.sketch.name, this.props.username);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchDelete = () => {
|
|
|
|
this.closeAll();
|
2020-08-22 10:50:49 +00:00
|
|
|
if (window.confirm(this.props.t('Common.DeleteConfirmation', { name: this.props.sketch.name }))) {
|
2019-06-19 20:21:25 +00:00
|
|
|
this.props.deleteProject(this.props.sketch.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 23:51:42 +00:00
|
|
|
renderViewButton = sketchURL => (
|
2019-11-04 21:04:38 +00:00
|
|
|
<td className="sketch-list__dropdown-column">
|
2020-08-22 10:50:49 +00:00
|
|
|
<Link to={sketchURL}>{this.props.t('SketchList.View')}</Link>
|
2019-10-20 23:51:42 +00:00
|
|
|
</td>
|
|
|
|
)
|
|
|
|
|
2019-09-17 18:48:37 +00:00
|
|
|
renderDropdown = () => {
|
|
|
|
const { optionsOpen } = this.state;
|
2019-06-19 20:21:25 +00:00
|
|
|
const userIsOwner = this.props.user.username === this.props.username;
|
2019-09-17 18:48:37 +00:00
|
|
|
|
2019-06-19 20:21:25 +00:00
|
|
|
return (
|
2019-09-17 18:48:37 +00:00
|
|
|
<td className="sketch-list__dropdown-column">
|
|
|
|
<button
|
|
|
|
className="sketch-list__dropdown-button"
|
|
|
|
onClick={this.toggleOptions}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
2020-08-22 10:50:49 +00:00
|
|
|
aria-label={this.props.t('SketchList.ToggleLabelARIA')}
|
2019-09-17 18:48:37 +00:00
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<DownFilledTriangleIcon focusable="false" aria-hidden="true" />
|
2019-09-17 18:48:37 +00:00
|
|
|
</button>
|
|
|
|
{optionsOpen &&
|
|
|
|
<ul
|
|
|
|
className="sketch-list__action-dialogue"
|
2019-06-19 20:21:25 +00:00
|
|
|
>
|
2019-09-17 18:48:37 +00:00
|
|
|
{userIsOwner &&
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleRenameOpen}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
2020-08-22 10:50:49 +00:00
|
|
|
{this.props.t('SketchList.DropdownRename')}
|
2019-09-17 18:48:37 +00:00
|
|
|
</button>
|
|
|
|
</li>}
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleSketchDownload}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
2020-08-22 10:50:49 +00:00
|
|
|
{this.props.t('SketchList.DropdownDownload')}
|
2019-09-17 18:48:37 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
{this.props.user.authenticated &&
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleSketchDuplicate}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
2020-08-22 10:50:49 +00:00
|
|
|
{this.props.t('SketchList.DropdownDuplicate')}
|
2019-09-17 18:48:37 +00:00
|
|
|
</button>
|
|
|
|
</li>}
|
2019-10-20 19:59:16 +00:00
|
|
|
{this.props.user.authenticated &&
|
2019-06-19 20:21:25 +00:00
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
2019-11-10 16:07:53 +00:00
|
|
|
onClick={() => {
|
|
|
|
this.props.onAddToCollection();
|
|
|
|
this.closeAll();
|
|
|
|
}}
|
2019-06-19 20:21:25 +00:00
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
2020-08-22 10:50:49 +00:00
|
|
|
{this.props.t('SketchList.DropdownAddToCollection')}
|
2019-06-19 20:21:25 +00:00
|
|
|
</button>
|
|
|
|
</li>}
|
2019-09-17 18:48:37 +00:00
|
|
|
{ /* <li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleSketchShare}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
|
|
|
Share
|
|
|
|
</button>
|
|
|
|
</li> */ }
|
|
|
|
{userIsOwner &&
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleSketchDelete}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
2020-08-22 10:50:49 +00:00
|
|
|
{this.props.t('SketchList.DropdownDelete')}
|
2019-09-17 18:48:37 +00:00
|
|
|
</button>
|
|
|
|
</li>}
|
|
|
|
</ul>}
|
|
|
|
</td>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-19 20:21:25 +00:00
|
|
|
render() {
|
2019-10-20 23:51:42 +00:00
|
|
|
const {
|
|
|
|
sketch,
|
|
|
|
username,
|
2020-08-04 13:55:16 +00:00
|
|
|
mobile
|
2019-10-20 23:51:42 +00:00
|
|
|
} = this.props;
|
2019-09-17 18:48:37 +00:00
|
|
|
const { renameOpen, renameValue } = this.state;
|
2019-08-09 17:04:11 +00:00
|
|
|
let url = `/${username}/sketches/${sketch.id}`;
|
|
|
|
if (username === 'p5') {
|
|
|
|
url = `/${username}/sketches/${slugify(sketch.name, '_')}`;
|
|
|
|
}
|
2019-10-20 23:51:42 +00:00
|
|
|
|
2019-11-10 16:07:53 +00:00
|
|
|
const name = (
|
|
|
|
<React.Fragment>
|
|
|
|
<Link to={url}>
|
|
|
|
{renameOpen ? '' : sketch.name}
|
|
|
|
</Link>
|
|
|
|
{renameOpen
|
|
|
|
&&
|
|
|
|
<input
|
|
|
|
value={renameValue}
|
|
|
|
onChange={this.handleRenameChange}
|
|
|
|
onKeyUp={this.handleRenameEnter}
|
2020-04-02 21:52:04 +00:00
|
|
|
onBlur={this.handleRenameBlur}
|
2019-11-10 16:07:53 +00:00
|
|
|
onClick={e => e.stopPropagation()}
|
2020-04-02 21:27:58 +00:00
|
|
|
ref={this.renameInput}
|
2019-11-10 16:07:53 +00:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
2019-10-20 23:51:42 +00:00
|
|
|
|
2019-06-19 20:21:25 +00:00
|
|
|
return (
|
2019-10-20 19:59:16 +00:00
|
|
|
<React.Fragment>
|
|
|
|
<tr
|
2019-11-10 16:07:53 +00:00
|
|
|
className="sketches-table__row"
|
2019-10-20 19:59:16 +00:00
|
|
|
key={sketch.id}
|
2019-10-20 23:51:42 +00:00
|
|
|
onClick={this.handleRowClick}
|
2019-10-20 19:59:16 +00:00
|
|
|
>
|
|
|
|
<th scope="row">
|
2019-10-20 23:51:42 +00:00
|
|
|
{name}
|
2019-10-20 19:59:16 +00:00
|
|
|
</th>
|
2020-08-11 19:30:48 +00:00
|
|
|
<td>{mobile && 'Created: '}{formatDateCell(sketch.createdAt, mobile)}</td>
|
|
|
|
<td>{mobile && 'Updated: '}{formatDateCell(sketch.updatedAt, mobile)}</td>
|
2019-11-10 16:07:53 +00:00
|
|
|
{this.renderDropdown()}
|
2019-10-20 19:59:16 +00:00
|
|
|
</tr>
|
|
|
|
</React.Fragment>);
|
2019-06-19 20:21:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SketchListRowBase.propTypes = {
|
|
|
|
sketch: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
2020-01-28 22:47:12 +00:00
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
createdAt: PropTypes.string.isRequired,
|
|
|
|
updatedAt: PropTypes.string.isRequired
|
2019-06-19 20:21:25 +00:00
|
|
|
}).isRequired,
|
|
|
|
username: PropTypes.string.isRequired,
|
|
|
|
user: PropTypes.shape({
|
|
|
|
username: PropTypes.string,
|
|
|
|
authenticated: PropTypes.bool.isRequired
|
|
|
|
}).isRequired,
|
|
|
|
deleteProject: PropTypes.func.isRequired,
|
|
|
|
showShareModal: PropTypes.func.isRequired,
|
|
|
|
cloneProject: PropTypes.func.isRequired,
|
|
|
|
exportProjectAsZip: PropTypes.func.isRequired,
|
2019-10-02 14:37:08 +00:00
|
|
|
changeProjectName: PropTypes.func.isRequired,
|
2020-08-04 13:55:16 +00:00
|
|
|
onAddToCollection: PropTypes.func.isRequired,
|
2020-08-22 10:50:49 +00:00
|
|
|
mobile: PropTypes.bool,
|
|
|
|
t: PropTypes.func.isRequired
|
2020-08-04 13:55:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SketchListRowBase.defaultProps = {
|
|
|
|
mobile: false
|
2019-06-19 20:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapDispatchToPropsSketchListRow(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({}, ProjectActions, IdeActions), dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
const SketchListRow = connect(null, mapDispatchToPropsSketchListRow)(SketchListRowBase);
|
2016-08-15 21:06:12 +00:00
|
|
|
|
|
|
|
class SketchList extends React.Component {
|
2016-11-10 21:13:00 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2017-02-17 20:47:54 +00:00
|
|
|
this.props.getProjects(this.props.username);
|
2019-06-06 21:17:33 +00:00
|
|
|
this.props.resetSorting();
|
2019-10-20 19:59:16 +00:00
|
|
|
|
|
|
|
this.state = {
|
|
|
|
isInitialDataLoad: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-03 20:51:01 +00:00
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.sketches !== prevProps.sketches && Array.isArray(this.props.sketches)) {
|
|
|
|
// eslint-disable-next-line react/no-did-update-set-state
|
2019-10-20 19:59:16 +00:00
|
|
|
this.setState({
|
|
|
|
isInitialDataLoad: false,
|
|
|
|
});
|
|
|
|
}
|
2016-11-10 21:13:00 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 16:31:41 +00:00
|
|
|
getSketchesTitle() {
|
|
|
|
if (this.props.username === this.props.user.username) {
|
2020-08-22 10:50:49 +00:00
|
|
|
return this.props.t('SketchList.Title');
|
2018-02-23 16:31:41 +00:00
|
|
|
}
|
2020-08-22 10:50:49 +00:00
|
|
|
return this.props.t('SketchList.AnothersTitle', { anotheruser: this.props.username });
|
2018-02-23 16:31:41 +00:00
|
|
|
}
|
|
|
|
|
2019-05-01 20:32:39 +00:00
|
|
|
hasSketches() {
|
2019-10-20 19:59:16 +00:00
|
|
|
return !this.isLoading() && this.props.sketches.length > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isLoading() {
|
|
|
|
return this.props.loading && this.state.isInitialDataLoad;
|
2019-05-01 20:32:39 +00:00
|
|
|
}
|
|
|
|
|
2019-06-06 21:17:33 +00:00
|
|
|
_renderLoader() {
|
2019-10-20 19:59:16 +00:00
|
|
|
if (this.isLoading()) return <Loader />;
|
2019-05-01 20:32:39 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-06-06 21:17:33 +00:00
|
|
|
_renderEmptyTable() {
|
2019-10-20 19:59:16 +00:00
|
|
|
if (!this.isLoading() && this.props.sketches.length === 0) {
|
2020-08-22 10:50:49 +00:00
|
|
|
return (<p className="sketches-table__empty">{this.props.t('SketchList.NoSketches')}</p>);
|
2019-06-05 16:05:31 +00:00
|
|
|
}
|
2019-05-01 20:32:39 +00:00
|
|
|
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') {
|
2020-08-22 10:50:49 +00:00
|
|
|
buttonLabel = this.props.t('SketchList.ButtonLabelAscendingARIA', { displayName });
|
2020-05-05 23:03:58 +00:00
|
|
|
} else {
|
2020-08-22 10:50:49 +00:00
|
|
|
buttonLabel = this.props.t('SketchList.ButtonLabelDescendingARIA', { displayName });
|
2020-05-05 23:03:58 +00:00
|
|
|
}
|
|
|
|
} else if (direction === SortingActions.DIRECTION.ASC) {
|
2020-08-22 10:50:49 +00:00
|
|
|
buttonLabel = this.props.t('SketchList.ButtonLabelDescendingARIA', { displayName });
|
2020-05-05 23:03:58 +00:00
|
|
|
} else {
|
2020-08-22 10:50:49 +00:00
|
|
|
buttonLabel = this.props.t('SketchList.ButtonLabelAscendingARIA', { displayName });
|
2020-05-05 23:03:58 +00:00
|
|
|
}
|
|
|
|
return buttonLabel;
|
|
|
|
}
|
|
|
|
|
|
|
|
_renderFieldHeader = (fieldName, displayName) => {
|
2019-06-06 21:17:33 +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-06-06 21:17:33 +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-06-06 21:17:33 +00:00
|
|
|
<span className={headerClass}>{displayName}</span>
|
|
|
|
{field === fieldName && direction === SortingActions.DIRECTION.ASC &&
|
2020-08-22 10:50:49 +00:00
|
|
|
<ArrowUpIcon role="img" aria-label={this.props.t('SketchList.DirectionAscendingARIA')} focusable="false" />
|
2019-06-06 21:17:33 +00:00
|
|
|
}
|
|
|
|
{field === fieldName && direction === SortingActions.DIRECTION.DESC &&
|
2020-08-22 10:50:49 +00:00
|
|
|
<ArrowDownIcon role="img" aria-label={this.props.t('SketchList.DirectionDescendingARIA')} focusable="false" />
|
2019-06-06 21:17:33 +00:00
|
|
|
}
|
|
|
|
</button>
|
|
|
|
</th>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-08-15 21:06:12 +00:00
|
|
|
render() {
|
2016-12-01 22:12:34 +00:00
|
|
|
const username = this.props.username !== undefined ? this.props.username : this.props.user.username;
|
2020-08-04 13:55:16 +00:00
|
|
|
const { mobile } = this.props;
|
2016-08-15 21:06:12 +00:00
|
|
|
return (
|
2020-05-19 19:34:00 +00:00
|
|
|
<article className="sketches-table-container">
|
2018-02-23 16:31:41 +00:00
|
|
|
<Helmet>
|
|
|
|
<title>{this.getSketchesTitle()}</title>
|
|
|
|
</Helmet>
|
2019-06-06 21:17:33 +00:00
|
|
|
{this._renderLoader()}
|
|
|
|
{this._renderEmptyTable()}
|
2019-05-01 20:32:39 +00:00
|
|
|
{this.hasSketches() &&
|
2017-07-24 15:12:11 +00:00
|
|
|
<table className="sketches-table" summary="table containing all saved projects">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-08-22 10:50:49 +00:00
|
|
|
{this._renderFieldHeader('name', this.props.t('SketchList.HeaderName'))}
|
|
|
|
{this._renderFieldHeader('createdAt', this.props.t('SketchList.HeaderCreatedAt', { context: mobile ? 'mobile' : '' }))}
|
|
|
|
{this._renderFieldHeader('updatedAt', this.props.t('SketchList.HeaderUpdatedAt', { context: mobile ? 'mobile' : '' }))}
|
2019-06-19 20:21:25 +00:00
|
|
|
<th scope="col"></th>
|
2016-08-15 21:06:12 +00:00
|
|
|
</tr>
|
2017-07-24 15:12:11 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.props.sketches.map(sketch =>
|
2019-06-19 20:21:25 +00:00
|
|
|
(<SketchListRow
|
2020-08-04 13:55:16 +00:00
|
|
|
mobile={mobile}
|
2017-07-24 15:12:11 +00:00
|
|
|
key={sketch.id}
|
2019-06-19 20:21:25 +00:00
|
|
|
sketch={sketch}
|
|
|
|
user={this.props.user}
|
|
|
|
username={username}
|
2019-11-10 16:07:53 +00:00
|
|
|
onAddToCollection={() => {
|
|
|
|
this.setState({ sketchToAddToCollection: sketch });
|
|
|
|
}}
|
2020-08-22 10:50:49 +00:00
|
|
|
t={this.props.t}
|
2019-06-19 20:21:25 +00:00
|
|
|
/>))}
|
2017-07-24 15:12:11 +00:00
|
|
|
</tbody>
|
|
|
|
</table>}
|
2019-11-10 16:07:53 +00:00
|
|
|
{
|
|
|
|
this.state.sketchToAddToCollection &&
|
|
|
|
<Overlay
|
2019-12-11 14:12:00 +00:00
|
|
|
isFixedHeight
|
2020-08-22 10:50:49 +00:00
|
|
|
title={this.props.t('SketchList.AddToCollectionOverlayTitle')}
|
2019-11-10 16:07:53 +00:00
|
|
|
closeOverlay={() => this.setState({ sketchToAddToCollection: null })}
|
|
|
|
>
|
|
|
|
<AddToCollectionList
|
|
|
|
project={this.state.sketchToAddToCollection}
|
|
|
|
username={this.props.username}
|
|
|
|
user={this.props.user}
|
|
|
|
/>
|
|
|
|
</Overlay>
|
|
|
|
}
|
2020-05-19 19:34:00 +00:00
|
|
|
</article>
|
2016-08-15 21:06:12 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SketchList.propTypes = {
|
2017-02-22 19:29:35 +00:00
|
|
|
user: PropTypes.shape({
|
2019-06-19 20:21:25 +00:00
|
|
|
username: PropTypes.string,
|
|
|
|
authenticated: PropTypes.bool.isRequired
|
2017-02-22 19:29:35 +00:00
|
|
|
}).isRequired,
|
2016-08-15 21:06:12 +00:00
|
|
|
getProjects: PropTypes.func.isRequired,
|
2017-02-22 19:29:35 +00:00
|
|
|
sketches: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
createdAt: PropTypes.string.isRequired,
|
|
|
|
updatedAt: PropTypes.string.isRequired
|
|
|
|
})).isRequired,
|
2016-10-12 18:24:53 +00:00
|
|
|
username: PropTypes.string,
|
2019-05-01 20:32:39 +00:00
|
|
|
loading: PropTypes.bool.isRequired,
|
2019-06-06 21:17:33 +00:00
|
|
|
toggleDirectionForField: PropTypes.func.isRequired,
|
|
|
|
resetSorting: PropTypes.func.isRequired,
|
|
|
|
sorting: PropTypes.shape({
|
|
|
|
field: PropTypes.string.isRequired,
|
|
|
|
direction: PropTypes.string.isRequired
|
|
|
|
}).isRequired,
|
2020-08-04 13:55:16 +00:00
|
|
|
mobile: PropTypes.bool,
|
2020-08-22 10:50:49 +00:00
|
|
|
t: PropTypes.func.isRequired
|
2017-02-22 19:29:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SketchList.defaultProps = {
|
2020-08-04 13:55:16 +00:00
|
|
|
username: undefined,
|
|
|
|
mobile: false,
|
2016-08-15 21:06:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
user: state.user,
|
2019-06-06 21:17:33 +00:00
|
|
|
sketches: getSortedSketches(state),
|
|
|
|
sorting: state.sorting,
|
2019-06-19 20:21:25 +00:00
|
|
|
loading: state.loading,
|
|
|
|
project: state.project
|
2016-08-15 21:06:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
2019-10-21 08:35:20 +00:00
|
|
|
return bindActionCreators(
|
|
|
|
Object.assign({}, ProjectsActions, CollectionsActions, ToastActions, SortingActions),
|
|
|
|
dispatch
|
|
|
|
);
|
2016-08-15 21:06:12 +00:00
|
|
|
}
|
|
|
|
|
2020-08-22 10:50:49 +00:00
|
|
|
export default withTranslation()(connect(mapStateToProps, mapDispatchToProps)(SketchList));
|