summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/components/post_attachment_list.jsx
blob: 3d7c0e4cdbc3952cee1122fb1e042f2c19e2c7c4 (plain)
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
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import PostAttachment from './post_attachment.jsx';

import PropTypes from 'prop-types';

import React from 'react';

export default function PostAttachmentList(props) {
    const content = [];
    props.attachments.forEach((attachment, i) => {
        content.push(
            <PostAttachment
                attachment={attachment}
                key={'att_' + i}
            />
        );
    });

    return (
        <div className='attachment_list'>
            {content}
        </div>
    );
}

PostAttachmentList.propTypes = {
    attachments: PropTypes.array.isRequired
};