2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-09-13 21:39:10 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-11-25 09:41:45 -05:00
|
|
|
import Immutable from 'immutable';
|
2017-01-19 19:00:14 -05:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-20 11:31:47 -04:00
|
|
|
import punycode from 'punycode';
|
2017-09-01 10:20:16 -04:00
|
|
|
import classnames from 'classnames';
|
2017-01-19 19:00:14 -05:00
|
|
|
|
2017-05-04 09:52:08 -04:00
|
|
|
const IDNA_PREFIX = 'xn--';
|
|
|
|
|
|
|
|
const decodeIDNA = domain => {
|
|
|
|
return domain
|
|
|
|
.split('.')
|
|
|
|
.map(part => part.indexOf(IDNA_PREFIX) === 0 ? punycode.decode(part.slice(IDNA_PREFIX.length)) : part)
|
|
|
|
.join('.');
|
2017-05-20 11:31:47 -04:00
|
|
|
};
|
2017-01-19 19:00:14 -05:00
|
|
|
|
|
|
|
const getHostname = url => {
|
|
|
|
const parser = document.createElement('a');
|
|
|
|
parser.href = url;
|
|
|
|
return parser.hostname;
|
|
|
|
};
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Card extends React.PureComponent {
|
2017-01-19 19:00:14 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
card: ImmutablePropTypes.map,
|
2017-09-13 21:39:10 -04:00
|
|
|
maxDescription: PropTypes.number,
|
2017-11-25 09:41:45 -05:00
|
|
|
onOpenMedia: PropTypes.func.isRequired,
|
2017-09-13 21:39:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
maxDescription: 50,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-10-07 20:34:49 -04:00
|
|
|
state = {
|
|
|
|
width: 0,
|
|
|
|
};
|
|
|
|
|
2017-11-25 09:41:45 -05:00
|
|
|
handlePhotoClick = () => {
|
|
|
|
const { card, onOpenMedia } = this.props;
|
|
|
|
|
|
|
|
onOpenMedia(
|
|
|
|
Immutable.fromJS([
|
|
|
|
{
|
|
|
|
type: 'image',
|
|
|
|
url: card.get('url'),
|
|
|
|
description: card.get('title'),
|
|
|
|
meta: {
|
|
|
|
original: {
|
|
|
|
width: card.get('width'),
|
|
|
|
height: card.get('height'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]),
|
|
|
|
0
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2017-04-27 08:42:22 -04:00
|
|
|
renderLink () {
|
2017-09-13 21:39:10 -04:00
|
|
|
const { card, maxDescription } = this.props;
|
2017-12-08 18:56:16 -05:00
|
|
|
const { width } = this.state;
|
|
|
|
const horizontal = card.get('width') > card.get('height') && (card.get('width') + 100 >= width);
|
2017-01-19 19:00:14 -05:00
|
|
|
|
2017-04-27 08:42:22 -04:00
|
|
|
let image = '';
|
|
|
|
let provider = card.get('provider_name');
|
2017-01-19 19:00:14 -05:00
|
|
|
|
|
|
|
if (card.get('image')) {
|
|
|
|
image = (
|
2017-02-10 16:58:29 -05:00
|
|
|
<div className='status-card__image'>
|
2017-09-01 10:20:16 -04:00
|
|
|
<img src={card.get('image')} alt={card.get('title')} className='status-card__image-image' width={card.get('width')} height={card.get('height')} />
|
2017-01-19 19:00:14 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-27 08:42:22 -04:00
|
|
|
if (provider.length < 1) {
|
2017-05-04 09:52:08 -04:00
|
|
|
provider = decodeIDNA(getHostname(card.get('url')));
|
2017-04-27 08:42:22 -04:00
|
|
|
}
|
|
|
|
|
2017-12-08 18:56:16 -05:00
|
|
|
const className = classnames('status-card', { horizontal });
|
2017-09-01 10:20:16 -04:00
|
|
|
|
2017-01-19 19:00:14 -05:00
|
|
|
return (
|
2017-12-08 18:56:16 -05:00
|
|
|
<a href={card.get('url')} className={className} target='_blank' rel='noopener' ref={this.setRef}>
|
2017-01-19 19:00:14 -05:00
|
|
|
{image}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='status-card__content'>
|
2017-02-10 16:58:29 -05:00
|
|
|
<strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>
|
2017-12-08 18:56:16 -05:00
|
|
|
{!horizontal && <p className='status-card__description'>{(card.get('description') || '').substring(0, maxDescription)}</p>}
|
2017-05-04 09:52:08 -04:00
|
|
|
<span className='status-card__host'>{provider}</span>
|
2017-01-19 19:00:14 -05:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
2017-04-27 08:42:22 -04:00
|
|
|
|
|
|
|
renderPhoto () {
|
|
|
|
const { card } = this.props;
|
|
|
|
|
|
|
|
return (
|
2017-11-25 09:41:45 -05:00
|
|
|
<img
|
|
|
|
className='status-card-photo'
|
|
|
|
onClick={this.handlePhotoClick}
|
|
|
|
role='button'
|
|
|
|
tabIndex='0'
|
2017-12-06 21:37:43 -05:00
|
|
|
src={card.get('embed_url')}
|
2017-11-25 09:41:45 -05:00
|
|
|
alt={card.get('title')}
|
|
|
|
width={card.get('width')}
|
|
|
|
height={card.get('height')}
|
|
|
|
/>
|
2017-04-27 08:42:22 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-10-07 20:34:49 -04:00
|
|
|
setRef = c => {
|
|
|
|
if (c) {
|
|
|
|
this.setState({ width: c.offsetWidth });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 08:42:22 -04:00
|
|
|
renderVideo () {
|
2017-10-07 20:34:49 -04:00
|
|
|
const { card } = this.props;
|
|
|
|
const content = { __html: card.get('html') };
|
|
|
|
const { width } = this.state;
|
|
|
|
const ratio = card.get('width') / card.get('height');
|
|
|
|
const height = card.get('width') > card.get('height') ? (width / ratio) : (width * ratio);
|
2017-04-27 08:42:22 -04:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
2017-10-07 20:34:49 -04:00
|
|
|
ref={this.setRef}
|
2017-04-27 08:42:22 -04:00
|
|
|
className='status-card-video'
|
|
|
|
dangerouslySetInnerHTML={content}
|
2017-10-07 20:34:49 -04:00
|
|
|
style={{ height }}
|
2017-04-27 08:42:22 -04:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { card } = this.props;
|
|
|
|
|
|
|
|
if (card === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(card.get('type')) {
|
|
|
|
case 'link':
|
|
|
|
return this.renderLink();
|
|
|
|
case 'photo':
|
|
|
|
return this.renderPhoto();
|
|
|
|
case 'video':
|
|
|
|
return this.renderVideo();
|
|
|
|
case 'rich':
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2017-05-20 11:31:47 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|