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