import Immutable from 'immutable' import ImmutablePropTypes from 'react-immutable-proptypes' import ImmutablePureComponent from 'react-immutable-pure-component' import punycode from 'punycode' import { DEFAULT_REL } from '../constants' import ResponsiveClassesComponent from '../features/ui/util/responsive_classes_component' import Icon from './icon' 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('.') } const getHostname = url => { const parser = document.createElement('a') parser.href = url return parser.hostname } const trim = (text, len) => { const cut = text.indexOf(' ', len) if (cut === -1) { return text } return text.substring(0, cut) + (text.length > len ? '…' : '') } const domParser = new DOMParser() const addAutoPlay = html => { const document = domParser.parseFromString(html, 'text/html').documentElement const iframe = document.querySelector('iframe') if (iframe) { if (iframe.src.indexOf('?') !== -1) { iframe.src += '&' } else { iframe.src += '?' } iframe.src += 'autoplay=1&auto_play=1' // DOM parser creates html/body elements around original HTML fragment, // so we need to get innerHTML out of the body and not the entire document return document.querySelector('body').innerHTML } return html } export default class StatusCard extends ImmutablePureComponent { static propTypes = { card: ImmutablePropTypes.map, onOpenMedia: PropTypes.func.isRequired, defaultWidth: PropTypes.number, cacheWidth: PropTypes.func, isReduced: PropTypes.bool, } state = { width: this.props.defaultWidth || 280, embedded: false, } componentWillReceiveProps(nextProps) { if (!Immutable.is(this.props.card, nextProps.card)) { this.setState({ embedded: false }) } } handlePhotoClick = () => { const { card, onOpenMedia } = this.props onOpenMedia( Immutable.fromJS([ { type: 'image', url: card.get('embed_url'), description: card.get('title'), meta: { original: { width: card.get('width'), height: card.get('height'), }, }, }, ]), 0 ) } handleEmbedClick = () => { const { card } = this.props if (card.get('type') === 'photo') { this.handlePhotoClick() } else { this.setState({ embedded: true }) } } setRef = c => { if (c) { if (this.props.cacheWidth) this.props.cacheWidth(c.offsetWidth) this.setState({ width: c.offsetWidth }) } } renderVideo() { const { card } = this.props const content = { __html: addAutoPlay(card.get('html')) } const { width } = this.state const ratio = card.get('width') / card.get('height') const height = width / ratio return ( <div ref={this.setRef} className={[_s.default, _s.bgTertiary, _s.posAbs, _s.top0, _s.right0, _s.bottom0, _s.left0, _s.statusCardVideo].join(' ')} dangerouslySetInnerHTML={content} /> ) } render() { const { card, isReduced } = this.props const { width, embedded } = this.state if (card === null) return null const maxDescription = 160 const cardImg = card.get('image') const provider = card.get('provider_name').length === 0 ? decodeIDNA(getHostname(card.get('url'))) : card.get('provider_name') const horizontal = (card.get('width') > card.get('height') && (card.get('width') + 100 >= width)) || card.get('type') !== 'link' || embedded const interactive = card.get('type') !== 'link' const cardTitle = `${card.get('title')}`.trim() const title = interactive ? ( <a className={[_s.default, _s.displayFlex, _s.text, _s.noUnderline, _s.overflowWrapBreakWord, _s.colorPrimary, _s.fs15PX, _s.fontWeightMedium].join(' ')} href={card.get('url')} title={cardTitle} rel={DEFAULT_REL} target='_blank' > {cardTitle} </a> ) : ( <span className={[_s.default, _s.displayFlex, _s.text, _s.overflowWrapBreakWord, _s.colorPrimary, _s.fs15PX, _s.fontWeightMedium].join(' ')}> {cardTitle} </span> ) const description = ( <div className={[_s.default, _s.flexNormal, _s.px10, _s.py10, _s.borderColorSecondary, _s.borderLeft1PX].join(' ')}> {title} <p className={[_s.default, _s.displayFlex, _s.text, _s.mt5, _s.mb5, _s.overflowWrapBreakWord, _s.colorSecondary, _s.fs13PX, _s.fontWeightNormal].join(' ')}> {trim(card.get('description') || '', maxDescription)} </p> <span className={[_s.default, _s.mtAuto, _s.flexRow, _s.alignItemsCenter, _s.colorSecondary, _s.text, _s.displayFlex, _s.textOverflowEllipsis, _s.fs13PX].join(' ')}> <Icon id='link' size='10px' className={[_s.fillSecondary, _s.mr5].join(' ')} fixedWidth /> {provider} </span> </div> ) // : todo : use <Image /> let embed = '' const thumbnail = interactive ? <img alt={''} src={cardImg} className={[_s.default, _s.objectFitCover, _s.posAbs, _s.width100PC, _s.height100PC, _s.top0, _s.right0, _s.bottom0, _s.left0].join(' ')} /> : ( <ResponsiveClassesComponent classNames={[_s.default, _s.height220PX, _s.width330PX].join(' ')} classNamesSmall={[_s.default, _s.height260PX, _s.width100PC].join(' ')} > <img alt={''} src={cardImg} className={[_s.default, _s.objectFitCover, _s.width100PC, _s.height100PC].join(' ')} /> </ResponsiveClassesComponent> ) if (interactive) { if (embedded) { embed = this.renderVideo() } let iconVariant = 'play' if (card.get('type') === 'photo') { iconVariant = 'search-plus' } return ( <div className={[_s.default, _s.width100PC, _s.px10].join(' ')}> <div className={[_s.default, _s.overflowHidden, _s.width100PC, _s.borderColorSecondary, _s.border1PX, _s.radiusSmall].join(' ')}> { !isReduced && <div className={[_s.default, _s.width100PC].join(' ')}> <div className={[_s.default, _s.width100PC, _s.pt5625PC].join(' ')}> {!!embed && embed} {!embed && thumbnail} {!embed && <div className={[_s.default, _s.posAbs, _s.top0, _s.right0, _s.left0, _s.bottom0, _s.alignItemsCenter, _s.justifyContentCenter].join(' ')}> <button className={[_s.default, _s.cursorPointer, _s.bgBlackOpaque, _s.radiusSmall, _s.py15, _s.px15].join(' ')} onClick={this.handleEmbedClick} > <Icon id={iconVariant} size='22px' className={[_s.fillWhite].join(' ')} /> </button> </div> } </div> </div> } {description} </div> </div> ) } else if (cardImg) { embed = ( <div className={[_s.default].join(' ')}> {thumbnail} </div> ) } else { embed = ( <div className={[_s.default, _s.py15, _s.px15, _s.width72PX, _s.alignItemsCenter, _s.justifyContentCenter].join(' ')}> <Icon id='website' size='22px' className={_s.fillSecondary} /> </div> ) } return ( <div className={[_s.default, _s.width100PC, _s.px10].join(' ')}> <a href={card.get('url')} rel={DEFAULT_REL} ref={this.setRef} className={[_s.default, _s.cursorPointer, _s.overflowHidden, _s.noUnderline, _s.width100PC, _s.bgSubtle_onHover, _s.borderColorSecondary, _s.border1PX, _s.radiusSmall].join(' ')} > <ResponsiveClassesComponent classNames={[_s.default, _s.flexRow, _s.width100PC].join(' ')} classNamesSmall={!cardImg ? undefined : [_s.default, _s.width100PC].join(' ')} > {!isReduced && embed} {description} </ResponsiveClassesComponent> </a> </div> ) } }