about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/status_list.jsx
blob: 5a89d6d602f3f40d3fe539dd6174fdf9ef3231a8 (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
import Status             from './status';
import ImmutablePropTypes from 'react-immutable-proptypes';
import PureRenderMixin    from 'react-addons-pure-render-mixin';

const StatusList = React.createClass({

  propTypes: {
    statuses: ImmutablePropTypes.list.isRequired
  },

  mixins: [PureRenderMixin],

  render () {
    return (
      <div style={{ overflowY: 'scroll', flex: '1 1 auto' }}>
        <div>
          {this.props.statuses.map((status) => {
            return <Status key={status.get('id')} status={status} onReply={this.props.onReply} />;
          })}
        </div>
      </div>
    );
  }

});

export default StatusList;