Skip to content
Snippets Groups Projects
Commit 8f03486e authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Add deleteting via context menu

parent fcf53f0d
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ const dragTypeMap = { ...@@ -17,7 +17,7 @@ const dragTypeMap = {
sprite: DragConstants.BACKPACK_SPRITE sprite: DragConstants.BACKPACK_SPRITE
}; };
const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, onToggle}) => ( const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, onToggle, onDelete}) => (
<div className={styles.backpackContainer}> <div className={styles.backpackContainer}>
<div <div
className={styles.backpackHeader} className={styles.backpackHeader}
...@@ -43,7 +43,10 @@ const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, on ...@@ -43,7 +43,10 @@ const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, on
)} )}
</div> </div>
{expanded ? ( {expanded ? (
<div className={styles.backpackList}> <div
className={styles.backpackList}
ref={dropAreaRef}
>
{error ? ( {error ? (
<div className={styles.statusMessage}> <div className={styles.statusMessage}>
<FormattedMessage <FormattedMessage
...@@ -67,7 +70,6 @@ const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, on ...@@ -67,7 +70,6 @@ const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, on
className={classNames(styles.backpackListInner, { className={classNames(styles.backpackListInner, {
[styles.dragOver]: dragOver [styles.dragOver]: dragOver
})} })}
ref={dropAreaRef}
> >
{contents.map(item => ( {contents.map(item => (
<SpriteSelectorItem <SpriteSelectorItem
...@@ -76,10 +78,12 @@ const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, on ...@@ -76,10 +78,12 @@ const Backpack = ({contents, dragOver, dropAreaRef, error, expanded, loading, on
details={item.name} details={item.name}
dragPayload={item} dragPayload={item}
dragType={dragTypeMap[item.type]} dragType={dragTypeMap[item.type]}
id={item.id}
key={item.id} key={item.id}
name={item.type} name={item.type}
selected={false} selected={false}
onClick={noop} onClick={noop}
onDeleteButtonClick={onDelete}
/> />
))} ))}
</div> </div>
...@@ -111,6 +115,7 @@ Backpack.propTypes = { ...@@ -111,6 +115,7 @@ Backpack.propTypes = {
error: PropTypes.bool, error: PropTypes.bool,
expanded: PropTypes.bool, expanded: PropTypes.bool,
loading: PropTypes.bool, loading: PropTypes.bool,
onDelete: PropTypes.func,
onToggle: PropTypes.func onToggle: PropTypes.func
}; };
......
...@@ -2,7 +2,7 @@ import React from 'react'; ...@@ -2,7 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import bindAll from 'lodash.bindall'; import bindAll from 'lodash.bindall';
import BackpackComponent from '../components/backpack/backpack.jsx'; import BackpackComponent from '../components/backpack/backpack.jsx';
import {getBackpackContents, saveBackpackObject, soundPayload, costumePayload} from '../lib/backpack-api'; import {getBackpackContents, saveBackpackObject, deleteBackpackObject, soundPayload, costumePayload} from '../lib/backpack-api';
import DragConstants from '../lib/drag-constants'; import DragConstants from '../lib/drag-constants';
import {connect} from 'react-redux'; import {connect} from 'react-redux';
...@@ -14,6 +14,7 @@ class Backpack extends React.Component { ...@@ -14,6 +14,7 @@ class Backpack extends React.Component {
bindAll(this, [ bindAll(this, [
'handleDrop', 'handleDrop',
'handleToggle', 'handleToggle',
'handleDelete',
'refreshContents', 'refreshContents',
'setRef' 'setRef'
]); ]);
...@@ -84,6 +85,14 @@ class Backpack extends React.Component { ...@@ -84,6 +85,14 @@ class Backpack extends React.Component {
})) }))
.then(this.refreshContents); .then(this.refreshContents);
} }
handleDelete (id) {
deleteBackpackObject({
host: this.props.host,
token: this.props.token,
username: this.props.username,
id: id
}).then(this.refreshContents);
}
refreshContents () { refreshContents () {
if (this.props.token && this.props.username) { if (this.props.token && this.props.username) {
this.setState({loading: true, error: false}); this.setState({loading: true, error: false});
...@@ -114,6 +123,7 @@ class Backpack extends React.Component { ...@@ -114,6 +123,7 @@ class Backpack extends React.Component {
error={this.state.error} error={this.state.error}
expanded={this.state.expanded} expanded={this.state.expanded}
loading={this.state.loading} loading={this.state.loading}
onDelete={this.handleDelete}
onToggle={this.props.host ? this.handleToggle : null} onToggle={this.props.host ? this.handleToggle : null}
/> />
); );
......
...@@ -49,9 +49,28 @@ const saveBackpackObject = ({ ...@@ -49,9 +49,28 @@ const saveBackpackObject = ({
}); });
}); });
const deleteBackpackObject = ({
host,
username,
token,
id
}) => new Promise((resolve, reject) => {
xhr({
method: 'DELETE',
uri: `${host}${username}/${id}`,
headers: {'x-token': token}
}, (error, response) => {
if (error || response.statusCode !== 200) {
return reject();
}
return resolve(response.body);
});
});
export { export {
getBackpackContents, getBackpackContents,
saveBackpackObject, saveBackpackObject,
deleteBackpackObject,
costumePayload, costumePayload,
soundPayload soundPayload
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment