about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/direct_timeline/components/conversation.js
blob: f9a8d4f72a754de10e295187b3907539a226f5d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import StatusContent from '../../../components/status_content';
import RelativeTimestamp from '../../../components/relative_timestamp';
import DisplayName from '../../../components/display_name';
import Avatar from '../../../components/avatar';
import AttachmentList from '../../../components/attachment_list';
import { HotKeys } from 'react-hotkeys';

export default class Conversation extends ImmutablePureComponent {

  static contextTypes = {
    router: PropTypes.object,
  };

  static propTypes = {
    conversationId: PropTypes.string.isRequired,
    accounts: ImmutablePropTypes.list.isRequired,
    lastStatus: ImmutablePropTypes.map.isRequired,
    onMoveUp: PropTypes.func,
    onMoveDown: PropTypes.func,
  };

  handleClick = () => {
    if (!this.context.router) {
      return;
    }

    const { lastStatus } = this.props;
    this.context.router.history.push(`/statuses/${lastStatus.get('id')}`);
  }

  handleHotkeyMoveUp = () => {
    this.props.onMoveUp(this.props.conversationId);
  }

  handleHotkeyMoveDown = () => {
    this.props.onMoveDown(this.props.conversationId);
  }

  render () {
    const { accounts, lastStatus, lastAccount } = this.props;

    if (lastStatus === null) {
      return null;
    }

    const handlers = {
      moveDown: this.handleHotkeyMoveDown,
      moveUp: this.handleHotkeyMoveUp,
      open: this.handleClick,
    };

    let media;

    if (lastStatus.get('media_attachments').size > 0) {
      media = <AttachmentList compact media={lastStatus.get('media_attachments')} />;
    }

    return (
      <HotKeys handlers={handlers}>
        <div className='conversation focusable' tabIndex='0' onClick={this.handleClick} role='button'>
          <div className='conversation__header'>
            <div className='conversation__avatars'>
              <div>{accounts.map(account => <Avatar key={account.get('id')} size={36} account={account} />)}</div>
            </div>

            <div className='conversation__time'>
              <RelativeTimestamp timestamp={lastStatus.get('created_at')} />
              <br />
              <DisplayName account={lastAccount} withAcct={false} />
            </div>
          </div>

          <StatusContent status={lastStatus} onClick={this.handleClick} />

          {media}
        </div>
      </HotKeys>
    );
  }

}