2019-04-08 05:19:02 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2019-08-30 03:11:29 +00:00
|
|
|
import { CommentNode as CommentNodeI, CommentForm as CommentFormI, SearchForm, SearchType, SortType, UserOperation, SearchResponse } from '../interfaces';
|
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { capitalizeFirstLetter, fetchLimit, msgOp } from '../utils';
|
2019-04-15 23:12:06 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
2019-04-08 05:19:02 +00:00
|
|
|
import * as autosize from 'autosize';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
2019-08-30 04:38:06 +00:00
|
|
|
declare var Tribute: any;
|
2019-04-08 05:19:02 +00:00
|
|
|
|
|
|
|
interface CommentFormProps {
|
|
|
|
postId?: number;
|
|
|
|
node?: CommentNodeI;
|
|
|
|
onReplyCancel?(): any;
|
|
|
|
edit?: boolean;
|
2019-04-15 23:12:06 +00:00
|
|
|
disabled?: boolean;
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface CommentFormState {
|
|
|
|
commentForm: CommentFormI;
|
|
|
|
buttonTitle: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class CommentForm extends Component<CommentFormProps, CommentFormState> {
|
|
|
|
|
2019-08-30 04:38:06 +00:00
|
|
|
private id = `comment-form-${Math.random().toString(36).replace(/[^a-z]+/g, '').substr(2, 10)}`;
|
2019-08-30 03:11:29 +00:00
|
|
|
private userSub: Subscription;
|
|
|
|
private communitySub: Subscription;
|
|
|
|
private tribute: any;
|
2019-04-08 05:19:02 +00:00
|
|
|
private emptyState: CommentFormState = {
|
|
|
|
commentForm: {
|
|
|
|
auth: null,
|
|
|
|
content: null,
|
2019-04-15 23:12:06 +00:00
|
|
|
post_id: this.props.node ? this.props.node.comment.post_id : this.props.postId,
|
2019-04-16 23:04:23 +00:00
|
|
|
creator_id: UserService.Instance.user ? UserService.Instance.user.id : null,
|
2019-04-08 05:19:02 +00:00
|
|
|
},
|
2019-08-10 00:14:43 +00:00
|
|
|
buttonTitle: !this.props.node ? capitalizeFirstLetter(i18n.t('post')) : this.props.edit ? capitalizeFirstLetter(i18n.t('edit')) : capitalizeFirstLetter(i18n.t('reply')),
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
2019-08-30 04:38:06 +00:00
|
|
|
this.tribute = new Tribute({
|
2019-08-30 03:11:29 +00:00
|
|
|
collection: [
|
|
|
|
|
|
|
|
// Users
|
|
|
|
{
|
|
|
|
trigger: '@',
|
|
|
|
selectTemplate: (item: any) => {
|
|
|
|
return `[/u/${item.original.key}](${window.location.origin}/u/${item.original.key})`;
|
|
|
|
},
|
|
|
|
values: (text: string, cb: any) => {
|
|
|
|
this.userSearch(text, users => cb(users));
|
|
|
|
},
|
|
|
|
autocompleteMode: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Communities
|
|
|
|
{
|
|
|
|
trigger: '#',
|
|
|
|
selectTemplate: (item: any) => {
|
|
|
|
return `[/c/${item.original.key}](${window.location.origin}/c/${item.original.key})`;
|
|
|
|
},
|
|
|
|
values: (text: string, cb: any) => {
|
|
|
|
this.communitySearch(text, communities => cb(communities));
|
|
|
|
},
|
|
|
|
autocompleteMode: true,
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
2019-08-10 00:14:43 +00:00
|
|
|
|
2019-04-08 05:19:02 +00: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 23:12:06 +00:00
|
|
|
this.state.commentForm.creator_id = this.props.node.comment.creator_id;
|
2019-04-08 05:19:02 +00:00
|
|
|
} else {
|
|
|
|
// A reply gets a new parent id
|
|
|
|
this.state.commentForm.parent_id = this.props.node.comment.id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2019-08-30 03:11:29 +00: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 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2019-08-18 01:59:59 +00:00
|
|
|
<div class="mb-3">
|
2019-04-08 05:19:02 +00:00
|
|
|
<form onSubmit={linkEvent(this, this.handleCommentSubmit)}>
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-sm-12">
|
2019-08-30 03:11:29 +00:00
|
|
|
<textarea id={this.id} class="form-control" value={this.state.commentForm.content} onInput={linkEvent(this, this.handleCommentContentChange)} required disabled={this.props.disabled} rows={2} maxLength={10000} />
|
2019-04-08 05:19:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
2019-04-15 23:12:06 +00:00
|
|
|
<button type="submit" class="btn btn-sm btn-secondary mr-2" disabled={this.props.disabled}>{this.state.buttonTitle}</button>
|
2019-08-10 00:14:43 +00:00
|
|
|
{this.props.node && <button type="button" class="btn btn-sm btn-secondary" onClick={linkEvent(this, this.handleReplyCancel)}><T i18nKey="cancel">#</T></button>}
|
2019-04-08 05:19:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentSubmit(i: CommentForm, event: any) {
|
2019-04-16 23:04:23 +00:00
|
|
|
event.preventDefault();
|
2019-04-08 05:19:02 +00:00
|
|
|
if (i.props.edit) {
|
|
|
|
WebSocketService.Instance.editComment(i.state.commentForm);
|
|
|
|
} else {
|
|
|
|
WebSocketService.Instance.createComment(i.state.commentForm);
|
|
|
|
}
|
|
|
|
|
|
|
|
i.state.commentForm.content = undefined;
|
|
|
|
i.setState(i.state);
|
|
|
|
event.target.reset();
|
|
|
|
if (i.props.node) {
|
|
|
|
i.props.onReplyCancel();
|
|
|
|
}
|
2019-08-10 00:14:43 +00:00
|
|
|
|
2019-07-16 05:56:46 +00:00
|
|
|
autosize.update(document.querySelector('textarea'));
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentContentChange(i: CommentForm, event: any) {
|
|
|
|
i.state.commentForm.content = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleReplyCancel(i: CommentForm) {
|
|
|
|
i.props.onReplyCancel();
|
|
|
|
}
|
2019-08-30 03:11:29 +00:00
|
|
|
|
|
|
|
userSearch(text: string, cb: any) {
|
|
|
|
if (text) {
|
|
|
|
let form: SearchForm = {
|
|
|
|
q: text,
|
|
|
|
type_: SearchType[SearchType.Users],
|
|
|
|
sort: SortType[SortType.TopAll],
|
|
|
|
page: 1,
|
|
|
|
limit: fetchLimit,
|
|
|
|
};
|
|
|
|
|
|
|
|
WebSocketService.Instance.search(form);
|
|
|
|
|
|
|
|
this.userSub = WebSocketService.Instance.subject
|
|
|
|
.subscribe(
|
|
|
|
(msg) => {
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (op == UserOperation.Search) {
|
|
|
|
let res: SearchResponse = msg;
|
|
|
|
let users = res.users.map(u => {return {key: u.name}});
|
|
|
|
cb(users);
|
|
|
|
this.userSub.unsubscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cb([]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
communitySearch(text: string, cb: any) {
|
|
|
|
if (text) {
|
|
|
|
let form: SearchForm = {
|
|
|
|
q: text,
|
|
|
|
type_: SearchType[SearchType.Communities],
|
|
|
|
sort: SortType[SortType.TopAll],
|
|
|
|
page: 1,
|
|
|
|
limit: fetchLimit,
|
|
|
|
};
|
|
|
|
|
|
|
|
WebSocketService.Instance.search(form);
|
|
|
|
|
|
|
|
this.communitySub = WebSocketService.Instance.subject
|
|
|
|
.subscribe(
|
|
|
|
(msg) => {
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (op == UserOperation.Search) {
|
|
|
|
let res: SearchResponse = msg;
|
|
|
|
let communities = res.communities.map(u => {return {key: u.name}});
|
|
|
|
cb(communities);
|
|
|
|
this.communitySub.unsubscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cb([]);
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|