import React from 'react'; export default class extends React.Component { getClassName() { if (this.props.category.is_read) { return 'read-status item-read'; } else { return 'read-status item-new'; } } getTitle() { if (this.props.category.is_closed) { if (this.props.category.is_read) { return gettext("This category has no new posts. (closed)"); } else { return gettext("This category has new posts. (closed)"); } } else { if (this.props.category.is_read) { return gettext("This category has no new posts."); } else { return gettext("This category has new posts."); } } } getIcon() { if (this.props.category.is_closed) { if (this.props.category.is_read) { return 'lock_outline'; } else { return 'lock'; } } else { if (this.props.category.is_read) { return 'chat_bubble_outline'; } else { return 'chat_bubble'; } } } render() { /* jshint ignore:start */ return