2019-07-09 08:35:24 +00:00
|
|
|
import format from 'date-fns/format';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { Link } from 'react-router';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import classNames from 'classnames';
|
2019-09-08 16:54:49 +00:00
|
|
|
import * as ProjectActions from '../../IDE/actions/project';
|
|
|
|
import * as ProjectsActions from '../../IDE/actions/projects';
|
|
|
|
import * as CollectionsActions from '../../IDE/actions/collections';
|
|
|
|
import * as ToastActions from '../../IDE/actions/toast';
|
|
|
|
import * as SortingActions from '../../IDE/actions/sorting';
|
|
|
|
import * as IdeActions from '../../IDE/actions/ide';
|
|
|
|
import { getCollection } from '../../IDE/selectors/collections';
|
2019-07-09 08:35:24 +00:00
|
|
|
import Loader from '../../App/components/loader';
|
2019-09-16 20:58:32 +00:00
|
|
|
import EditableInput from '../../IDE/components/EditableInput';
|
2019-07-09 08:35:24 +00:00
|
|
|
|
|
|
|
const arrowUp = require('../../../images/sort-arrow-up.svg');
|
|
|
|
const arrowDown = require('../../../images/sort-arrow-down.svg');
|
|
|
|
const downFilledTriangle = require('../../../images/down-filled-triangle.svg');
|
|
|
|
|
|
|
|
class CollectionItemRowBase extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
optionsOpen: false,
|
|
|
|
renameOpen: false,
|
|
|
|
renameValue: props.item.project.name,
|
|
|
|
isFocused: false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
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({
|
|
|
|
renameOpen: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
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') {
|
|
|
|
// TODO pass this func
|
|
|
|
this.props.changeProjectName(this.props.collection.id, this.state.renameValue);
|
|
|
|
this.closeAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resetSketchName = () => {
|
|
|
|
this.setState({
|
|
|
|
renameValue: this.props.collection.name
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDropdownOpen = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.openOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRenameOpen = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.openRename();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchDownload = () => {
|
|
|
|
this.props.exportProjectAsZip(this.props.collection.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchDuplicate = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.props.cloneProject(this.props.collection.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchShare = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.props.showShareModal(this.props.collection.id, this.props.collection.name, this.props.username);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSketchDelete = () => {
|
|
|
|
this.closeAll();
|
|
|
|
if (window.confirm(`Are you sure you want to delete "${this.props.collection.name}"?`)) {
|
|
|
|
this.props.deleteProject(this.props.collection.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { item, username } = this.props;
|
|
|
|
const { renameOpen, optionsOpen, renameValue } = this.state;
|
|
|
|
const sketchOwnerUsername = item.project.user.username;
|
|
|
|
const userIsOwner = this.props.user.username === sketchOwnerUsername;
|
|
|
|
const sketchUrl = `/${item.project.user.username}/sketches/${item.project.id}`;
|
|
|
|
|
|
|
|
const dropdown = (
|
|
|
|
<td className="sketch-list__dropdown-column">
|
|
|
|
<button
|
|
|
|
className="sketch-list__dropdown-button"
|
|
|
|
onClick={this.toggleOptions}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
|
|
|
<InlineSVG src={downFilledTriangle} alt="Menu" />
|
|
|
|
</button>
|
|
|
|
{optionsOpen &&
|
|
|
|
<ul
|
|
|
|
className="sketch-list__action-dialogue"
|
|
|
|
>
|
|
|
|
{userIsOwner &&
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleSketchDelete}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
|
|
|
Delete
|
|
|
|
</button>
|
|
|
|
</li>}
|
|
|
|
</ul>
|
|
|
|
}
|
|
|
|
</td>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<tr
|
|
|
|
className="sketches-table__row"
|
|
|
|
>
|
|
|
|
<th scope="row">
|
|
|
|
<Link to={sketchUrl}>
|
|
|
|
{renameOpen ? '' : item.project.name}
|
|
|
|
</Link>
|
|
|
|
{renameOpen
|
|
|
|
&&
|
|
|
|
<input
|
|
|
|
value={renameValue}
|
|
|
|
onChange={this.handleRenameChange}
|
|
|
|
onKeyUp={this.handleRenameEnter}
|
|
|
|
onBlur={this.resetSketchName}
|
|
|
|
onClick={e => e.stopPropagation()}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
</th>
|
|
|
|
<td>{format(new Date(item.createdAt), 'MMM D, YYYY h:mm A')}</td>
|
|
|
|
<td>{sketchOwnerUsername}</td>
|
|
|
|
{/*
|
|
|
|
<td>{format(new Date(item.createdAt), 'MMM D, YYYY h:mm A')}</td>
|
|
|
|
<td>{format(new Date(itm.updatedAt), 'MMM D, YYYY h:mm A')}</td>
|
|
|
|
<td>{(collection.items || []).length}</td>
|
|
|
|
<td>{dropdown}</td>
|
|
|
|
*/}
|
|
|
|
</tr>);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CollectionItemRowBase.propTypes = {
|
|
|
|
collection: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
}).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,
|
|
|
|
changeProjectName: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
function mapDispatchToPropsSketchListRow(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({}, ProjectActions, IdeActions), dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
const CollectionItemRow = connect(null, mapDispatchToPropsSketchListRow)(CollectionItemRowBase);
|
|
|
|
|
|
|
|
class Collection extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.props.getCollections(this.props.username);
|
|
|
|
this.props.resetSorting();
|
|
|
|
this._renderFieldHeader = this._renderFieldHeader.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
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-09-16 20:58:32 +00:00
|
|
|
getUsername() {
|
|
|
|
return this.props.username !== undefined ? this.props.username : this.props.user.username;
|
|
|
|
}
|
|
|
|
|
2019-07-09 08:35:24 +00:00
|
|
|
getCollectionName() {
|
|
|
|
return this.props.collection.name;
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:58:32 +00:00
|
|
|
isOwner() {
|
|
|
|
let isOwner = false;
|
|
|
|
|
|
|
|
if (this.props.user != null && this.props.user.username && this.props.collection.owner.username === this.props.user.username) {
|
|
|
|
isOwner = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return isOwner;
|
|
|
|
}
|
|
|
|
|
2019-07-09 08:35:24 +00:00
|
|
|
hasCollection() {
|
|
|
|
return !this.props.loading && this.props.collection != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
hasCollectionItems() {
|
|
|
|
return this.hasCollection() && this.props.collection.items.length > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
_renderLoader() {
|
|
|
|
if (this.props.loading) return <Loader />;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
_renderCollectionMetadata() {
|
2019-09-16 20:58:32 +00:00
|
|
|
const {
|
|
|
|
id, name, description, items, owner
|
|
|
|
} = this.props.collection;
|
|
|
|
|
|
|
|
const handleEditCollectionName = (value) => {
|
|
|
|
if (value === name) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.editCollection(id, { name: value });
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleEditCollectionDescription = (value) => {
|
|
|
|
if (value === description) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.editCollection(id, { description: value });
|
|
|
|
};
|
2019-09-08 16:54:49 +00:00
|
|
|
|
2019-07-09 08:35:24 +00:00
|
|
|
return (
|
2019-09-08 16:54:49 +00:00
|
|
|
<div className="collection-metadata">
|
2019-09-16 20:58:32 +00:00
|
|
|
<h2 className="collection-metadata__name">
|
|
|
|
{
|
|
|
|
this.isOwner() ? <EditableInput value={name} onChange={handleEditCollectionName} /> : name
|
|
|
|
}
|
|
|
|
</h2>
|
|
|
|
|
2019-09-08 16:54:49 +00:00
|
|
|
<p className="collection-metadata__user">{items.length} sketches collected by {owner.username}</p>
|
2019-09-16 20:58:32 +00:00
|
|
|
|
|
|
|
<p className="collection-metadata__description">
|
|
|
|
{
|
|
|
|
this.isOwner() ?
|
|
|
|
<EditableInput
|
|
|
|
InputComponent="textarea"
|
|
|
|
value={description}
|
|
|
|
onChange={handleEditCollectionDescription}
|
|
|
|
/> :
|
|
|
|
description
|
|
|
|
}
|
|
|
|
</p>
|
2019-07-09 08:35:24 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_renderEmptyTable() {
|
|
|
|
if (!this.hasCollectionItems()) {
|
|
|
|
return (<p className="sketches-table__empty">No sketches in collection.</p>);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
_renderFieldHeader(fieldName, displayName) {
|
|
|
|
const { field, direction } = this.props.sorting;
|
|
|
|
const headerClass = classNames({
|
|
|
|
'sketches-table__header': true,
|
|
|
|
'sketches-table__header--selected': field === fieldName
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<th scope="col">
|
|
|
|
<button className="sketch-list__sort-button" onClick={() => this.props.toggleDirectionForField(fieldName)}>
|
|
|
|
<span className={headerClass}>{displayName}</span>
|
|
|
|
{field === fieldName && direction === SortingActions.DIRECTION.ASC &&
|
|
|
|
<InlineSVG src={arrowUp} />
|
|
|
|
}
|
|
|
|
{field === fieldName && direction === SortingActions.DIRECTION.DESC &&
|
|
|
|
<InlineSVG src={arrowDown} />
|
|
|
|
}
|
|
|
|
</button>
|
|
|
|
</th>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const title = this.hasCollection() ? this.getCollectionName() : null;
|
|
|
|
|
|
|
|
return (
|
2019-09-08 16:54:49 +00:00
|
|
|
<section className="collection-container">
|
|
|
|
<Helmet>
|
|
|
|
<title>{this.getTitle()}</title>
|
|
|
|
</Helmet>
|
|
|
|
<div className="">
|
2019-07-09 08:35:24 +00:00
|
|
|
{this._renderLoader()}
|
|
|
|
{this.hasCollection() && this._renderCollectionMetadata()}
|
|
|
|
{this._renderEmptyTable()}
|
|
|
|
{this.hasCollectionItems() &&
|
|
|
|
<table className="sketches-table" summary="table containing all collections">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
{this._renderFieldHeader('name', 'Name')}
|
|
|
|
{this._renderFieldHeader('createdAt', 'Date Added')}
|
|
|
|
{this._renderFieldHeader('user', 'Owner')}
|
|
|
|
<th scope="col"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.props.collection.items.map(item =>
|
|
|
|
(<CollectionItemRow
|
|
|
|
key={item.id}
|
|
|
|
item={item}
|
|
|
|
user={this.props.user}
|
2019-09-16 20:58:32 +00:00
|
|
|
username={this.getUsername()}
|
2019-07-09 08:35:24 +00:00
|
|
|
/>))}
|
|
|
|
</tbody>
|
|
|
|
</table>}
|
|
|
|
</div>
|
2019-09-08 16:54:49 +00:00
|
|
|
</section>
|
2019-07-09 08:35:24 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Collection.propTypes = {
|
|
|
|
user: PropTypes.shape({
|
|
|
|
username: PropTypes.string,
|
|
|
|
authenticated: PropTypes.bool.isRequired
|
|
|
|
}).isRequired,
|
|
|
|
getCollections: PropTypes.func.isRequired,
|
2019-09-08 16:54:49 +00:00
|
|
|
collection: PropTypes.shape({
|
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
description: PropTypes.string,
|
|
|
|
}).isRequired,
|
2019-07-09 08:35:24 +00:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
Collection.defaultProps = {
|
|
|
|
username: undefined
|
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
|
|
return {
|
|
|
|
user: state.user,
|
|
|
|
collection: getCollection(state, ownProps.collectionId),
|
|
|
|
sorting: state.sorting,
|
|
|
|
loading: state.loading,
|
|
|
|
project: state.project
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({}, CollectionsActions, ProjectsActions, ToastActions, SortingActions), dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Collection);
|