import { React, PropTypes, Actions, DateUtils } from 'nylas-exports'; export default class RelatedThreads extends React.Component { static displayName = 'RelatedThreads'; static propTypes = { contact: PropTypes.object, contactThreads: PropTypes.array, }; static containerStyles = { order: 99, }; constructor(props) { super(props); this.state = { expanded: false }; this.DEFAULT_NUM = 3; } _onClick(thread) { Actions.setFocus({ collection: 'thread', item: thread }); } _toggle = () => { this.setState({ expanded: !this.state.expanded }); }; _renderToggle() { if (!this._hasToggle()) { return false; } const msg = this.state.expanded ? 'Collapse' : 'Show more'; return (
{msg}
); } _hasToggle() { return this.props.contactThreads.length > this.DEFAULT_NUM; } render() { let limit; if (this.state.expanded) { limit = this.props.contactThreads.length; } else { limit = Math.min(this.props.contactThreads.length, this.DEFAULT_NUM); } const height = (limit + (this._hasToggle() ? 1 : 0)) * 31; const shownThreads = this.props.contactThreads.slice(0, limit); const threads = shownThreads.map(thread => { const { snippet, subject, lastMessageReceivedTimestamp } = thread; const snippetStyles = subject && subject.length ? { marginLeft: '1em' } : {}; const onClick = () => { this._onClick(thread); }; return (
{subject} {snippet} {DateUtils.shortTimeString(lastMessageReceivedTimestamp)}
); }); return (
{threads} {this._renderToggle()}
); } }