2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-19 09:37:18 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-30 20:14:26 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-04-19 09:37:18 -04:00
|
|
|
|
|
|
|
const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
|
|
|
|
|
2017-05-30 20:14:26 -04:00
|
|
|
class AttachmentList extends ImmutablePureComponent {
|
2017-04-19 09:37:18 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
media: ImmutablePropTypes.list.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-04-19 09:37:18 -04:00
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
}
|
2017-04-19 09:37:18 -04:00
|
|
|
|
|
|
|
export default AttachmentList;
|