mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import * as React from 'react';
|
|
import Gravatar from 'react-gravatar';
|
|
import I18n from 'i18n-js';
|
|
|
|
import { MutedText } from '../common/CustomTexts';
|
|
import friendlyDate from '../../helpers/datetime';
|
|
import Separator from '../common/Separator';
|
|
import ActionLink from '../common/ActionLink';
|
|
import { DeleteIcon, EditIcon } from '../common/Icons';
|
|
|
|
interface Props {
|
|
createdAt: string;
|
|
toggleEditMode(): void;
|
|
handleDeletePost(): void;
|
|
isPowerUser: boolean;
|
|
authorEmail: string;
|
|
authorFullName: string;
|
|
currentUserEmail: string;
|
|
}
|
|
|
|
const PostFooter = ({
|
|
createdAt,
|
|
toggleEditMode,
|
|
handleDeletePost,
|
|
isPowerUser,
|
|
authorEmail,
|
|
authorFullName,
|
|
currentUserEmail,
|
|
}: Props) => (
|
|
<div className="postFooter">
|
|
<div className="postAuthor">
|
|
<span>{I18n.t('post.published_by').toLowerCase()} </span>
|
|
<Gravatar email={authorEmail} size={24} className="postAuthorAvatar" />
|
|
{authorFullName}
|
|
<Separator />
|
|
{friendlyDate(createdAt)}
|
|
</div>
|
|
{
|
|
isPowerUser || authorEmail === currentUserEmail ?
|
|
<div className="postFooterActions">
|
|
<ActionLink onClick={toggleEditMode} icon={<EditIcon />} customClass='editAction'>
|
|
{I18n.t('common.buttons.edit')}
|
|
</ActionLink>
|
|
|
|
<ActionLink
|
|
onClick={() => confirm(I18n.t('common.confirmation')) && handleDeletePost()}
|
|
icon={<DeleteIcon />}
|
|
customClass='deleteAction'
|
|
>
|
|
{I18n.t('common.buttons.delete')}
|
|
</ActionLink>
|
|
</div>
|
|
:
|
|
null
|
|
}
|
|
</div>
|
|
);
|
|
|
|
export default PostFooter; |