lemmy-ui/src/shared/components/private_message/private-message.tsx

351 lines
12 KiB
TypeScript
Raw Normal View History

import { None, Option, Some } from "@sniptt/monads/build";
2021-02-22 02:39:04 +00:00
import { Component, linkEvent } from "inferno";
import {
CreatePrivateMessageReport,
2020-12-24 01:58:27 +00:00
DeletePrivateMessage,
MarkPrivateMessageAsRead,
2021-03-15 18:09:31 +00:00
PersonSafe,
PrivateMessageView,
toUndefined,
2021-02-22 02:39:04 +00:00
} from "lemmy-js-client";
import { i18n } from "../../i18next";
import { UserService, WebSocketService } from "../../services";
import { auth, mdToHtml, toast, wsClient } from "../../utils";
import { Icon } from "../common/icon";
import { MomentTime } from "../common/moment-time";
import { PersonListing } from "../person/person-listing";
2021-02-22 02:39:04 +00:00
import { PrivateMessageForm } from "./private-message-form";
interface PrivateMessageState {
showReply: boolean;
showEdit: boolean;
collapsed: boolean;
viewSource: boolean;
showReportDialog: boolean;
reportReason: Option<string>;
}
interface PrivateMessageProps {
2020-12-24 01:58:27 +00:00
private_message_view: PrivateMessageView;
}
export class PrivateMessage extends Component<
PrivateMessageProps,
PrivateMessageState
> {
private emptyState: PrivateMessageState = {
showReply: false,
showEdit: false,
collapsed: false,
viewSource: false,
showReportDialog: false,
reportReason: None,
};
constructor(props: any, context: any) {
super(props, context);
this.state = this.emptyState;
this.handleReplyCancel = this.handleReplyCancel.bind(this);
this.handlePrivateMessageCreate =
this.handlePrivateMessageCreate.bind(this);
this.handlePrivateMessageEdit = this.handlePrivateMessageEdit.bind(this);
}
get mine(): boolean {
return UserService.Instance.myUserInfo
.map(
m =>
m.local_user_view.person.id ==
this.props.private_message_view.creator.id
)
.unwrapOr(false);
}
render() {
2020-12-24 01:58:27 +00:00
let message_view = this.props.private_message_view;
2021-03-15 18:09:31 +00:00
let otherPerson: PersonSafe = this.mine
2020-12-24 01:58:27 +00:00
? message_view.recipient
: message_view.creator;
return (
<div className="border-top border-light">
<div>
<ul className="list-inline mb-0 text-muted small">
{/* TODO refactor this */}
<li className="list-inline-item">
2021-02-22 02:39:04 +00:00
{this.mine ? i18n.t("to") : i18n.t("from")}
</li>
<li className="list-inline-item">
2021-03-15 18:09:31 +00:00
<PersonListing person={otherPerson} />
</li>
<li className="list-inline-item">
<span>
<MomentTime
published={message_view.private_message.published}
updated={message_view.private_message.updated}
/>
</span>
</li>
<li className="list-inline-item">
<div
role="button"
className="pointer text-monospace"
onClick={linkEvent(this, this.handleMessageCollapse)}
>
{this.state.collapsed ? (
2021-02-11 20:35:27 +00:00
<Icon icon="plus-square" classes="icon-inline" />
) : (
2021-02-11 20:35:27 +00:00
<Icon icon="minus-square" classes="icon-inline" />
)}
</div>
</li>
</ul>
{this.state.showEdit && (
<PrivateMessageForm
2021-03-15 18:09:31 +00:00
recipient={otherPerson}
privateMessageView={Some(message_view)}
onEdit={this.handlePrivateMessageEdit}
onCreate={this.handlePrivateMessageCreate}
onCancel={this.handleReplyCancel}
/>
)}
{!this.state.showEdit && !this.state.collapsed && (
<div>
{this.state.viewSource ? (
<pre>{this.messageUnlessRemoved}</pre>
) : (
<div
className="md-div"
dangerouslySetInnerHTML={mdToHtml(this.messageUnlessRemoved)}
/>
)}
<ul className="list-inline mb-0 text-muted font-weight-bold">
{!this.mine && (
<>
<li className="list-inline-item">
<button
className="btn btn-link btn-animate text-muted"
onClick={linkEvent(this, this.handleMarkRead)}
data-tippy-content={
2020-12-24 01:58:27 +00:00
message_view.private_message.read
2021-02-22 02:39:04 +00:00
? i18n.t("mark_as_unread")
: i18n.t("mark_as_read")
}
aria-label={
message_view.private_message.read
2021-02-22 02:39:04 +00:00
? i18n.t("mark_as_unread")
: i18n.t("mark_as_read")
}
>
2021-02-11 20:35:27 +00:00
<Icon
icon="check"
classes={`icon-inline ${
2021-02-22 02:39:04 +00:00
message_view.private_message.read && "text-success"
}`}
2021-02-11 20:35:27 +00:00
/>
</button>
</li>
<li className="list-inline-item">{this.reportButton}</li>
<li className="list-inline-item">
<button
className="btn btn-link btn-animate text-muted"
onClick={linkEvent(this, this.handleReplyClick)}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("reply")}
aria-label={i18n.t("reply")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="reply1" classes="icon-inline" />
</button>
</li>
</>
)}
{this.mine && (
<>
<li className="list-inline-item">
<button
className="btn btn-link btn-animate text-muted"
onClick={linkEvent(this, this.handleEditClick)}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("edit")}
aria-label={i18n.t("edit")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="edit" classes="icon-inline" />
</button>
</li>
<li className="list-inline-item">
<button
className="btn btn-link btn-animate text-muted"
onClick={linkEvent(this, this.handleDeleteClick)}
data-tippy-content={
2020-12-24 01:58:27 +00:00
!message_view.private_message.deleted
2021-02-22 02:39:04 +00:00
? i18n.t("delete")
: i18n.t("restore")
}
aria-label={
!message_view.private_message.deleted
2021-02-22 02:39:04 +00:00
? i18n.t("delete")
: i18n.t("restore")
}
>
2021-02-11 20:35:27 +00:00
<Icon
icon="trash"
classes={`icon-inline ${
2020-12-24 01:58:27 +00:00
message_view.private_message.deleted &&
2021-02-22 02:39:04 +00:00
"text-danger"
}`}
2021-02-11 20:35:27 +00:00
/>
</button>
</li>
</>
)}
<li className="list-inline-item">
<button
className="btn btn-link btn-animate text-muted"
onClick={linkEvent(this, this.handleViewSource)}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("view_source")}
aria-label={i18n.t("view_source")}
>
2021-02-11 20:35:27 +00:00
<Icon
icon="file-text"
classes={`icon-inline ${
2021-02-22 02:39:04 +00:00
this.state.viewSource && "text-success"
}`}
2021-02-11 20:35:27 +00:00
/>
</button>
</li>
</ul>
</div>
)}
</div>
{this.state.showReportDialog && (
<form
className="form-inline"
onSubmit={linkEvent(this, this.handleReportSubmit)}
>
<label className="sr-only" htmlFor="pm-report-reason">
{i18n.t("reason")}
</label>
<input
type="text"
id="pm-report-reason"
className="form-control mr-2"
placeholder={i18n.t("reason")}
required
value={toUndefined(this.state.reportReason)}
onInput={linkEvent(this, this.handleReportReasonChange)}
/>
<button
type="submit"
className="btn btn-secondary"
aria-label={i18n.t("create_report")}
>
{i18n.t("create_report")}
</button>
</form>
)}
{this.state.showReply && (
<PrivateMessageForm
2021-03-15 18:09:31 +00:00
recipient={otherPerson}
privateMessageView={None}
onCreate={this.handlePrivateMessageCreate}
/>
)}
{/* A collapsed clearfix */}
{this.state.collapsed && <div className="row col-12"></div>}
</div>
);
}
get reportButton() {
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleShowReportDialog)}
data-tippy-content={i18n.t("show_report_dialog")}
aria-label={i18n.t("show_report_dialog")}
>
<Icon icon="flag" inline />
</button>
);
}
get messageUnlessRemoved(): string {
2020-12-24 01:58:27 +00:00
let message = this.props.private_message_view.private_message;
2021-02-22 02:39:04 +00:00
return message.deleted ? `*${i18n.t("deleted")}*` : message.content;
}
handleReplyClick(i: PrivateMessage) {
i.setState({ showReply: true });
}
handleEditClick(i: PrivateMessage) {
i.setState({ showEdit: true });
i.setState(i.state);
}
handleDeleteClick(i: PrivateMessage) {
let form = new DeletePrivateMessage({
private_message_id: i.props.private_message_view.private_message.id,
2020-12-24 01:58:27 +00:00
deleted: !i.props.private_message_view.private_message.deleted,
auth: auth().unwrap(),
});
WebSocketService.Instance.send(wsClient.deletePrivateMessage(form));
}
handleReplyCancel() {
this.setState({ showReply: false, showEdit: false });
}
handleMarkRead(i: PrivateMessage) {
let form = new MarkPrivateMessageAsRead({
private_message_id: i.props.private_message_view.private_message.id,
2020-12-24 01:58:27 +00:00
read: !i.props.private_message_view.private_message.read,
auth: auth().unwrap(),
});
WebSocketService.Instance.send(wsClient.markPrivateMessageAsRead(form));
}
handleMessageCollapse(i: PrivateMessage) {
i.setState({ collapsed: !i.state.collapsed });
}
handleViewSource(i: PrivateMessage) {
i.setState({ viewSource: !i.state.viewSource });
}
handleShowReportDialog(i: PrivateMessage) {
i.setState({ showReportDialog: !i.state.showReportDialog });
}
handleReportReasonChange(i: PrivateMessage, event: any) {
i.setState({ reportReason: Some(event.target.value) });
}
handleReportSubmit(i: PrivateMessage, event: any) {
event.preventDefault();
let form = new CreatePrivateMessageReport({
private_message_id: i.props.private_message_view.private_message.id,
reason: toUndefined(i.state.reportReason),
auth: auth().unwrap(),
});
WebSocketService.Instance.send(wsClient.createPrivateMessageReport(form));
i.setState({ showReportDialog: false });
}
handlePrivateMessageEdit() {
this.setState({ showEdit: false });
}
2020-12-24 01:58:27 +00:00
handlePrivateMessageCreate(message: PrivateMessageView) {
UserService.Instance.myUserInfo.match({
some: mui => {
if (message.creator.id == mui.local_user_view.person.id) {
this.setState({ showReply: false });
toast(i18n.t("message_sent"));
}
},
none: void 0,
});
}
}