lemmy-ui/src/shared/components/comment/comment-form.tsx

186 lines
5 KiB
TypeScript
Raw Normal View History

2021-02-22 02:39:04 +00:00
import { Component } from "inferno";
import { T } from "inferno-i18next-dess";
2021-02-22 02:39:04 +00:00
import { Link } from "inferno-router";
import {
CommentResponse,
2020-12-24 01:58:27 +00:00
CreateComment,
EditComment,
Language,
UserOperation,
wsJsonToRes,
wsUserOp,
2021-02-22 02:39:04 +00:00
} from "lemmy-js-client";
import { Subscription } from "rxjs";
import { i18n } from "../../i18next";
import { CommentNodeI } from "../../interfaces";
import { UserService, WebSocketService } from "../../services";
2020-12-24 01:58:27 +00:00
import {
capitalizeFirstLetter,
myAuth,
wsClient,
2020-12-24 01:58:27 +00:00
wsSubscribe,
} from "../../utils";
import { Icon } from "../common/icon";
import { MarkdownTextArea } from "../common/markdown-textarea";
interface CommentFormProps {
/**
* Can either be the parent, or the editable comment. The right side is a postId.
*/
node: CommentNodeI | number;
edit?: boolean;
disabled?: boolean;
focus?: boolean;
onReplyCancel?(): any;
allLanguages: Language[];
siteLanguages: number[];
}
interface CommentFormState {
buttonTitle: string;
finished: boolean;
formId?: string;
}
export class CommentForm extends Component<CommentFormProps, CommentFormState> {
private subscription?: Subscription;
state: CommentFormState = {
buttonTitle:
typeof this.props.node === "number"
? capitalizeFirstLetter(i18n.t("post"))
: this.props.edit
? capitalizeFirstLetter(i18n.t("save"))
: capitalizeFirstLetter(i18n.t("reply")),
finished: false,
};
constructor(props: any, context: any) {
super(props, context);
this.handleCommentSubmit = this.handleCommentSubmit.bind(this);
this.handleReplyCancel = this.handleReplyCancel.bind(this);
2020-09-09 03:13:26 +00:00
this.parseMessage = this.parseMessage.bind(this);
this.subscription = wsSubscribe(this.parseMessage);
}
componentWillUnmount() {
this.subscription?.unsubscribe();
}
render() {
2023-06-05 21:31:12 +00:00
const initialContent =
typeof this.props.node !== "number"
? this.props.edit
? this.props.node.comment_view.comment.content
: undefined
: undefined;
return (
<div className="mb-3">
{UserService.Instance.myUserInfo ? (
<MarkdownTextArea
initialContent={initialContent}
showLanguage
buttonTitle={this.state.buttonTitle}
finished={this.state.finished}
replyType={typeof this.props.node !== "number"}
focus={this.props.focus}
disabled={this.props.disabled}
onSubmit={this.handleCommentSubmit}
onReplyCancel={this.handleReplyCancel}
placeholder={i18n.t("comment_here")}
allLanguages={this.props.allLanguages}
siteLanguages={this.props.siteLanguages}
/>
) : (
<div className="alert alert-warning" role="alert">
2021-02-11 20:35:27 +00:00
<Icon icon="alert-triangle" classes="icon-inline mr-2" />
<T i18nKey="must_login" class="d-inline">
#
2020-09-09 20:33:40 +00:00
<Link className="alert-link" to="/login">
#
</Link>
</T>
</div>
)}
</div>
);
}
handleCommentSubmit(msg: {
val: string;
formId: string;
languageId?: number;
}) {
2023-06-05 21:31:12 +00:00
const content = msg.val;
const language_id = msg.languageId;
const node = this.props.node;
this.setState({ formId: msg.formId });
2023-06-05 21:31:12 +00:00
const auth = myAuth();
if (auth) {
if (typeof node === "number") {
2023-06-05 21:31:12 +00:00
const postId = node;
const form: CreateComment = {
content,
form_id: this.state.formId,
post_id: postId,
language_id,
auth,
};
WebSocketService.Instance.send(wsClient.createComment(form));
} else {
if (this.props.edit) {
2023-06-05 21:31:12 +00:00
const form: EditComment = {
content,
form_id: this.state.formId,
comment_id: node.comment_view.comment.id,
language_id,
auth,
};
WebSocketService.Instance.send(wsClient.editComment(form));
} else {
2023-06-05 21:31:12 +00:00
const form: CreateComment = {
content,
form_id: this.state.formId,
post_id: node.comment_view.post.id,
parent_id: node.comment_view.comment.id,
language_id,
auth,
};
WebSocketService.Instance.send(wsClient.createComment(form));
}
}
}
}
handleReplyCancel() {
this.props.onReplyCancel?.();
}
2020-12-24 01:58:27 +00:00
parseMessage(msg: any) {
2023-06-05 21:31:12 +00:00
const op = wsUserOp(msg);
2021-04-07 15:54:38 +00:00
console.log(msg);
// Only do the showing and hiding if logged in
if (UserService.Instance.myUserInfo) {
if (
2020-12-24 01:58:27 +00:00
op == UserOperation.CreateComment ||
op == UserOperation.EditComment
) {
2023-06-05 21:31:12 +00:00
const data = wsJsonToRes<CommentResponse>(msg);
// This only finishes this form, if the randomly generated form_id matches the one received
if (this.state.formId && this.state.formId == data.form_id) {
this.setState({ finished: true });
2020-12-24 01:58:27 +00:00
// Necessary because it broke tribute for some reason
this.setState({ finished: false });
}
}
}
}
}