2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-19 13:37:18 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-31 00:14:26 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-04-19 13:37:18 +00:00
|
|
|
|
|
|
|
const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class AttachmentList extends ImmutablePureComponent {
|
2017-04-19 13:37:18 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
media: ImmutablePropTypes.list.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-04-19 13:37:18 +00: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'>
|
2018-01-17 15:57:15 +00:00
|
|
|
{media.map(attachment => (
|
2017-04-19 13:37:18 +00:00
|
|
|
<li key={attachment.get('id')}>
|
|
|
|
<a href={attachment.get('remote_url')} target='_blank' rel='noopener'>{filename(attachment.get('remote_url'))}</a>
|
|
|
|
</li>
|
2018-01-17 15:57:15 +00:00
|
|
|
))}
|
2017-04-19 13:37:18 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
}
|