gab-social/app/javascript/gabsocial/components/trends_item.js

140 lines
3.5 KiB
JavaScript
Raw Normal View History

2020-04-04 00:18:26 +01:00
import classNames from 'classnames/bind'
2020-04-24 04:17:27 +01:00
import { urlRegex } from '../features/compose/util/url_regex'
2020-04-04 00:18:26 +01:00
import Button from './button'
import DotTextSeperator from './dot_text_seperator'
import Image from './image'
import RelativeTimestamp from './relative_timestamp'
import Text from './text'
const cx = classNames.bind(_s)
export default class TrendingItem extends PureComponent {
static propTypes = {
index: PropTypes.number,
url: PropTypes.string.isRequired,
title: PropTypes.string.isRequired,
description: PropTypes.string,
imageUrl: PropTypes.string,
author: PropTypes.string,
publishDate: PropTypes.string,
isLast: PropTypes.bool,
2020-04-07 02:53:23 +01:00
wide: PropTypes.bool,
}
static defaultProps = {
title: '',
description: '',
author: '',
2020-04-04 00:18:26 +01:00
}
state = {
hovering: false,
}
handleOnMouseEnter = () => {
this.setState({ hovering: true })
}
handleOnMouseLeave = () => {
this.setState({ hovering: false })
}
render() {
const {
index,
url,
title,
description,
imageUrl,
author,
publishDate,
2020-04-07 02:53:23 +01:00
isLast,
2020-04-08 02:06:59 +01:00
wide,
2020-04-04 00:18:26 +01:00
} = this.props
const { hovering } = this.state
const containerClasses = cx({
default: 1,
noUnderline: 1,
px15: 1,
pt10: 1,
pb5: 1,
borderColorSecondary: !isLast,
borderBottom1PX: !isLast,
2020-04-25 18:00:51 +01:00
backgroundColorSubtle_onHover: 1,
2020-04-04 00:18:26 +01:00
})
const subtitleClasses = cx({
ml5: 1,
underline: hovering,
})
const correctedAuthor = author.replace('www.', '')
2020-04-08 02:06:59 +01:00
const correctedDescription = description.length >= 120 ? `${description.substring(0, 120).trim()}...` : description
2020-04-24 04:17:27 +01:00
const descriptionHasLink = correctedDescription.match(urlRegex)
2020-04-08 02:06:59 +01:00
2020-04-07 02:53:23 +01:00
const image = (
<Image
nullable
width='116px'
height='78px'
2020-04-08 02:06:59 +01:00
alt={title}
2020-04-07 02:53:23 +01:00
src={imageUrl}
className={[_s.radiusSmall, _s.overflowHidden, _s.mb10].join(' ')}
/>
)
2020-04-04 00:18:26 +01:00
return (
<Button
noClasses
href={url}
2020-04-07 02:53:23 +01:00
target='_blank'
2020-04-08 02:06:59 +01:00
rel='noopener noreferrer'
2020-04-04 00:18:26 +01:00
className={containerClasses}
onMouseEnter={() => this.handleOnMouseEnter()}
onMouseLeave={() => this.handleOnMouseLeave()}
>
2020-04-07 02:53:23 +01:00
{
!wide && image
}
2020-04-04 00:18:26 +01:00
<div className={[_s.default, _s.flexNormal, _s.pb5].join(' ')}>
<div className={_s.default}>
<Text size='medium' color='primary' weight='bold'>
{title}
</Text>
</div>
2020-04-07 02:53:23 +01:00
{
2020-04-24 04:17:27 +01:00
!!correctedDescription && !descriptionHasLink &&
2020-04-08 02:06:59 +01:00
<div className={[_s.default, _s.heightMax56PX, _s.overflowHidden, _s.pt5, _s.mb5].join(' ')}>
2020-04-07 02:53:23 +01:00
<Text size='small' color='secondary'>
{correctedDescription}
</Text>
</div>
}
2020-04-04 00:18:26 +01:00
<div className={[_s.default, _s.flexRow].join(' ')}>
<Text color='secondary' size='small'>
{index}
</Text>
<DotTextSeperator />
<Text color='secondary' size='small' className={_s.ml5}>
{correctedAuthor}
</Text>
<DotTextSeperator />
<Text color='secondary' size='small' className={subtitleClasses}>
<RelativeTimestamp timestamp={publishDate} />
</Text>
2020-04-07 02:53:23 +01:00
{
hovering &&
<Text color='secondary' size='small' className={_s.ml10}></Text>
}
2020-04-04 00:18:26 +01:00
</div>
</div>
</Button>
)
}
}