Files
talk/plugins/talk-plugin-featured-comments/client/components/FeaturedComment.js
T
2017-07-05 12:28:09 -03:00

32 lines
1.0 KiB
JavaScript

import React from 'react';
import cn from 'classnames';
import styles from './styles.css';
import {name} from '../../package.json';
import {timeago} from 'coral-framework/services/i18n';
import {Icon} from 'plugin-api/beta/client/components/ui';
const FeaturedComment = ({comment}) => {
return (
<div className={cn(styles.featuredComment, `${name}__featured-comment`)}>
<p className={cn(styles.body, `${name}__featured-comment__comment-body`)}>
"{comment.body}"
</p>
<footer>
<div>
<strong className={cn(styles.username, `${name}__featured-comment__username`)}>
{comment.user.username}
</strong>
<span className={cn(styles.timeago, `${name}__featured-comment__timeago`)}>
,{' '}{timeago(comment.created_at)}
</span>
</div>
<a className={cn(styles.goTo, `${name}__featured-comment__go-to`)}>
Go to conversation<Icon name="keyboard_arrow_right" />
</a>
</footer>
</div>
);
};
export default FeaturedComment;