2021-02-22 02:39:04 +00:00
|
|
|
import { Component } from "inferno";
|
2020-09-06 16:15:25 +00:00
|
|
|
import {
|
2021-07-17 20:42:55 +00:00
|
|
|
GetPersonDetails,
|
2021-03-15 18:09:31 +00:00
|
|
|
GetPersonDetailsResponse,
|
2022-06-21 21:42:29 +00:00
|
|
|
GetSiteResponse,
|
2020-09-08 18:44:55 +00:00
|
|
|
SortType,
|
2021-07-17 20:42:55 +00:00
|
|
|
UserOperation,
|
2022-06-21 21:42:29 +00:00
|
|
|
wsJsonToRes,
|
|
|
|
wsUserOp,
|
2021-02-22 02:39:04 +00:00
|
|
|
} from "lemmy-js-client";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { i18n } from "../../i18next";
|
|
|
|
import { InitialFetchRequest } from "../../interfaces";
|
|
|
|
import { UserService, WebSocketService } from "../../services";
|
2020-09-08 18:44:55 +00:00
|
|
|
import {
|
|
|
|
getRecipientIdFromProps,
|
|
|
|
isBrowser,
|
2023-01-04 16:56:24 +00:00
|
|
|
myAuth,
|
2020-09-08 18:44:55 +00:00
|
|
|
setIsoData,
|
|
|
|
toast,
|
2020-12-24 22:05:57 +00:00
|
|
|
wsClient,
|
2020-09-08 18:44:55 +00:00
|
|
|
wsSubscribe,
|
2021-07-17 20:42:55 +00:00
|
|
|
} from "../../utils";
|
|
|
|
import { HtmlTags } from "../common/html-tags";
|
|
|
|
import { Spinner } from "../common/icon";
|
|
|
|
import { PrivateMessageForm } from "./private-message-form";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
interface CreatePrivateMessageState {
|
2022-06-21 21:42:29 +00:00
|
|
|
siteRes: GetSiteResponse;
|
2023-01-04 16:56:24 +00:00
|
|
|
recipientDetailsRes?: GetPersonDetailsResponse;
|
2020-09-08 18:44:55 +00:00
|
|
|
recipient_id: number;
|
|
|
|
loading: boolean;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CreatePrivateMessage extends Component<
|
2021-02-22 02:24:09 +00:00
|
|
|
any,
|
2020-09-06 16:15:25 +00:00
|
|
|
CreatePrivateMessageState
|
|
|
|
> {
|
2023-01-04 16:56:24 +00:00
|
|
|
private isoData = setIsoData(this.context);
|
|
|
|
private subscription?: Subscription;
|
|
|
|
state: CreatePrivateMessageState = {
|
2022-06-21 21:42:29 +00:00
|
|
|
siteRes: this.isoData.site_res,
|
2020-09-08 18:44:55 +00:00
|
|
|
recipient_id: getRecipientIdFromProps(this.props),
|
|
|
|
loading: true,
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2022-09-22 15:03:35 +00:00
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
2021-07-17 20:21:31 +00:00
|
|
|
this.handlePrivateMessageCreate =
|
|
|
|
this.handlePrivateMessageCreate.bind(this);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2020-09-08 18:44:55 +00:00
|
|
|
this.parseMessage = this.parseMessage.bind(this);
|
|
|
|
this.subscription = wsSubscribe(this.parseMessage);
|
|
|
|
|
2023-01-04 16:56:24 +00:00
|
|
|
if (!UserService.Instance.myUserInfo && isBrowser()) {
|
2021-02-22 02:39:04 +00:00
|
|
|
toast(i18n.t("not_logged_in"), "danger");
|
2020-09-06 16:15:25 +00:00
|
|
|
this.context.router.history.push(`/login`);
|
|
|
|
}
|
|
|
|
|
2020-09-08 18:44:55 +00:00
|
|
|
// Only fetch the data if coming from another route
|
|
|
|
if (this.isoData.path == this.context.router.route.match.url) {
|
2022-09-22 15:03:35 +00:00
|
|
|
this.state = {
|
|
|
|
...this.state,
|
2023-01-04 16:56:24 +00:00
|
|
|
recipientDetailsRes: this.isoData
|
|
|
|
.routeData[0] as GetPersonDetailsResponse,
|
2022-09-22 15:03:35 +00:00
|
|
|
loading: false,
|
|
|
|
};
|
2020-09-08 18:44:55 +00:00
|
|
|
} else {
|
2021-03-15 18:09:31 +00:00
|
|
|
this.fetchPersonDetails();
|
2020-09-08 18:44:55 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2021-03-15 18:09:31 +00:00
|
|
|
fetchPersonDetails() {
|
2023-01-04 16:56:24 +00:00
|
|
|
let form: GetPersonDetails = {
|
|
|
|
person_id: this.state.recipient_id,
|
|
|
|
sort: SortType.New,
|
|
|
|
saved_only: false,
|
|
|
|
auth: myAuth(false),
|
|
|
|
};
|
2021-03-15 18:09:31 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.getPersonDetails(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
2020-11-12 21:56:46 +00:00
|
|
|
static fetchInitialData(req: InitialFetchRequest): Promise<any>[] {
|
2023-01-04 16:56:24 +00:00
|
|
|
let person_id = Number(req.path.split("/").pop());
|
|
|
|
let form: GetPersonDetails = {
|
2021-03-15 18:09:31 +00:00
|
|
|
person_id,
|
2023-01-04 16:56:24 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
saved_only: false,
|
2020-12-24 01:58:27 +00:00
|
|
|
auth: req.auth,
|
2023-01-04 16:56:24 +00:00
|
|
|
};
|
2021-03-15 18:09:31 +00:00
|
|
|
return [req.client.getPersonDetails(form)];
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get documentTitle(): string {
|
2023-01-04 16:56:24 +00:00
|
|
|
let name_ = this.state.recipientDetailsRes?.person_view.person.name;
|
|
|
|
return name_ ? `${i18n.t("create_private_message")} - ${name_}` : "";
|
2020-09-08 18:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
if (isBrowser()) {
|
2023-01-04 16:56:24 +00:00
|
|
|
this.subscription?.unsubscribe();
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2023-01-04 16:56:24 +00:00
|
|
|
let res = this.state.recipientDetailsRes;
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
2022-10-03 18:16:36 +00:00
|
|
|
<div className="container-lg">
|
2020-09-11 18:09:21 +00:00
|
|
|
<HtmlTags
|
|
|
|
title={this.documentTitle}
|
|
|
|
path={this.context.router.route.match.url}
|
|
|
|
/>
|
2020-09-08 18:44:55 +00:00
|
|
|
{this.state.loading ? (
|
|
|
|
<h5>
|
2021-07-17 20:21:31 +00:00
|
|
|
<Spinner large />
|
2020-09-08 18:44:55 +00:00
|
|
|
</h5>
|
|
|
|
) : (
|
2023-01-04 16:56:24 +00:00
|
|
|
res && (
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12 col-lg-6 offset-lg-3 mb-4">
|
|
|
|
<h5>{i18n.t("create_private_message")}</h5>
|
|
|
|
<PrivateMessageForm
|
|
|
|
onCreate={this.handlePrivateMessageCreate}
|
|
|
|
recipient={res.person_view.person}
|
|
|
|
/>
|
2022-06-21 21:42:29 +00:00
|
|
|
</div>
|
2023-01-04 16:56:24 +00:00
|
|
|
</div>
|
|
|
|
)
|
2020-09-08 18:44:55 +00:00
|
|
|
)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handlePrivateMessageCreate() {
|
2021-02-22 02:39:04 +00:00
|
|
|
toast(i18n.t("message_sent"));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
// Navigate to the front
|
2022-09-22 15:03:35 +00:00
|
|
|
this.context.router.history.push("/");
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
let op = wsUserOp(msg);
|
2021-04-07 15:54:38 +00:00
|
|
|
console.log(msg);
|
2020-09-06 16:15:25 +00:00
|
|
|
if (msg.error) {
|
2021-02-22 02:39:04 +00:00
|
|
|
toast(i18n.t(msg.error), "danger");
|
2022-09-22 15:03:35 +00:00
|
|
|
this.setState({ loading: false });
|
2020-09-06 16:15:25 +00:00
|
|
|
return;
|
2021-03-15 18:09:31 +00:00
|
|
|
} else if (op == UserOperation.GetPersonDetails) {
|
2023-01-04 16:56:24 +00:00
|
|
|
let data = wsJsonToRes<GetPersonDetailsResponse>(msg);
|
|
|
|
this.setState({ recipientDetailsRes: data, loading: false });
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|