2016-07-01 15:30:40 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { bindActionCreators } from 'redux';
|
2016-07-05 20:04:14 +00:00
|
|
|
import moment from 'moment';
|
|
|
|
import { Link } from 'react-router';
|
2016-07-01 15:30:40 +00:00
|
|
|
import Nav from '../../../components/Nav';
|
|
|
|
import * as SketchActions from '../actions';
|
|
|
|
import * as ProjectActions from '../../IDE/actions/project';
|
|
|
|
|
|
|
|
class SketchListView extends React.Component {
|
|
|
|
componentDidMount() {
|
|
|
|
this.props.getProjects();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="sketch-list">
|
|
|
|
<Nav
|
|
|
|
user={this.props.user}
|
|
|
|
createProject={this.props.createProject}
|
|
|
|
saveProject={this.props.saveProject}
|
|
|
|
/>
|
2016-07-12 18:00:04 +00:00
|
|
|
<table className="sketches-table" summary="table containing all saved projects">
|
2016-07-05 20:04:14 +00:00
|
|
|
<thead>
|
2016-07-12 14:16:19 +00:00
|
|
|
<th scope="col">Name</th>
|
|
|
|
<th scope="col">Created</th>
|
|
|
|
<th scope="col">Last Updated</th>
|
2016-07-05 20:04:14 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.props.sketches.map(sketch =>
|
|
|
|
<tr className="sketches-table__row">
|
2016-07-12 14:16:19 +00:00
|
|
|
<td scope="row"><Link to={`/projects/${sketch._id}`}>{sketch.name}</Link></td>
|
2016-07-05 20:04:14 +00:00
|
|
|
<td>{moment(sketch.createdAt).format('MMM D, YYYY')}</td>
|
|
|
|
<td>{moment(sketch.updatedAt).format('MMM D, YYYY')}</td>
|
|
|
|
</tr>
|
|
|
|
)}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-07-01 15:30:40 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SketchListView.propTypes = {
|
|
|
|
user: PropTypes.object.isRequired,
|
|
|
|
createProject: PropTypes.func.isRequired,
|
|
|
|
saveProject: PropTypes.func.isRequired,
|
|
|
|
getProjects: PropTypes.func.isRequired,
|
|
|
|
sketches: PropTypes.array.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
user: state.user,
|
|
|
|
sketches: state.sketches
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({}, SketchActions, ProjectActions), dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SketchListView);
|