ea74a66dbd
* initial support for block/mute * hide blocked + muted content everywhere * add info message for blocked/muted characteristics * sort blocked list by most recent block first * add 'blocked' message on channel page for channels that you have blocked * cleanup * delete unused files * always pass mute/block list to claim_search on homepage * PR cleanup
19 lines
429 B
JavaScript
19 lines
429 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import ClaimPreview from 'component/claimPreview';
|
|
|
|
type Props = {
|
|
channelUri: string,
|
|
};
|
|
|
|
function FileAuthor(props: Props) {
|
|
const { channelUri } = props;
|
|
|
|
return channelUri ? (
|
|
<ClaimPreview uri={channelUri} type="inline" properties={false} />
|
|
) : (
|
|
<div className="claim-preview--inline claim-preview__title">{__('Anonymous')}</div>
|
|
);
|
|
}
|
|
|
|
export default FileAuthor;
|