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

153 lines
4.1 KiB
TypeScript
Raw Normal View History

import { Component } from 'inferno';
import { Link } from 'inferno-router';
import { Subscription } from 'rxjs';
import {
2020-12-24 01:58:27 +00:00
CreateComment,
EditComment,
UserOperation,
CommentResponse,
} from 'lemmy-js-client';
2020-12-24 01:58:27 +00:00
import { CommentNode as CommentNodeI } from '../interfaces';
import {
capitalizeFirstLetter,
wsJsonToRes,
wsSubscribe,
wsUserOp,
} from '../utils';
import { WebSocketService, UserService } from '../services';
import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
import { MarkdownTextArea } from './markdown-textarea';
interface CommentFormProps {
postId?: number;
node?: CommentNodeI;
onReplyCancel?(): any;
edit?: boolean;
disabled?: boolean;
focus?: boolean;
}
interface CommentFormState {
buttonTitle: string;
finished: boolean;
2020-12-24 01:58:27 +00:00
formId: string;
}
export class CommentForm extends Component<CommentFormProps, CommentFormState> {
private subscription: Subscription;
private emptyState: CommentFormState = {
buttonTitle: !this.props.node
? capitalizeFirstLetter(i18n.t('post'))
: this.props.edit
? capitalizeFirstLetter(i18n.t('save'))
: capitalizeFirstLetter(i18n.t('reply')),
finished: false,
2020-12-24 01:58:27 +00:00
formId: null,
};
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);
}
componentWillUnmount() {
this.subscription.unsubscribe();
}
render() {
return (
<div class="mb-3">
{UserService.Instance.user ? (
<MarkdownTextArea
2020-12-24 01:58:27 +00:00
initialContent={
this.props.node
? this.props.node.comment_view.comment.content
: null
}
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">
<svg class="icon icon-inline mr-2">
<use xlinkHref="#icon-alert-triangle"></use>
</svg>
<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 }) {
2020-12-24 01:58:27 +00:00
let content = msg.val;
this.state.formId = msg.formId;
let node = this.props.node;
if (this.props.edit) {
2020-12-24 01:58:27 +00:00
let form: EditComment = {
content,
form_id: this.state.formId,
edit_id: node.comment_view.comment.id,
auth: UserService.Instance.authField(),
};
WebSocketService.Instance.client.editComment(form);
} 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,
parent_id: node ? node.comment_view.comment.parent_id : null,
auth: UserService.Instance.authField(),
};
WebSocketService.Instance.client.createComment(form);
}
this.setState(this.state);
}
handleReplyCancel() {
this.props.onReplyCancel();
}
2020-12-24 01:58:27 +00:00
parseMessage(msg: any) {
let op = wsUserOp(msg);
// Only do the showing and hiding if logged in
if (UserService.Instance.user) {
if (
2020-12-24 01:58:27 +00:00
op == UserOperation.CreateComment ||
op == UserOperation.EditComment
) {
2020-12-24 01:58:27 +00:00
let data = wsJsonToRes<CommentResponse>(msg).data;
// 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) {
this.setState({ finished: true });
2020-12-24 01:58:27 +00:00
// Necessary because it broke tribute for some reason
this.setState({ finished: false });
}
}
}
}
}