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,
|
|
|
|
PersonViewSafe,
|
2021-07-17 20:42:55 +00:00
|
|
|
SiteView,
|
2020-09-08 18:44:55 +00:00
|
|
|
SortType,
|
2021-07-17 20:42:55 +00:00
|
|
|
UserOperation,
|
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 {
|
2020-12-24 22:05:57 +00:00
|
|
|
authField,
|
2020-09-08 18:44:55 +00:00
|
|
|
getRecipientIdFromProps,
|
|
|
|
isBrowser,
|
|
|
|
setIsoData,
|
|
|
|
toast,
|
2020-12-24 22:05:57 +00:00
|
|
|
wsClient,
|
2020-09-08 18:44:55 +00:00
|
|
|
wsJsonToRes,
|
|
|
|
wsSubscribe,
|
2020-12-24 01:58:27 +00:00
|
|
|
wsUserOp,
|
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 {
|
2020-12-24 01:58:27 +00:00
|
|
|
site_view: SiteView;
|
2021-03-15 18:09:31 +00:00
|
|
|
recipient: PersonViewSafe;
|
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
|
|
|
|
> {
|
2020-09-08 18:44:55 +00:00
|
|
|
private isoData = setIsoData(this.context);
|
2020-09-06 16:15:25 +00:00
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: CreatePrivateMessageState = {
|
2020-12-24 01:58:27 +00:00
|
|
|
site_view: this.isoData.site_res.site_view,
|
2020-09-08 18:44:55 +00:00
|
|
|
recipient: undefined,
|
|
|
|
recipient_id: getRecipientIdFromProps(this.props),
|
|
|
|
loading: true,
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
this.state = this.emptyState;
|
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);
|
|
|
|
|
2021-03-15 18:09:31 +00:00
|
|
|
if (!UserService.Instance.localUserView) {
|
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) {
|
|
|
|
this.state.recipient = this.isoData.routeData[0].user;
|
|
|
|
this.state.loading = false;
|
|
|
|
} 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() {
|
|
|
|
let form: GetPersonDetails = {
|
|
|
|
person_id: this.state.recipient_id,
|
2020-09-08 18:44:55 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
saved_only: false,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(false),
|
2020-09-08 18:44:55 +00:00
|
|
|
};
|
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>[] {
|
2021-03-15 18:09:31 +00:00
|
|
|
let person_id = Number(req.path.split("/").pop());
|
|
|
|
let form: GetPersonDetails = {
|
|
|
|
person_id,
|
2020-09-08 18:44:55 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
saved_only: false,
|
2020-12-24 01:58:27 +00:00
|
|
|
auth: req.auth,
|
2020-09-08 18:44:55 +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 {
|
2021-02-22 02:39:04 +00:00
|
|
|
return `${i18n.t("create_private_message")} - ${
|
2020-12-24 01:58:27 +00:00
|
|
|
this.state.site_view.site.name
|
|
|
|
}`;
|
2020-09-08 18:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
if (isBrowser()) {
|
|
|
|
this.subscription.unsubscribe();
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
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>
|
|
|
|
) : (
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-lg-6 offset-lg-3 mb-4">
|
2021-02-22 02:39:04 +00:00
|
|
|
<h5>{i18n.t("create_private_message")}</h5>
|
2020-09-08 18:44:55 +00:00
|
|
|
<PrivateMessageForm
|
|
|
|
onCreate={this.handlePrivateMessageCreate}
|
2021-03-15 18:09:31 +00:00
|
|
|
recipient={this.state.recipient.person}
|
2020-09-08 18:44:55 +00:00
|
|
|
/>
|
|
|
|
</div>
|
2020-09-06 16:15:25 +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
|
2020-09-08 18:44:55 +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");
|
2020-09-08 18:44:55 +00:00
|
|
|
this.state.loading = false;
|
|
|
|
this.setState(this.state);
|
2020-09-06 16:15:25 +00:00
|
|
|
return;
|
2021-03-15 18:09:31 +00:00
|
|
|
} else if (op == UserOperation.GetPersonDetails) {
|
|
|
|
let data = wsJsonToRes<GetPersonDetailsResponse>(msg).data;
|
|
|
|
this.state.recipient = data.person_view;
|
2020-09-08 18:44:55 +00:00
|
|
|
this.state.loading = false;
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|