2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-09-14 03:39:10 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-20 01:00:14 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-20 17:31:47 +02:00
|
|
|
import punycode from 'punycode';
|
2017-09-01 16:20:16 +02:00
|
|
|
import classnames from 'classnames';
|
2017-01-20 01:00:14 +01:00
|
|
|
|
2017-05-04 15:52:08 +02: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 17:31:47 +02:00
|
|
|
};
|
2017-01-20 01:00:14 +01:00
|
|
|
|
|
|
|
const getHostname = url => {
|
|
|
|
const parser = document.createElement('a');
|
|
|
|
parser.href = url;
|
|
|
|
return parser.hostname;
|
|
|
|
};
|
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class Card extends React.PureComponent {
|
2017-01-20 01:00:14 +01:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
2017-05-20 17:31:47 +02:00
|
|
|
card: ImmutablePropTypes.map,
|
2017-09-14 03:39:10 +02:00
|
|
|
maxDescription: PropTypes.number,
|
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
maxDescription: 50,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
2017-10-08 02:34:49 +02:00
|
|
|
state = {
|
|
|
|
width: 0,
|
|
|
|
};
|
|
|
|
|
2017-04-27 14:42:22 +02:00
|
|
|
renderLink () {
|
2017-09-14 03:39:10 +02:00
|
|
|
const { card, maxDescription } = this.props;
|
2017-01-20 01:00:14 +01:00
|
|
|
|
2017-04-27 14:42:22 +02:00
|
|
|
let image = '';
|
|
|
|
let provider = card.get('provider_name');
|
2017-01-20 01:00:14 +01:00
|
|
|
|
|
|
|
if (card.get('image')) {
|
|
|
|
image = (
|
2017-02-10 22:58:29 +01:00
|
|
|
<div className='status-card__image'>
|
2017-09-01 16:20:16 +02: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-20 01:00:14 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-27 14:42:22 +02:00
|
|
|
if (provider.length < 1) {
|
2017-05-04 15:52:08 +02:00
|
|
|
provider = decodeIDNA(getHostname(card.get('url')));
|
2017-04-27 14:42:22 +02:00
|
|
|
}
|
|
|
|
|
2017-09-01 16:20:16 +02:00
|
|
|
const className = classnames('status-card', {
|
|
|
|
'horizontal': card.get('width') > card.get('height'),
|
|
|
|
});
|
|
|
|
|
2017-01-20 01:00:14 +01:00
|
|
|
return (
|
2017-09-01 16:20:16 +02:00
|
|
|
<a href={card.get('url')} className={className} target='_blank' rel='noopener'>
|
2017-01-20 01:00:14 +01:00
|
|
|
{image}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='status-card__content'>
|
2017-02-10 22:58:29 +01:00
|
|
|
<strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>
|
2017-09-14 03:39:10 +02:00
|
|
|
<p className='status-card__description'>{(card.get('description') || '').substring(0, maxDescription)}</p>
|
2017-05-04 15:52:08 +02:00
|
|
|
<span className='status-card__host'>{provider}</span>
|
2017-01-20 01:00:14 +01:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
2017-04-27 14:42:22 +02:00
|
|
|
|
|
|
|
renderPhoto () {
|
|
|
|
const { card } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<a href={card.get('url')} className='status-card-photo' target='_blank' rel='noopener'>
|
|
|
|
<img src={card.get('url')} alt={card.get('title')} width={card.get('width')} height={card.get('height')} />
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-10-08 02:34:49 +02:00
|
|
|
setRef = c => {
|
|
|
|
if (c) {
|
|
|
|
this.setState({ width: c.offsetWidth });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 14:42:22 +02:00
|
|
|
renderVideo () {
|
2017-10-08 02:34:49 +02: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 14:42:22 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
2017-10-08 02:34:49 +02:00
|
|
|
ref={this.setRef}
|
2017-04-27 14:42:22 +02:00
|
|
|
className='status-card-video'
|
|
|
|
dangerouslySetInnerHTML={content}
|
2017-10-08 02:34:49 +02:00
|
|
|
style={{ height }}
|
2017-04-27 14:42:22 +02: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 17:31:47 +02:00
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|