You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
855 B
34 lines
855 B
8 years ago
|
import React from 'react';
|
||
8 years ago
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||
|
|
||
|
const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
|
||
|
|
||
8 years ago
|
class AttachmentList extends React.PureComponent {
|
||
8 years ago
|
|
||
|
render () {
|
||
|
const { media } = this.props;
|
||
|
|
||
|
return (
|
||
|
<div className='attachment-list'>
|
||
|
<div className='attachment-list__icon'>
|
||
|
<i className='fa fa-link' />
|
||
|
</div>
|
||
|
|
||
|
<ul className='attachment-list__list'>
|
||
|
{media.map(attachment =>
|
||
|
<li key={attachment.get('id')}>
|
||
|
<a href={attachment.get('remote_url')} target='_blank' rel='noopener'>{filename(attachment.get('remote_url'))}</a>
|
||
|
</li>
|
||
|
)}
|
||
|
</ul>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
8 years ago
|
}
|
||
|
|
||
|
AttachmentList.propTypes = {
|
||
|
media: ImmutablePropTypes.list.isRequired
|
||
|
};
|
||
8 years ago
|
|
||
|
export default AttachmentList;
|