2019-04-08 01:19:02 -04:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2020-03-08 18:47:27 -04:00
|
|
|
import { Subscription } from 'rxjs';
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2020-03-06 14:57:52 -05:00
|
|
|
import { Prompt } from 'inferno-router';
|
2019-10-18 20:20:27 -04:00
|
|
|
import {
|
|
|
|
CommentNode as CommentNodeI,
|
|
|
|
CommentForm as CommentFormI,
|
2020-03-08 18:47:27 -04:00
|
|
|
WebSocketJsonResponse,
|
|
|
|
UserOperation,
|
|
|
|
CommentResponse,
|
2019-10-18 20:20:27 -04:00
|
|
|
} from '../interfaces';
|
|
|
|
import {
|
|
|
|
capitalizeFirstLetter,
|
|
|
|
mdToHtml,
|
|
|
|
randomStr,
|
|
|
|
markdownHelpUrl,
|
2020-01-22 22:29:11 -05:00
|
|
|
toast,
|
2020-01-24 13:59:50 -05:00
|
|
|
setupTribute,
|
2020-03-08 18:47:27 -04:00
|
|
|
wsJsonToRes,
|
2020-04-12 12:47:48 -04:00
|
|
|
emojiPicker,
|
2019-10-18 20:20:27 -04:00
|
|
|
} from '../utils';
|
2019-04-15 19:12:06 -04:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
2020-01-06 11:22:51 -05:00
|
|
|
import autosize from 'autosize';
|
2020-01-24 13:59:50 -05:00
|
|
|
import Tribute from 'tributejs/src/Tribute.js';
|
2020-04-12 12:47:48 -04:00
|
|
|
import emojiShortName from 'emoji-short-name';
|
2019-08-09 20:14:43 -04:00
|
|
|
import { i18n } from '../i18next';
|
2019-04-08 01:19:02 -04:00
|
|
|
|
|
|
|
interface CommentFormProps {
|
|
|
|
postId?: number;
|
|
|
|
node?: CommentNodeI;
|
|
|
|
onReplyCancel?(): any;
|
|
|
|
edit?: boolean;
|
2019-04-15 19:12:06 -04:00
|
|
|
disabled?: boolean;
|
2019-04-08 01:19:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
interface CommentFormState {
|
|
|
|
commentForm: CommentFormI;
|
|
|
|
buttonTitle: string;
|
2019-09-01 00:10:48 -04:00
|
|
|
previewMode: boolean;
|
2020-03-08 18:47:27 -04:00
|
|
|
loading: boolean;
|
2019-09-08 12:54:53 -04:00
|
|
|
imageLoading: boolean;
|
2019-04-08 01:19:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CommentForm extends Component<CommentFormProps, CommentFormState> {
|
2020-03-08 18:47:27 -04:00
|
|
|
private id = `comment-textarea-${randomStr()}`;
|
|
|
|
private formId = `comment-form-${randomStr()}`;
|
2020-01-24 13:59:50 -05:00
|
|
|
private tribute: Tribute;
|
2020-03-08 18:47:27 -04:00
|
|
|
private subscription: Subscription;
|
2019-04-08 01:19:02 -04:00
|
|
|
private emptyState: CommentFormState = {
|
|
|
|
commentForm: {
|
|
|
|
auth: null,
|
|
|
|
content: null,
|
2019-10-18 20:20:27 -04:00
|
|
|
post_id: this.props.node
|
|
|
|
? this.props.node.comment.post_id
|
|
|
|
: this.props.postId,
|
|
|
|
creator_id: UserService.Instance.user
|
|
|
|
? UserService.Instance.user.id
|
|
|
|
: null,
|
2019-04-08 01:19:02 -04:00
|
|
|
},
|
2019-10-18 20:20:27 -04:00
|
|
|
buttonTitle: !this.props.node
|
|
|
|
? capitalizeFirstLetter(i18n.t('post'))
|
|
|
|
: this.props.edit
|
|
|
|
? capitalizeFirstLetter(i18n.t('edit'))
|
|
|
|
: capitalizeFirstLetter(i18n.t('reply')),
|
2019-09-01 00:10:48 -04:00
|
|
|
previewMode: false,
|
2020-03-08 18:47:27 -04:00
|
|
|
loading: false,
|
2019-09-08 12:54:53 -04:00
|
|
|
imageLoading: false,
|
2019-10-18 20:20:27 -04:00
|
|
|
};
|
2019-04-08 01:19:02 -04:00
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
2020-01-24 13:59:50 -05:00
|
|
|
this.tribute = setupTribute();
|
2020-04-12 12:47:48 -04:00
|
|
|
this.setupEmojiPicker();
|
|
|
|
|
2019-04-08 01:19:02 -04:00
|
|
|
this.state = this.emptyState;
|
|
|
|
|
|
|
|
if (this.props.node) {
|
|
|
|
if (this.props.edit) {
|
|
|
|
this.state.commentForm.edit_id = this.props.node.comment.id;
|
|
|
|
this.state.commentForm.parent_id = this.props.node.comment.parent_id;
|
|
|
|
this.state.commentForm.content = this.props.node.comment.content;
|
2019-04-15 19:12:06 -04:00
|
|
|
this.state.commentForm.creator_id = this.props.node.comment.creator_id;
|
2019-04-08 01:19:02 -04:00
|
|
|
} else {
|
|
|
|
// A reply gets a new parent id
|
|
|
|
this.state.commentForm.parent_id = this.props.node.comment.id;
|
|
|
|
}
|
2019-10-18 20:20:27 -04:00
|
|
|
}
|
2020-03-08 18:47:27 -04:00
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
.subscribe(
|
|
|
|
msg => this.parseMessage(msg),
|
|
|
|
err => console.error(err),
|
|
|
|
() => console.log('complete')
|
|
|
|
);
|
2019-04-08 01:19:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2019-08-29 23:11:29 -04:00
|
|
|
var textarea: any = document.getElementById(this.id);
|
|
|
|
autosize(textarea);
|
|
|
|
this.tribute.attach(textarea);
|
|
|
|
textarea.addEventListener('tribute-replaced', () => {
|
|
|
|
this.state.commentForm.content = textarea.value;
|
|
|
|
this.setState(this.state);
|
|
|
|
autosize.update(textarea);
|
|
|
|
});
|
2019-04-08 01:19:02 -04:00
|
|
|
}
|
|
|
|
|
2020-03-08 18:47:27 -04:00
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
2019-04-08 01:19:02 -04:00
|
|
|
render() {
|
|
|
|
return (
|
2019-08-17 21:59:59 -04:00
|
|
|
<div class="mb-3">
|
2020-03-06 14:57:52 -05:00
|
|
|
<Prompt
|
|
|
|
when={this.state.commentForm.content}
|
|
|
|
message={i18n.t('block_leaving')}
|
|
|
|
/>
|
2020-03-08 18:47:27 -04:00
|
|
|
<form
|
|
|
|
id={this.formId}
|
|
|
|
onSubmit={linkEvent(this, this.handleCommentSubmit)}
|
|
|
|
>
|
2019-04-08 01:19:02 -04:00
|
|
|
<div class="form-group row">
|
2019-09-11 20:20:57 -04:00
|
|
|
<div className={`col-sm-12`}>
|
2019-10-18 20:20:27 -04:00
|
|
|
<textarea
|
|
|
|
id={this.id}
|
|
|
|
className={`form-control ${this.state.previewMode && 'd-none'}`}
|
|
|
|
value={this.state.commentForm.content}
|
|
|
|
onInput={linkEvent(this, this.handleCommentContentChange)}
|
2020-01-27 21:59:38 -05:00
|
|
|
onPaste={linkEvent(this, this.handleImageUploadPaste)}
|
2019-10-18 20:20:27 -04:00
|
|
|
required
|
|
|
|
disabled={this.props.disabled}
|
|
|
|
rows={2}
|
|
|
|
maxLength={10000}
|
|
|
|
/>
|
|
|
|
{this.state.previewMode && (
|
|
|
|
<div
|
|
|
|
className="md-div"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(
|
|
|
|
this.state.commentForm.content
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
)}
|
2019-04-08 01:19:02 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
2019-10-18 20:20:27 -04:00
|
|
|
<button
|
|
|
|
type="submit"
|
|
|
|
class="btn btn-sm btn-secondary mr-2"
|
|
|
|
disabled={this.props.disabled}
|
|
|
|
>
|
2020-03-08 18:47:27 -04:00
|
|
|
{this.state.loading ? (
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
) : (
|
|
|
|
<span>{this.state.buttonTitle}</span>
|
|
|
|
)}
|
2019-10-18 20:20:27 -04:00
|
|
|
</button>
|
|
|
|
{this.state.commentForm.content && (
|
|
|
|
<button
|
|
|
|
className={`btn btn-sm mr-2 btn-secondary ${this.state
|
|
|
|
.previewMode && 'active'}`}
|
|
|
|
onClick={linkEvent(this, this.handlePreviewToggle)}
|
|
|
|
>
|
2020-02-02 14:22:35 -05:00
|
|
|
{i18n.t('preview')}
|
2019-10-18 20:20:27 -04:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
{this.props.node && (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-sm btn-secondary mr-2"
|
|
|
|
onClick={linkEvent(this, this.handleReplyCancel)}
|
|
|
|
>
|
2020-02-02 14:22:35 -05:00
|
|
|
{i18n.t('cancel')}
|
2019-10-18 20:20:27 -04:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<a
|
|
|
|
href={markdownHelpUrl}
|
|
|
|
target="_blank"
|
2020-03-03 02:29:45 -05:00
|
|
|
class="d-inline-block float-right text-muted font-weight-bold"
|
|
|
|
title={i18n.t('formatting_help')}
|
2019-10-18 20:20:27 -04:00
|
|
|
>
|
2020-03-03 02:29:45 -05:00
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-help-circle"></use>
|
|
|
|
</svg>
|
2019-10-18 20:20:27 -04:00
|
|
|
</a>
|
2020-03-03 02:29:45 -05:00
|
|
|
<form class="d-inline-block mr-3 float-right text-muted font-weight-bold">
|
2019-10-18 20:20:27 -04:00
|
|
|
<label
|
|
|
|
htmlFor={`file-upload-${this.id}`}
|
|
|
|
className={`${UserService.Instance.user && 'pointer'}`}
|
2020-03-03 02:29:45 -05:00
|
|
|
data-tippy-content={i18n.t('upload_image')}
|
2019-10-18 20:20:27 -04:00
|
|
|
>
|
2020-03-03 02:29:45 -05:00
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-image"></use>
|
|
|
|
</svg>
|
2019-10-18 20:20:27 -04:00
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
id={`file-upload-${this.id}`}
|
|
|
|
type="file"
|
|
|
|
accept="image/*,video/*"
|
|
|
|
name="file"
|
|
|
|
class="d-none"
|
|
|
|
disabled={!UserService.Instance.user}
|
|
|
|
onChange={linkEvent(this, this.handleImageUpload)}
|
|
|
|
/>
|
2019-09-07 23:42:01 -04:00
|
|
|
</form>
|
2019-10-18 20:20:27 -04:00
|
|
|
{this.state.imageLoading && (
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
)}
|
2020-04-12 12:47:48 -04:00
|
|
|
<span
|
|
|
|
onClick={linkEvent(this, this.handleEmojiPickerClick)}
|
|
|
|
class="pointer unselectable d-inline-block mr-3 float-right text-muted font-weight-bold"
|
|
|
|
data-tippy-content={i18n.t('emoji_picker')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-smile"></use>
|
|
|
|
</svg>
|
|
|
|
</span>
|
2019-04-08 01:19:02 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-12 12:47:48 -04:00
|
|
|
setupEmojiPicker() {
|
2020-04-12 14:55:52 -04:00
|
|
|
emojiPicker.on('emoji', twemojiHtmlStr => {
|
2020-04-12 12:47:48 -04:00
|
|
|
if (this.state.commentForm.content == null) {
|
|
|
|
this.state.commentForm.content = '';
|
|
|
|
}
|
2020-04-12 14:55:52 -04:00
|
|
|
var el = document.createElement('div');
|
|
|
|
el.innerHTML = twemojiHtmlStr;
|
|
|
|
let nativeUnicode = (el.childNodes[0] as HTMLElement).getAttribute('alt');
|
|
|
|
let shortName = `:${emojiShortName[nativeUnicode]}:`;
|
2020-04-12 12:47:48 -04:00
|
|
|
this.state.commentForm.content += shortName;
|
|
|
|
this.setState(this.state);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-08 18:47:27 -04:00
|
|
|
handleFinished() {
|
|
|
|
this.state.previewMode = false;
|
|
|
|
this.state.loading = false;
|
|
|
|
this.state.commentForm.content = '';
|
2020-03-10 10:23:16 -04:00
|
|
|
this.setState(this.state);
|
2020-03-08 18:47:27 -04:00
|
|
|
let form: any = document.getElementById(this.formId);
|
|
|
|
form.reset();
|
|
|
|
if (this.props.node) {
|
|
|
|
this.props.onReplyCancel();
|
|
|
|
}
|
|
|
|
autosize.update(document.querySelector('textarea'));
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
2019-04-08 01:19:02 -04:00
|
|
|
handleCommentSubmit(i: CommentForm, event: any) {
|
2019-04-16 19:04:23 -04:00
|
|
|
event.preventDefault();
|
2019-04-08 01:19:02 -04:00
|
|
|
if (i.props.edit) {
|
|
|
|
WebSocketService.Instance.editComment(i.state.commentForm);
|
|
|
|
} else {
|
|
|
|
WebSocketService.Instance.createComment(i.state.commentForm);
|
|
|
|
}
|
|
|
|
|
2020-03-08 18:47:27 -04:00
|
|
|
i.state.loading = true;
|
2019-09-07 23:42:01 -04:00
|
|
|
i.setState(i.state);
|
2019-04-08 01:19:02 -04:00
|
|
|
}
|
|
|
|
|
2020-04-12 12:47:48 -04:00
|
|
|
handleEmojiPickerClick(_i: CommentForm, event: any) {
|
|
|
|
emojiPicker.togglePicker(event.target);
|
|
|
|
}
|
|
|
|
|
2019-04-08 01:19:02 -04:00
|
|
|
handleCommentContentChange(i: CommentForm, event: any) {
|
|
|
|
i.state.commentForm.content = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-09-01 00:10:48 -04:00
|
|
|
handlePreviewToggle(i: CommentForm, event: any) {
|
|
|
|
event.preventDefault();
|
|
|
|
i.state.previewMode = !i.state.previewMode;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-08 01:19:02 -04:00
|
|
|
handleReplyCancel(i: CommentForm) {
|
|
|
|
i.props.onReplyCancel();
|
|
|
|
}
|
2019-09-07 23:42:01 -04:00
|
|
|
|
2020-01-27 21:59:38 -05:00
|
|
|
handleImageUploadPaste(i: CommentForm, event: any) {
|
|
|
|
let image = event.clipboardData.files[0];
|
|
|
|
if (image) {
|
|
|
|
i.handleImageUpload(i, image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 23:42:01 -04:00
|
|
|
handleImageUpload(i: CommentForm, event: any) {
|
2020-01-27 21:59:38 -05:00
|
|
|
let file: any;
|
|
|
|
if (event.target) {
|
|
|
|
event.preventDefault();
|
|
|
|
file = event.target.files[0];
|
|
|
|
} else {
|
|
|
|
file = event;
|
|
|
|
}
|
|
|
|
|
2019-09-07 23:42:01 -04:00
|
|
|
const imageUploadUrl = `/pictshare/api/upload.php`;
|
|
|
|
const formData = new FormData();
|
|
|
|
formData.append('file', file);
|
2019-09-08 12:54:53 -04:00
|
|
|
|
|
|
|
i.state.imageLoading = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
|
2019-09-07 23:42:01 -04:00
|
|
|
fetch(imageUploadUrl, {
|
|
|
|
method: 'POST',
|
|
|
|
body: formData,
|
|
|
|
})
|
2019-10-18 20:20:27 -04:00
|
|
|
.then(res => res.json())
|
|
|
|
.then(res => {
|
|
|
|
let url = `${window.location.origin}/pictshare/${res.url}`;
|
2020-01-24 21:53:37 -05:00
|
|
|
let imageMarkdown =
|
2019-10-18 20:20:27 -04:00
|
|
|
res.filetype == 'mp4' ? `[vid](${url}/raw)` : `![](${url})`;
|
|
|
|
let content = i.state.commentForm.content;
|
2020-01-24 21:53:37 -05:00
|
|
|
content = content ? `${content}\n${imageMarkdown}` : imageMarkdown;
|
2019-10-18 20:20:27 -04:00
|
|
|
i.state.commentForm.content = content;
|
|
|
|
i.state.imageLoading = false;
|
|
|
|
i.setState(i.state);
|
2020-03-08 18:47:27 -04:00
|
|
|
let textarea: any = document.getElementById(i.id);
|
2020-01-24 21:53:37 -05:00
|
|
|
autosize.update(textarea);
|
2019-10-18 20:20:27 -04:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
i.state.imageLoading = false;
|
|
|
|
i.setState(i.state);
|
2020-01-22 22:29:11 -05:00
|
|
|
toast(error, 'danger');
|
2019-10-18 20:20:27 -04:00
|
|
|
});
|
2019-09-07 23:42:01 -04:00
|
|
|
}
|
2020-03-08 18:47:27 -04:00
|
|
|
|
|
|
|
parseMessage(msg: WebSocketJsonResponse) {
|
|
|
|
let res = wsJsonToRes(msg);
|
|
|
|
|
|
|
|
// Only do the showing and hiding if logged in
|
|
|
|
if (UserService.Instance.user) {
|
|
|
|
if (res.op == UserOperation.CreateComment) {
|
|
|
|
let data = res.data as CommentResponse;
|
|
|
|
if (data.comment.creator_id == UserService.Instance.user.id) {
|
|
|
|
this.handleFinished();
|
|
|
|
}
|
|
|
|
} else if (res.op == UserOperation.EditComment) {
|
|
|
|
let data = res.data as CommentResponse;
|
|
|
|
if (data.comment.creator_id == UserService.Instance.user.id) {
|
|
|
|
this.handleFinished();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 01:19:02 -04:00
|
|
|
}
|