import React from 'react'
import {
Actions,
DOMUtils,
TaskFactory,
FocusedPerspectiveStore,
} from 'nylas-exports';
import {RetinaImg} from 'nylas-component-kit';
export default class ThreadTrashButton extends React.Component {
static displayName = "ThreadTrashButton";
static containerRequired = false;
static propTypes = {
thread: React.PropTypes.object.isRequired,
};
_onRemove = (e) => {
if (!DOMUtils.nodeIsVisible(e.currentTarget)) {
return;
}
const tasks = TaskFactory.tasksForMovingToTrash({
source: "Toolbar Button: Thread List",
threads: [this.props.thread],
});
Actions.queueTasks(tasks);
Actions.popSheet();
e.stopPropagation();
}
render() {
const allowed = FocusedPerspectiveStore.current().canMoveThreadsTo([this.props.thread], 'trash');
if (!allowed) {
return ();
}
return (
);
}
}