e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
120 lines
4.3 KiB
JavaScript
120 lines
4.3 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { bindActionCreators } from 'redux';
|
|
import moment from 'moment';
|
|
import { Link, browserHistory } from 'react-router';
|
|
import InlineSVG from 'react-inlinesvg';
|
|
import * as SketchActions from '../actions/projects';
|
|
import * as ProjectActions from '../actions/project';
|
|
import * as ToastActions from '../actions/toast';
|
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
|
const trashCan = require('../../../images/trash-can.svg');
|
|
|
|
class SketchList extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.closeSketchList = this.closeSketchList.bind(this);
|
|
this.props.getProjects(this.props.username);
|
|
}
|
|
|
|
componentDidMount() {
|
|
document.getElementById('sketchlist').focus();
|
|
}
|
|
|
|
closeSketchList() {
|
|
browserHistory.push(this.props.previousPath);
|
|
}
|
|
|
|
render() {
|
|
const username = this.props.username !== undefined ? this.props.username : this.props.user.username;
|
|
return (
|
|
<section className="sketch-list" aria-label="project list" tabIndex="0" role="main" id="sketchlist">
|
|
<header className="sketch-list__header">
|
|
<h2 className="sketch-list__header-title">Open a Sketch</h2>
|
|
<button className="sketch-list__exit-button" onClick={this.closeSketchList}>
|
|
<InlineSVG src={exitUrl} alt="Close Sketch List Overlay" />
|
|
</button>
|
|
</header>
|
|
<div className="sketches-table-container">
|
|
<table className="sketches-table" summary="table containing all saved projects">
|
|
<thead>
|
|
<tr>
|
|
<th className="sketch-list__trash-column" scope="col"></th>
|
|
<th scope="col">Sketch</th>
|
|
<th scope="col">Date created</th>
|
|
<th scope="col">Date updated</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{this.props.sketches.map(sketch =>
|
|
// eslint-disable-next-line
|
|
<tr
|
|
className="sketches-table__row visibility-toggle"
|
|
key={sketch.id}
|
|
onClick={() => browserHistory.push(`/${username}/sketches/${sketch.id}`)}
|
|
>
|
|
<td className="sketch-list__trash-column">
|
|
{(() => { // eslint-disable-line
|
|
if (this.props.username === this.props.user.username || this.props.username === undefined) {
|
|
return (
|
|
<button
|
|
className="sketch-list__trash-button"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
if (window.confirm(`Are you sure you want to delete "${sketch.name}"?`)) {
|
|
this.props.deleteProject(sketch.id);
|
|
}
|
|
}}
|
|
>
|
|
<InlineSVG src={trashCan} alt="Delete Project" />
|
|
</button>
|
|
);
|
|
}
|
|
})()}
|
|
</td>
|
|
<th scope="row"><Link to={`/${username}/sketches/${sketch.id}`}>{sketch.name}</Link></th>
|
|
<td>{moment(sketch.createdAt).format('MMM D, YYYY h:mm A')}</td>
|
|
<td>{moment(sketch.updatedAt).format('MMM D, YYYY h:mm A')}</td>
|
|
</tr>
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
SketchList.propTypes = {
|
|
user: PropTypes.shape({
|
|
username: PropTypes.string
|
|
}).isRequired,
|
|
getProjects: PropTypes.func.isRequired,
|
|
sketches: PropTypes.arrayOf(PropTypes.shape({
|
|
id: PropTypes.string.isRequired,
|
|
name: PropTypes.string.isRequired,
|
|
createdAt: PropTypes.string.isRequired,
|
|
updatedAt: PropTypes.string.isRequired
|
|
})).isRequired,
|
|
username: PropTypes.string,
|
|
deleteProject: PropTypes.func.isRequired,
|
|
previousPath: PropTypes.string.isRequired,
|
|
};
|
|
|
|
SketchList.defaultProps = {
|
|
username: undefined
|
|
};
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
user: state.user,
|
|
sketches: state.sketches
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return bindActionCreators(Object.assign({}, SketchActions, ProjectActions, ToastActions), dispatch);
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SketchList);
|