2022-09-28 12:50:47 +00:00
|
|
|
import { Component, linkEvent } from "inferno";
|
|
|
|
import { T } from "inferno-i18next-dess";
|
|
|
|
import {
|
|
|
|
PrivateMessageReportView,
|
|
|
|
ResolvePrivateMessageReport,
|
|
|
|
} from "lemmy-js-client";
|
|
|
|
import { i18n } from "../../i18next";
|
|
|
|
import { WebSocketService } from "../../services";
|
2023-01-04 16:56:24 +00:00
|
|
|
import { mdToHtml, myAuth, wsClient } from "../../utils";
|
2022-09-28 12:50:47 +00:00
|
|
|
import { Icon } from "../common/icon";
|
|
|
|
import { PersonListing } from "../person/person-listing";
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
report: PrivateMessageReportView;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class PrivateMessageReport extends Component<Props, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2023-06-05 21:31:12 +00:00
|
|
|
const r = this.props.report;
|
|
|
|
const pmr = r.private_message_report;
|
|
|
|
const tippyContent = i18n.t(
|
2022-09-28 12:50:47 +00:00
|
|
|
r.private_message_report.resolved ? "unresolve_report" : "resolve_report"
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
{i18n.t("creator")}:{" "}
|
|
|
|
<PersonListing person={r.private_message_creator} />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{i18n.t("message")}:
|
|
|
|
<div
|
|
|
|
className="md-div"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(pmr.original_pm_text)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{i18n.t("reporter")}: <PersonListing person={r.creator} />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{i18n.t("reason")}: {pmr.reason}
|
|
|
|
</div>
|
2023-01-04 16:56:24 +00:00
|
|
|
{r.resolver && (
|
|
|
|
<div>
|
|
|
|
{pmr.resolved ? (
|
|
|
|
<T i18nKey="resolved_by">
|
|
|
|
#
|
|
|
|
<PersonListing person={r.resolver} />
|
|
|
|
</T>
|
|
|
|
) : (
|
|
|
|
<T i18nKey="unresolved_by">
|
|
|
|
#
|
|
|
|
<PersonListing person={r.resolver} />
|
|
|
|
</T>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
2022-09-28 12:50:47 +00:00
|
|
|
<button
|
|
|
|
className="btn btn-link btn-animate text-muted py-0"
|
|
|
|
onClick={linkEvent(this, this.handleResolveReport)}
|
|
|
|
data-tippy-content={tippyContent}
|
|
|
|
aria-label={tippyContent}
|
|
|
|
>
|
|
|
|
<Icon
|
|
|
|
icon="check"
|
|
|
|
classes={`icon-inline ${
|
|
|
|
pmr.resolved ? "text-success" : "text-danger"
|
|
|
|
}`}
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleResolveReport(i: PrivateMessageReport) {
|
2023-06-05 21:31:12 +00:00
|
|
|
const pmr = i.props.report.private_message_report;
|
|
|
|
const auth = myAuth();
|
2023-01-04 16:56:24 +00:00
|
|
|
if (auth) {
|
2023-06-05 21:31:12 +00:00
|
|
|
const form: ResolvePrivateMessageReport = {
|
2023-01-04 16:56:24 +00:00
|
|
|
report_id: pmr.id,
|
|
|
|
resolved: !pmr.resolved,
|
|
|
|
auth,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.resolvePrivateMessageReport(form)
|
|
|
|
);
|
|
|
|
}
|
2022-09-28 12:50:47 +00:00
|
|
|
}
|
|
|
|
}
|