2019-06-27 01:59:27 +02:00
|
|
|
// @flow
|
2019-10-23 09:04:40 +02:00
|
|
|
import React, { useEffect } from 'react';
|
|
|
|
import { isEmpty } from 'util/object';
|
2019-06-27 01:59:27 +02:00
|
|
|
import relativeDate from 'tiny-relative-date';
|
2019-07-21 22:46:30 +02:00
|
|
|
import Button from 'component/button';
|
2019-07-24 23:02:35 +02:00
|
|
|
import Expandable from 'component/expandable';
|
2019-10-13 06:04:16 +02:00
|
|
|
import MarkdownPreview from 'component/common/markdown-preview';
|
2019-10-23 09:04:40 +02:00
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
2019-06-27 01:59:27 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
author: string,
|
2019-07-17 22:56:36 +02:00
|
|
|
authorUri: string,
|
2019-06-27 01:59:27 +02:00
|
|
|
message: string,
|
|
|
|
timePosted: number,
|
2019-10-23 09:04:40 +02:00
|
|
|
claim: ?Claim,
|
|
|
|
pending?: boolean,
|
|
|
|
resolveUri: string => void,
|
|
|
|
isResolvingUri: boolean,
|
|
|
|
channelIsBlocked: boolean,
|
2019-06-27 01:59:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
function Comment(props: Props) {
|
2019-10-23 09:04:40 +02:00
|
|
|
const {
|
|
|
|
author,
|
|
|
|
authorUri,
|
|
|
|
timePosted,
|
|
|
|
message,
|
|
|
|
pending,
|
|
|
|
claim,
|
|
|
|
isResolvingUri,
|
|
|
|
resolveUri,
|
|
|
|
channelIsBlocked,
|
|
|
|
} = props;
|
|
|
|
// to debounce subsequent requests
|
|
|
|
const shouldFetch =
|
|
|
|
claim === undefined || (claim !== null && claim.value_type === 'channel' && isEmpty(claim.meta) && !pending);
|
|
|
|
useEffect(() => {
|
|
|
|
// If author was extracted from the URI, then it must be valid.
|
|
|
|
if (authorUri && author && !isResolvingUri && shouldFetch) {
|
|
|
|
resolveUri(authorUri);
|
|
|
|
}
|
|
|
|
}, [isResolvingUri, shouldFetch, author, authorUri, resolveUri]);
|
2019-06-27 01:59:27 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<li className="comment">
|
2019-10-23 09:04:40 +02:00
|
|
|
<div className="comment__author">
|
|
|
|
<div className="comment__author-thumbnail">
|
|
|
|
{authorUri ? <ChannelThumbnail uri={authorUri} obscure={channelIsBlocked} /> : <ChannelThumbnail />}
|
|
|
|
</div>
|
|
|
|
<Button
|
|
|
|
className="button--uri-indicator truncated-text comment__author-name"
|
|
|
|
navigate={authorUri}
|
|
|
|
label={author || __('Anonymous')}
|
|
|
|
/>
|
2019-07-17 22:56:36 +02:00
|
|
|
<time className="comment__time" dateTime={timePosted}>
|
|
|
|
{relativeDate(timePosted)}
|
|
|
|
</time>
|
2019-06-27 01:59:27 +02:00
|
|
|
</div>
|
2019-07-24 23:02:35 +02:00
|
|
|
<div>
|
|
|
|
<Expandable>
|
2019-10-13 06:04:16 +02:00
|
|
|
<div className={'comment__message'}>
|
2019-12-03 17:41:44 +01:00
|
|
|
<MarkdownPreview content={message} />
|
2019-10-13 06:04:16 +02:00
|
|
|
</div>
|
2019-07-24 23:02:35 +02:00
|
|
|
</Expandable>
|
|
|
|
</div>
|
2019-06-27 01:59:27 +02:00
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Comment;
|