2019-07-09 08:35:24 +00:00
|
|
|
import format from 'date-fns/format';
|
|
|
|
import PropTypes from 'prop-types';
|
2020-02-11 22:29:35 +00:00
|
|
|
import React, { useState, useRef, useEffect } from 'react';
|
2019-07-09 08:35:24 +00:00
|
|
|
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-09-17 18:48:37 +00:00
|
|
|
import Overlay from '../../App/components/Overlay';
|
2019-12-11 14:12:00 +00:00
|
|
|
import AddToCollectionSketchList from '../../IDE/components/AddToCollectionSketchList';
|
2019-09-18 07:10:10 +00:00
|
|
|
import CopyableInput from '../../IDE/components/CopyableInput';
|
2019-11-10 20:39:22 +00:00
|
|
|
import { SketchSearchbar } from '../../IDE/components/Searchbar';
|
2019-12-10 23:34:37 +00:00
|
|
|
import dropdownArrow from '../../../images/down-arrow.svg';
|
2019-07-09 08:35:24 +00:00
|
|
|
|
|
|
|
const arrowUp = require('../../../images/sort-arrow-up.svg');
|
|
|
|
const arrowDown = require('../../../images/sort-arrow-down.svg');
|
2019-11-25 18:55:39 +00:00
|
|
|
const removeIcon = require('../../../images/close.svg');
|
2019-07-09 08:35:24 +00:00
|
|
|
|
2019-09-18 07:10:10 +00:00
|
|
|
const ShareURL = ({ value }) => {
|
2020-02-11 22:29:35 +00:00
|
|
|
const [showURL, setShowURL] = useState(false);
|
|
|
|
const node = useRef();
|
|
|
|
|
|
|
|
const handleClickOutside = (e) => {
|
|
|
|
if (node.current.contains(e.target)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setShowURL(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (showURL) {
|
|
|
|
document.addEventListener('mousedown', handleClickOutside);
|
|
|
|
} else {
|
|
|
|
document.removeEventListener('mousedown', handleClickOutside);
|
|
|
|
}
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
document.removeEventListener('mousedown', handleClickOutside);
|
|
|
|
};
|
|
|
|
}, [showURL]);
|
2019-09-18 07:10:10 +00:00
|
|
|
|
|
|
|
return (
|
2020-02-11 22:29:35 +00:00
|
|
|
<div className="collection-share" ref={node}>
|
|
|
|
<button
|
|
|
|
className="collection-share__button"
|
|
|
|
onClick={() => setShowURL(!showURL)}
|
|
|
|
>
|
2019-12-10 23:34:37 +00:00
|
|
|
<span>Share</span>
|
|
|
|
<InlineSVG className="collection-share__arrow" src={dropdownArrow} />
|
|
|
|
</button>
|
|
|
|
{ showURL &&
|
|
|
|
<div className="collection__share-dropdown">
|
|
|
|
<CopyableInput value={value} label="Link to Collection" />
|
|
|
|
</div>
|
2019-09-18 07:10:10 +00:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2019-10-02 14:37:08 +00:00
|
|
|
ShareURL.propTypes = {
|
|
|
|
value: PropTypes.string.isRequired,
|
|
|
|
};
|
|
|
|
|
2019-07-09 08:35:24 +00:00
|
|
|
class CollectionItemRowBase extends React.Component {
|
2019-10-20 13:50:41 +00:00
|
|
|
handleSketchRemove = () => {
|
|
|
|
if (window.confirm(`Are you sure you want to remove "${this.props.item.project.name}" from this collection?`)) {
|
|
|
|
this.props.removeFromCollection(this.props.collection.id, this.props.item.project.id);
|
2019-07-09 08:35:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-10-21 08:35:20 +00:00
|
|
|
const { item } = this.props;
|
2019-07-09 08:35:24 +00:00
|
|
|
const sketchOwnerUsername = item.project.user.username;
|
|
|
|
const sketchUrl = `/${item.project.user.username}/sketches/${item.project.id}`;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<tr
|
|
|
|
className="sketches-table__row"
|
|
|
|
>
|
|
|
|
<th scope="row">
|
|
|
|
<Link to={sketchUrl}>
|
2019-11-25 13:53:45 +00:00
|
|
|
{item.project.name}
|
2019-07-09 08:35:24 +00:00
|
|
|
</Link>
|
|
|
|
</th>
|
|
|
|
<td>{format(new Date(item.createdAt), 'MMM D, YYYY h:mm A')}</td>
|
|
|
|
<td>{sketchOwnerUsername}</td>
|
2019-11-25 13:53:45 +00:00
|
|
|
<td className="collection-row__action-column ">
|
|
|
|
<button
|
|
|
|
className="collection-row__remove-button"
|
|
|
|
onClick={this.handleSketchRemove}
|
|
|
|
>
|
2019-11-25 18:55:39 +00:00
|
|
|
<InlineSVG src={removeIcon} alt="Remove" />
|
2019-11-25 13:53:45 +00:00
|
|
|
</button>
|
|
|
|
</td>
|
2019-07-09 08:35:24 +00:00
|
|
|
</tr>);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CollectionItemRowBase.propTypes = {
|
|
|
|
collection: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
}).isRequired,
|
2019-10-02 14:37:08 +00:00
|
|
|
item: PropTypes.shape({
|
2020-01-29 17:31:33 +00:00
|
|
|
createdAt: PropTypes.string.isRequired,
|
2019-10-02 14:37:08 +00:00
|
|
|
project: PropTypes.shape({
|
2019-10-20 13:50:41 +00:00
|
|
|
id: PropTypes.string.isRequired,
|
2019-10-02 14:37:08 +00:00
|
|
|
name: PropTypes.string.isRequired,
|
2020-01-29 17:31:33 +00:00
|
|
|
user: PropTypes.shape({
|
|
|
|
username: PropTypes.string.isRequired
|
|
|
|
})
|
2019-10-02 14:37:08 +00:00
|
|
|
}).isRequired,
|
|
|
|
}).isRequired,
|
2019-07-09 08:35:24 +00:00
|
|
|
user: PropTypes.shape({
|
|
|
|
username: PropTypes.string,
|
|
|
|
authenticated: PropTypes.bool.isRequired
|
|
|
|
}).isRequired,
|
2019-11-25 13:53:45 +00:00
|
|
|
removeFromCollection: PropTypes.func.isRequired
|
2019-07-09 08:35:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapDispatchToPropsSketchListRow(dispatch) {
|
2019-10-20 13:50:41 +00:00
|
|
|
return bindActionCreators(Object.assign({}, CollectionsActions, ProjectActions, IdeActions), dispatch);
|
2019-07-09 08:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2019-09-17 18:48:37 +00:00
|
|
|
this.showAddSketches = this.showAddSketches.bind(this);
|
|
|
|
this.hideAddSketches = this.hideAddSketches.bind(this);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
isAddingSketches: false,
|
|
|
|
};
|
2019-07-09 08:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2019-10-21 08:35:20 +00:00
|
|
|
if (this.props.user != null &&
|
|
|
|
this.props.user.username &&
|
|
|
|
this.props.collection.owner.username === this.props.user.username) {
|
2019-09-16 20:58:32 +00:00
|
|
|
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 {
|
2019-10-21 08:35:20 +00:00
|
|
|
id, name, description, items, owner
|
2019-09-16 20:58:32 +00:00
|
|
|
} = this.props.collection;
|
|
|
|
|
2019-09-18 07:10:10 +00:00
|
|
|
const hostname = window.location.origin;
|
|
|
|
const { username } = this.props;
|
|
|
|
|
|
|
|
const baseURL = `${hostname}/${username}/collections/`;
|
|
|
|
|
2019-09-16 20:58:32 +00:00
|
|
|
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-10-21 08:35:20 +00:00
|
|
|
//
|
|
|
|
// TODO: Implement UI for editing slug
|
|
|
|
//
|
|
|
|
// const handleEditCollectionSlug = (value) => {
|
|
|
|
// if (value === slug) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// this.props.editCollection(id, { slug: value });
|
|
|
|
// };
|
2019-09-16 20:58:32 +00:00
|
|
|
|
2019-09-18 07:10:10 +00:00
|
|
|
return (
|
2019-10-03 16:38:52 +00:00
|
|
|
<div className={`collection-metadata ${this.isOwner() ? 'collection-metadata--is-owner' : ''}`}>
|
2019-09-18 07:10:10 +00:00
|
|
|
<div className="collection-metadata__columns">
|
|
|
|
<div className="collection-metadata__column--left">
|
|
|
|
<h2 className="collection-metadata__name">
|
|
|
|
{
|
2020-01-29 17:31:33 +00:00
|
|
|
this.isOwner() ?
|
|
|
|
<EditableInput value={name} onChange={handleEditCollectionName} validate={value => value !== ''} /> :
|
|
|
|
name
|
2019-09-18 07:10:10 +00:00
|
|
|
}
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<p className="collection-metadata__description">
|
|
|
|
{
|
|
|
|
this.isOwner() ?
|
|
|
|
<EditableInput
|
|
|
|
InputComponent="textarea"
|
|
|
|
value={description}
|
|
|
|
onChange={handleEditCollectionDescription}
|
2019-11-25 13:31:33 +00:00
|
|
|
emptyPlaceholder="Add description"
|
2019-09-18 07:10:10 +00:00
|
|
|
/> :
|
|
|
|
description
|
|
|
|
}
|
|
|
|
</p>
|
2019-10-03 04:41:57 +00:00
|
|
|
|
2020-01-15 09:45:50 +00:00
|
|
|
<p className="collection-metadata__user">Collection by{' '}
|
|
|
|
<Link to={`${hostname}/${username}/sketches`}>{owner.username}</Link>
|
|
|
|
</p>
|
2019-11-10 18:35:44 +00:00
|
|
|
|
2019-10-03 04:41:57 +00:00
|
|
|
<p className="collection-metadata__user">{items.length} sketch{items.length === 1 ? '' : 'es'}</p>
|
2019-09-18 07:10:10 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="collection-metadata__column--right">
|
|
|
|
<p className="collection-metadata__share">
|
|
|
|
<ShareURL value={`${baseURL}${id}`} />
|
|
|
|
</p>
|
2019-10-03 04:41:57 +00:00
|
|
|
{
|
|
|
|
this.isOwner() &&
|
|
|
|
<button className="collection-metadata__add-button" onClick={this.showAddSketches}>
|
2019-10-03 15:59:04 +00:00
|
|
|
Add Sketch
|
2019-10-03 04:41:57 +00:00
|
|
|
</button>
|
|
|
|
}
|
2019-09-18 07:10:10 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-09 08:35:24 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-17 18:48:37 +00:00
|
|
|
showAddSketches() {
|
|
|
|
this.setState({
|
|
|
|
isAddingSketches: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
hideAddSketches() {
|
|
|
|
this.setState({
|
|
|
|
isAddingSketches: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-07-09 08:35:24 +00:00
|
|
|
_renderEmptyTable() {
|
2019-10-20 15:21:28 +00:00
|
|
|
const isLoading = this.props.loading;
|
2019-12-11 14:56:57 +00:00
|
|
|
const hasCollectionItems = this.props.collection != null &&
|
|
|
|
this.props.collection.items.length > 0;
|
2019-10-20 15:21:28 +00:00
|
|
|
|
|
|
|
if (!isLoading && !hasCollectionItems) {
|
2019-11-10 18:35:44 +00:00
|
|
|
return (<p className="collection-empty-message">No sketches in collection</p>);
|
2019-07-09 08:35:24 +00:00
|
|
|
}
|
|
|
|
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-11-10 18:35:44 +00:00
|
|
|
<section className="collection-container" data-has-items={this.hasCollectionItems() ? 'true' : 'false'}>
|
2019-09-08 16:54:49 +00:00
|
|
|
<Helmet>
|
|
|
|
<title>{this.getTitle()}</title>
|
|
|
|
</Helmet>
|
2019-11-10 18:35:44 +00:00
|
|
|
{this._renderLoader()}
|
|
|
|
{this.hasCollection() && this._renderCollectionMetadata()}
|
2020-04-07 23:20:29 +00:00
|
|
|
<div className="collection-content">
|
|
|
|
<div className="collection-table-wrapper">
|
|
|
|
{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}
|
|
|
|
username={this.getUsername()}
|
|
|
|
collection={this.props.collection}
|
|
|
|
/>))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
}
|
|
|
|
{
|
|
|
|
this.state.isAddingSketches && (
|
|
|
|
<Overlay
|
|
|
|
title="Add sketch"
|
|
|
|
actions={<SketchSearchbar />}
|
|
|
|
closeOverlay={this.hideAddSketches}
|
|
|
|
isFixedHeight
|
|
|
|
>
|
|
|
|
<div className="collection-add-sketch">
|
|
|
|
<AddToCollectionSketchList username={this.props.username} collection={this.props.collection} />
|
|
|
|
</div>
|
|
|
|
</Overlay>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
</div>
|
2019-07-09 08:35:24 +00:00
|
|
|
</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({
|
2020-04-10 17:58:55 +00:00
|
|
|
id: PropTypes.string,
|
|
|
|
name: PropTypes.string,
|
2019-10-02 14:37:08 +00:00
|
|
|
slug: PropTypes.string,
|
2019-09-08 16:54:49 +00:00
|
|
|
description: PropTypes.string,
|
2019-10-02 14:37:08 +00:00
|
|
|
owner: PropTypes.shape({
|
2020-04-10 17:58:55 +00:00
|
|
|
username: PropTypes.string,
|
2019-10-02 14:37:08 +00:00
|
|
|
}).isRequired,
|
|
|
|
items: PropTypes.arrayOf(PropTypes.shape({})),
|
2020-04-10 17:58:55 +00:00
|
|
|
}),
|
2019-07-09 08:35:24 +00:00
|
|
|
username: PropTypes.string,
|
|
|
|
loading: PropTypes.bool.isRequired,
|
|
|
|
toggleDirectionForField: PropTypes.func.isRequired,
|
2019-10-02 14:37:08 +00:00
|
|
|
editCollection: PropTypes.func.isRequired,
|
2019-07-09 08:35:24 +00:00
|
|
|
resetSorting: PropTypes.func.isRequired,
|
|
|
|
sorting: PropTypes.shape({
|
|
|
|
field: PropTypes.string.isRequired,
|
|
|
|
direction: PropTypes.string.isRequired
|
|
|
|
}).isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
Collection.defaultProps = {
|
2020-04-10 17:58:55 +00:00
|
|
|
username: undefined,
|
|
|
|
collection: {
|
|
|
|
id: undefined,
|
|
|
|
items: [],
|
|
|
|
owner: {
|
|
|
|
username: undefined
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 08:35:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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) {
|
2019-10-21 08:35:20 +00:00
|
|
|
return bindActionCreators(
|
|
|
|
Object.assign({}, CollectionsActions, ProjectsActions, ToastActions, SortingActions),
|
|
|
|
dispatch
|
|
|
|
);
|
2019-07-09 08:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Collection);
|