import format from 'date-fns/format'; import PropTypes from 'prop-types'; import React, { useState, useRef, useEffect } from 'react'; import { Helmet } from 'react-helmet'; import { connect } from 'react-redux'; import { Link } from 'react-router'; import { bindActionCreators } from 'redux'; import classNames from 'classnames'; import Button from '../../../common/Button'; import Icons from '../../../common/Icons'; 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'; import Loader from '../../App/components/loader'; import EditableInput from '../../IDE/components/EditableInput'; import Overlay from '../../App/components/Overlay'; import AddToCollectionSketchList from '../../IDE/components/AddToCollectionSketchList'; import CopyableInput from '../../IDE/components/CopyableInput'; import { SketchSearchbar } from '../../IDE/components/Searchbar'; import ArrowUpIcon from '../../../images/sort-arrow-up.svg'; import ArrowDownIcon from '../../../images/sort-arrow-down.svg'; import RemoveIcon from '../../../images/close.svg'; const ShareURL = ({ value }) => { 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]); return (
{ showURL &&
}
); }; ShareURL.propTypes = { value: PropTypes.string.isRequired, }; class CollectionItemRowBase extends React.Component { 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); } } render() { const { item } = this.props; const sketchOwnerUsername = item.project.user.username; const sketchUrl = `/${item.project.user.username}/sketches/${item.project.id}`; return ( {item.project.name} {format(new Date(item.createdAt), 'MMM D, YYYY h:mm A')} {sketchOwnerUsername} ); } } CollectionItemRowBase.propTypes = { collection: PropTypes.shape({ id: PropTypes.string.isRequired, name: PropTypes.string.isRequired }).isRequired, item: PropTypes.shape({ createdAt: PropTypes.string.isRequired, project: PropTypes.shape({ id: PropTypes.string.isRequired, name: PropTypes.string.isRequired, user: PropTypes.shape({ username: PropTypes.string.isRequired }) }).isRequired, }).isRequired, user: PropTypes.shape({ username: PropTypes.string, authenticated: PropTypes.bool.isRequired }).isRequired, removeFromCollection: PropTypes.func.isRequired }; function mapDispatchToPropsSketchListRow(dispatch) { return bindActionCreators(Object.assign({}, CollectionsActions, 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); this.showAddSketches = this.showAddSketches.bind(this); this.hideAddSketches = this.hideAddSketches.bind(this); this.state = { isAddingSketches: false, }; } 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`; } getUsername() { return this.props.username !== undefined ? this.props.username : this.props.user.username; } getCollectionName() { return this.props.collection.name; } 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; } 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 ; return null; } _renderCollectionMetadata() { const { id, name, description, items, owner } = this.props.collection; const hostname = window.location.origin; const { username } = this.props; const baseURL = `${hostname}/${username}/collections/`; 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 }); }; // // TODO: Implement UI for editing slug // // const handleEditCollectionSlug = (value) => { // if (value === slug) { // return; // } // // this.props.editCollection(id, { slug: value }); // }; return (

{ this.isOwner() ? value !== ''} /> : name }

{ this.isOwner() ? : description }

Collection by{' '} {owner.username}

{items.length} sketch{items.length === 1 ? '' : 'es'}

{ this.isOwner() && }
); } showAddSketches() { this.setState({ isAddingSketches: true, }); } hideAddSketches() { this.setState({ isAddingSketches: false, }); } _renderEmptyTable() { const isLoading = this.props.loading; const hasCollectionItems = this.props.collection != null && this.props.collection.items.length > 0; if (!isLoading && !hasCollectionItems) { return (

No sketches in collection

); } return null; } _getButtonLabel = (fieldName, displayName) => { const { field, direction } = this.props.sorting; let buttonLabel; if (field !== fieldName) { if (field === 'name') { buttonLabel = `Sort by ${displayName} ascending.`; } else { buttonLabel = `Sort by ${displayName} descending.`; } } else if (direction === SortingActions.DIRECTION.ASC) { buttonLabel = `Sort by ${displayName} descending.`; } else { buttonLabel = `Sort by ${displayName} ascending.`; } return buttonLabel; } _renderFieldHeader(fieldName, displayName) { const { field, direction } = this.props.sorting; const headerClass = classNames({ 'arrowDown': true, 'sketches-table__header--selected': field === fieldName }); const buttonLabel = this._getButtonLabel(fieldName, displayName); return ( ); } render() { const title = this.hasCollection() ? this.getCollectionName() : null; return (
{this.getTitle()} {this._renderLoader()} {this.hasCollection() && this._renderCollectionMetadata()}
{this._renderEmptyTable()} {this.hasCollectionItems() && {this._renderFieldHeader('name', 'Name')} {this._renderFieldHeader('createdAt', 'Date Added')} {this._renderFieldHeader('user', 'Owner')} {this.props.collection.items.map(item => ())}
} { this.state.isAddingSketches && ( } closeOverlay={this.hideAddSketches} isFixedHeight >
) }
); } } Collection.propTypes = { user: PropTypes.shape({ username: PropTypes.string, authenticated: PropTypes.bool.isRequired }).isRequired, getCollections: PropTypes.func.isRequired, collection: PropTypes.shape({ id: PropTypes.string, name: PropTypes.string, slug: PropTypes.string, description: PropTypes.string, owner: PropTypes.shape({ username: PropTypes.string, }).isRequired, items: PropTypes.arrayOf(PropTypes.shape({})), }), username: PropTypes.string, loading: PropTypes.bool.isRequired, toggleDirectionForField: PropTypes.func.isRequired, editCollection: PropTypes.func.isRequired, resetSorting: PropTypes.func.isRequired, sorting: PropTypes.shape({ field: PropTypes.string.isRequired, direction: PropTypes.string.isRequired }).isRequired }; Collection.defaultProps = { username: undefined, collection: { id: undefined, items: [], owner: { 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);