mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
1948f9e767
* Remove deprecated features at React v15.5
- [x] React.PropTypes
- [x] react-addons-pure-render-mixin
- [x] react-addons-test-utils
* Uncommented out & Add browserify_rails options
* re-add react-addons-shallow
* Fix syntax error from resolve conflicts
* follow up 59a77923b3
32 lines
828 B
JavaScript
32 lines
828 B
JavaScript
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
|
|
|
|
class AttachmentList extends React.PureComponent {
|
|
|
|
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>
|
|
);
|
|
}
|
|
}
|
|
|
|
AttachmentList.propTypes = {
|
|
media: ImmutablePropTypes.list.isRequired
|
|
};
|
|
|
|
export default AttachmentList;
|