2016-08-15 21:06:12 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import moment from 'moment';
|
2016-11-10 21:13:00 +00:00
|
|
|
import { Link, browserHistory } from 'react-router';
|
2016-08-15 21:06:12 +00:00
|
|
|
import * as SketchActions from '../actions/projects';
|
|
|
|
import * as ProjectActions from '../actions/project';
|
2017-01-06 18:08:03 +00:00
|
|
|
import * as ToastActions from '../actions/toast';
|
2016-08-15 21:06:12 +00:00
|
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
2016-10-12 18:24:53 +00:00
|
|
|
const trashCan = require('../../../images/trash-can.svg');
|
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);
|
|
|
|
this.closeSketchList = this.closeSketchList.bind(this);
|
|
|
|
}
|
|
|
|
|
2016-08-15 21:06:12 +00:00
|
|
|
componentDidMount() {
|
2016-08-17 19:53:25 +00:00
|
|
|
this.props.getProjects(this.props.username);
|
2016-08-24 17:30:50 +00:00
|
|
|
document.getElementById('sketchlist').focus();
|
2016-08-15 21:06:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 21:13:00 +00:00
|
|
|
closeSketchList() {
|
|
|
|
browserHistory.push(this.props.previousPath);
|
|
|
|
}
|
|
|
|
|
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;
|
2016-08-15 21:06:12 +00:00
|
|
|
return (
|
2016-08-24 17:30:50 +00:00
|
|
|
<section className="sketch-list" aria-label="project list" tabIndex="0" role="main" id="sketchlist">
|
2016-08-15 21:06:12 +00:00
|
|
|
<header className="sketch-list__header">
|
2016-12-19 22:49:35 +00:00
|
|
|
<h2 className="sketch-list__header-title">Open a Sketch</h2>
|
2016-11-10 21:13:00 +00:00
|
|
|
<button className="sketch-list__exit-button" onClick={this.closeSketchList}>
|
2016-08-15 21:06:12 +00:00
|
|
|
<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>
|
2016-10-12 18:24:53 +00:00
|
|
|
<th className="sketch-list__trash-column" scope="col"></th>
|
2016-12-14 15:58:43 +00:00
|
|
|
<th scope="col">Sketch</th>
|
|
|
|
<th scope="col">Date created</th>
|
|
|
|
<th scope="col">Date updated</th>
|
2016-08-15 21:06:12 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.props.sketches.map(sketch =>
|
2016-10-12 18:24:53 +00:00
|
|
|
<tr className="sketches-table__row visibility-toggle" key={sketch.id}>
|
|
|
|
<td>
|
2016-11-02 21:28:06 +00:00
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (this.props.username === this.props.user.username || this.props.username === undefined) {
|
|
|
|
return (
|
|
|
|
<button
|
|
|
|
className="sketch-list__trash-button"
|
|
|
|
onClick={() => {
|
|
|
|
if (window.confirm(`Are you sure you want to delete "${sketch.name}"?`)) {
|
|
|
|
this.props.deleteProject(sketch.id);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<InlineSVG src={trashCan} alt="Delete Project" />
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
2016-10-12 18:24:53 +00:00
|
|
|
</td>
|
2016-12-01 22:12:34 +00:00
|
|
|
<td scope="row"><Link to={`/${username}/sketches/${sketch._id}`}>{sketch.name}</Link></td>
|
2016-12-14 15:58:43 +00:00
|
|
|
<td>{moment(sketch.createdAt).format('MMM D, YYYY h:mm A')}</td>
|
|
|
|
<td>{moment(sketch.updatedAt).format('MMM D, YYYY h:mm A')}</td>
|
2016-08-15 21:06:12 +00:00
|
|
|
</tr>
|
|
|
|
)}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2016-08-24 17:30:50 +00:00
|
|
|
</section>
|
2016-08-15 21:06:12 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SketchList.propTypes = {
|
|
|
|
user: PropTypes.object.isRequired,
|
|
|
|
getProjects: PropTypes.func.isRequired,
|
|
|
|
sketches: PropTypes.array.isRequired,
|
2016-10-12 18:24:53 +00:00
|
|
|
username: PropTypes.string,
|
2016-11-10 21:13:00 +00:00
|
|
|
deleteProject: PropTypes.func.isRequired,
|
2017-01-06 18:08:03 +00:00
|
|
|
previousPath: PropTypes.string.isRequired,
|
|
|
|
showToast: PropTypes.func.isRequired,
|
|
|
|
setToastText: PropTypes.func.isRequired
|
2016-08-15 21:06:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
user: state.user,
|
|
|
|
sketches: state.sketches
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
2017-01-06 18:08:03 +00:00
|
|
|
return bindActionCreators(Object.assign({}, SketchActions, ProjectActions, ToastActions), dispatch);
|
2016-08-15 21:06:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SketchList);
|