2019-09-09 16:52:14 +00:00
|
|
|
import format from 'date-fns/format';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { Link } from 'react-router';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import * as ProjectActions from '../../actions/project';
|
|
|
|
import * as CollectionsActions from '../../actions/collections';
|
|
|
|
import * as IdeActions from '../../actions/ide';
|
|
|
|
import * as ToastActions from '../../actions/toast';
|
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import DownFilledTriangleIcon from '../../../../images/down-filled-triangle.svg';
|
2019-09-09 16:52:14 +00:00
|
|
|
|
|
|
|
class CollectionListRowBase extends React.Component {
|
|
|
|
static projectInCollection(project, collection) {
|
|
|
|
return collection.items.find(item => item.project.id === project.id) != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
optionsOpen: false,
|
2019-11-10 19:28:13 +00:00
|
|
|
isFocused: false,
|
|
|
|
renameOpen: false,
|
2020-01-15 10:56:29 +00:00
|
|
|
renameValue: '',
|
2019-09-09 16:52:14 +00:00
|
|
|
};
|
2020-04-02 21:52:04 +00:00
|
|
|
this.renameInput = React.createRef();
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closeAll = () => {
|
|
|
|
this.setState({
|
2019-11-10 19:28:13 +00:00
|
|
|
optionsOpen: false,
|
|
|
|
renameOpen: false,
|
2019-09-09 16:52:14 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:50:51 +00:00
|
|
|
handleAddSketches = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.props.onAddSketches();
|
|
|
|
}
|
|
|
|
|
2019-09-09 16:52:14 +00:00
|
|
|
handleDropdownOpen = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.openOptions();
|
|
|
|
}
|
|
|
|
|
2019-10-20 13:31:20 +00:00
|
|
|
handleCollectionDelete = () => {
|
2019-09-09 16:52:14 +00:00
|
|
|
this.closeAll();
|
|
|
|
if (window.confirm(`Are you sure you want to delete "${this.props.collection.name}"?`)) {
|
2019-10-20 13:31:20 +00:00
|
|
|
this.props.deleteCollection(this.props.collection.id);
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-10 19:28:13 +00:00
|
|
|
handleRenameOpen = () => {
|
|
|
|
this.closeAll();
|
|
|
|
this.setState({
|
|
|
|
renameOpen: true,
|
2020-01-15 10:56:29 +00:00
|
|
|
renameValue: this.props.collection.name,
|
2020-04-02 21:52:04 +00:00
|
|
|
}, () => this.renameInput.current.focus());
|
2019-11-10 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleRenameChange = (e) => {
|
|
|
|
this.setState({
|
|
|
|
renameValue: e.target.value
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRenameEnter = (e) => {
|
|
|
|
if (e.key === 'Enter') {
|
2020-04-02 21:52:04 +00:00
|
|
|
this.updateName();
|
2019-11-10 19:28:13 +00:00
|
|
|
this.closeAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-02 21:52:04 +00:00
|
|
|
handleRenameBlur = () => {
|
|
|
|
this.updateName();
|
|
|
|
this.closeAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateName = () => {
|
|
|
|
const isValid = this.state.renameValue.trim().length !== 0;
|
|
|
|
if (isValid) {
|
|
|
|
this.props.editCollection(this.props.collection.id, { name: this.state.renameValue.trim() });
|
|
|
|
}
|
|
|
|
}
|
2019-11-10 19:28:13 +00:00
|
|
|
|
2019-09-09 16:52:14 +00:00
|
|
|
renderActions = () => {
|
|
|
|
const { optionsOpen } = this.state;
|
|
|
|
const userIsOwner = this.props.user.username === this.props.username;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
|
|
|
<button
|
|
|
|
className="sketch-list__dropdown-button"
|
|
|
|
onClick={this.toggleOptions}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
2020-05-05 23:03:58 +00:00
|
|
|
aria-label="Toggle Open/Close collection options"
|
2019-09-09 16:52:14 +00:00
|
|
|
>
|
2020-04-29 22:34:37 +00:00
|
|
|
<DownFilledTriangleIcon title="Menu" />
|
2019-09-09 16:52:14 +00:00
|
|
|
</button>
|
|
|
|
{optionsOpen &&
|
|
|
|
<ul
|
|
|
|
className="sketch-list__action-dialogue"
|
|
|
|
>
|
2019-12-11 14:50:51 +00:00
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleAddSketches}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
2020-01-15 09:50:17 +00:00
|
|
|
Add sketch
|
2019-12-11 14:50:51 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
2019-09-09 16:52:14 +00:00
|
|
|
{userIsOwner &&
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
2019-10-20 13:31:20 +00:00
|
|
|
onClick={this.handleCollectionDelete}
|
2019-09-09 16:52:14 +00:00
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
|
|
|
Delete
|
|
|
|
</button>
|
|
|
|
</li>}
|
2019-11-10 19:28:13 +00:00
|
|
|
{userIsOwner &&
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
className="sketch-list__action-option"
|
|
|
|
onClick={this.handleRenameOpen}
|
|
|
|
onBlur={this.onBlurComponent}
|
|
|
|
onFocus={this.onFocusComponent}
|
|
|
|
>
|
|
|
|
Rename
|
|
|
|
</button>
|
|
|
|
</li>}
|
2019-09-09 16:52:14 +00:00
|
|
|
</ul>
|
|
|
|
}
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderCollectionName = () => {
|
2019-11-10 18:50:45 +00:00
|
|
|
const { collection, username } = this.props;
|
2019-09-09 16:52:14 +00:00
|
|
|
const { renameOpen, renameValue } = this.state;
|
2019-10-02 14:37:08 +00:00
|
|
|
|
2019-09-09 16:52:14 +00:00
|
|
|
return (
|
|
|
|
<React.Fragment>
|
|
|
|
<Link to={{ pathname: `/${username}/collections/${collection.id}`, state: { skipSavingPath: true } }}>
|
|
|
|
{renameOpen ? '' : collection.name}
|
|
|
|
</Link>
|
|
|
|
{renameOpen
|
|
|
|
&&
|
|
|
|
<input
|
|
|
|
value={renameValue}
|
|
|
|
onChange={this.handleRenameChange}
|
|
|
|
onKeyUp={this.handleRenameEnter}
|
2020-04-02 21:52:04 +00:00
|
|
|
onBlur={this.handleRenameBlur}
|
2019-09-09 16:52:14 +00:00
|
|
|
onClick={e => e.stopPropagation()}
|
2020-04-02 21:52:04 +00:00
|
|
|
ref={this.renameInput}
|
2019-09-09 16:52:14 +00:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
</React.Fragment>
|
2019-10-02 14:37:08 +00:00
|
|
|
);
|
2019-09-09 16:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-11-10 18:50:45 +00:00
|
|
|
const { collection } = this.props;
|
2019-09-09 16:52:14 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<tr
|
2019-11-10 18:50:45 +00:00
|
|
|
className="sketches-table__row"
|
2019-09-09 16:52:14 +00:00
|
|
|
key={collection.id}
|
|
|
|
>
|
|
|
|
<th scope="row">
|
2019-10-19 17:20:00 +00:00
|
|
|
<span className="sketches-table__name">
|
|
|
|
{this.renderCollectionName()}
|
|
|
|
</span>
|
2019-09-09 16:52:14 +00:00
|
|
|
</th>
|
2019-09-11 18:06:08 +00:00
|
|
|
<td>{format(new Date(collection.createdAt), 'MMM D, YYYY')}</td>
|
|
|
|
<td>{format(new Date(collection.updatedAt), 'MMM D, YYYY')}</td>
|
2019-09-09 16:52:14 +00:00
|
|
|
<td>{(collection.items || []).length}</td>
|
|
|
|
<td className="sketch-list__dropdown-column">
|
|
|
|
{this.renderActions()}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CollectionListRowBase.propTypes = {
|
|
|
|
collection: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
2019-10-19 17:20:00 +00:00
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
owner: PropTypes.shape({
|
|
|
|
username: PropTypes.string.isRequired,
|
|
|
|
}).isRequired,
|
2020-01-29 17:31:33 +00:00
|
|
|
createdAt: PropTypes.string.isRequired,
|
|
|
|
updatedAt: PropTypes.string.isRequired,
|
|
|
|
items: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
project: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired
|
|
|
|
})
|
|
|
|
}))
|
2019-09-09 16:52:14 +00:00
|
|
|
}).isRequired,
|
|
|
|
username: PropTypes.string.isRequired,
|
|
|
|
user: PropTypes.shape({
|
|
|
|
username: PropTypes.string,
|
|
|
|
authenticated: PropTypes.bool.isRequired
|
|
|
|
}).isRequired,
|
2019-11-10 19:28:13 +00:00
|
|
|
deleteCollection: PropTypes.func.isRequired,
|
|
|
|
editCollection: PropTypes.func.isRequired,
|
2019-12-11 14:50:51 +00:00
|
|
|
onAddSketches: PropTypes.func.isRequired,
|
2019-09-09 16:52:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapDispatchToPropsSketchListRow(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({}, CollectionsActions, ProjectActions, IdeActions, ToastActions), dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(null, mapDispatchToPropsSketchListRow)(CollectionListRowBase);
|