35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import * as React from 'react';
|
|
import { Link } from "react-router-dom";
|
|
import { convertIntToDateTime } from "./Common";
|
|
import { Tr, tr, langCodeContext } from "../translate";
|
|
import { useContext } from "react";
|
|
|
|
function ReviewEntry(props) {
|
|
const { langCode } = useContext(langCodeContext);
|
|
return (
|
|
<div>
|
|
<h4>
|
|
<Link to={`/manage/users/${props.review.user.id}`}>
|
|
@{props.review.user.username}
|
|
</Link>{" "}
|
|
{Tr("review")}{" "}
|
|
<Link to={`/files/${props.review.file.id}`}>
|
|
{props.review.file.filename}
|
|
</Link>{" "}
|
|
{Tr("on")} {convertIntToDateTime(props.review.created_at)}{" "}
|
|
{props.review.updated_at !== 0 &&
|
|
`(${tr("modified on", langCode)} ${convertIntToDateTime(
|
|
props.review.updated_at
|
|
)} ) `}
|
|
{(props.user.role === 1 || props.review.user.id === props.user.id) &&
|
|
props.user.role !== 0 && (
|
|
<Link to={`/manage/reviews/${props.review.id}`}>{Tr("Edit")}</Link>
|
|
)}
|
|
</h4>
|
|
<p>{props.review.content}</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ReviewEntry;
|