2021-02-22 02:39:04 +00:00
|
|
|
import { Component, linkEvent } from "inferno";
|
2020-09-06 16:15:25 +00:00
|
|
|
import {
|
2021-08-20 02:56:18 +00:00
|
|
|
BlockPersonResponse,
|
2021-09-28 10:38:59 +00:00
|
|
|
CommentReportResponse,
|
2021-07-17 20:42:55 +00:00
|
|
|
CommentResponse,
|
2020-12-24 01:58:27 +00:00
|
|
|
CommentView,
|
2021-03-15 18:09:31 +00:00
|
|
|
GetPersonMentions,
|
|
|
|
GetPersonMentionsResponse,
|
2020-12-24 01:58:27 +00:00
|
|
|
GetPrivateMessages,
|
2021-07-17 20:42:55 +00:00
|
|
|
GetReplies,
|
|
|
|
GetRepliesResponse,
|
|
|
|
PersonMentionResponse,
|
|
|
|
PersonMentionView,
|
2021-09-28 10:38:59 +00:00
|
|
|
PostReportResponse,
|
2020-09-06 16:15:25 +00:00
|
|
|
PrivateMessageResponse,
|
2021-07-17 20:42:55 +00:00
|
|
|
PrivateMessagesResponse,
|
|
|
|
PrivateMessageView,
|
2020-12-24 01:58:27 +00:00
|
|
|
SiteView,
|
2021-07-17 20:42:55 +00:00
|
|
|
SortType,
|
|
|
|
UserOperation,
|
2021-02-22 02:39:04 +00:00
|
|
|
} from "lemmy-js-client";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { i18n } from "../../i18next";
|
|
|
|
import { InitialFetchRequest } from "../../interfaces";
|
|
|
|
import { UserService, WebSocketService } from "../../services";
|
2020-09-06 16:15:25 +00:00
|
|
|
import {
|
2021-07-17 20:42:55 +00:00
|
|
|
authField,
|
|
|
|
commentsToFlatNodes,
|
|
|
|
createCommentLikeRes,
|
2020-09-06 16:15:25 +00:00
|
|
|
editCommentRes,
|
2021-07-17 20:42:55 +00:00
|
|
|
fetchLimit,
|
|
|
|
isBrowser,
|
2020-09-06 16:15:25 +00:00
|
|
|
saveCommentRes,
|
2020-09-09 00:48:17 +00:00
|
|
|
setIsoData,
|
2021-07-17 20:42:55 +00:00
|
|
|
setupTippy,
|
|
|
|
toast,
|
2021-08-20 02:56:18 +00:00
|
|
|
updatePersonBlock,
|
2021-07-17 20:42:55 +00:00
|
|
|
wsClient,
|
|
|
|
wsJsonToRes,
|
2020-09-09 00:48:17 +00:00
|
|
|
wsSubscribe,
|
2020-12-24 01:58:27 +00:00
|
|
|
wsUserOp,
|
2021-07-17 20:42:55 +00:00
|
|
|
} from "../../utils";
|
|
|
|
import { CommentNodes } from "../comment/comment-nodes";
|
|
|
|
import { HtmlTags } from "../common/html-tags";
|
|
|
|
import { Icon, Spinner } from "../common/icon";
|
|
|
|
import { Paginator } from "../common/paginator";
|
|
|
|
import { SortSelect } from "../common/sort-select";
|
|
|
|
import { PrivateMessage } from "../private_message/private-message";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
enum UnreadOrAll {
|
|
|
|
Unread,
|
|
|
|
All,
|
|
|
|
}
|
|
|
|
|
|
|
|
enum MessageType {
|
|
|
|
All,
|
|
|
|
Replies,
|
|
|
|
Mentions,
|
|
|
|
Messages,
|
|
|
|
}
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
enum ReplyEnum {
|
|
|
|
Reply,
|
|
|
|
Mention,
|
|
|
|
Message,
|
|
|
|
}
|
|
|
|
type ReplyType = {
|
|
|
|
id: number;
|
|
|
|
type_: ReplyEnum;
|
2021-03-15 18:09:31 +00:00
|
|
|
view: CommentView | PrivateMessageView | PersonMentionView;
|
2020-12-24 01:58:27 +00:00
|
|
|
published: string;
|
|
|
|
};
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
interface InboxState {
|
|
|
|
unreadOrAll: UnreadOrAll;
|
|
|
|
messageType: MessageType;
|
2020-12-24 01:58:27 +00:00
|
|
|
replies: CommentView[];
|
2021-03-15 18:09:31 +00:00
|
|
|
mentions: PersonMentionView[];
|
2020-12-24 01:58:27 +00:00
|
|
|
messages: PrivateMessageView[];
|
2021-02-02 20:24:25 +00:00
|
|
|
combined: ReplyType[];
|
2020-09-06 16:15:25 +00:00
|
|
|
sort: SortType;
|
|
|
|
page: number;
|
2020-12-24 01:58:27 +00:00
|
|
|
site_view: SiteView;
|
2020-09-09 00:48:17 +00:00
|
|
|
loading: boolean;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Inbox extends Component<any, InboxState> {
|
2020-09-09 00:48:17 +00:00
|
|
|
private isoData = setIsoData(this.context);
|
2020-09-06 16:15:25 +00:00
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: InboxState = {
|
|
|
|
unreadOrAll: UnreadOrAll.Unread,
|
|
|
|
messageType: MessageType.All,
|
|
|
|
replies: [],
|
|
|
|
mentions: [],
|
|
|
|
messages: [],
|
2021-02-02 20:24:25 +00:00
|
|
|
combined: [],
|
2020-09-06 16:15:25 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
page: 1,
|
2020-12-24 01:58:27 +00:00
|
|
|
site_view: this.isoData.site_res.site_view,
|
2020-09-09 00:48:17 +00:00
|
|
|
loading: true,
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.handleSortChange = this.handleSortChange.bind(this);
|
2021-07-16 19:40:56 +00:00
|
|
|
this.handlePageChange = this.handlePageChange.bind(this);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2021-08-20 02:56:18 +00:00
|
|
|
if (!UserService.Instance.myUserInfo && isBrowser()) {
|
2021-02-22 02:39:04 +00:00
|
|
|
toast(i18n.t("not_logged_in"), "danger");
|
2020-12-15 23:43:35 +00:00
|
|
|
this.context.router.history.push(`/login`);
|
|
|
|
}
|
|
|
|
|
2020-09-09 00:48:17 +00:00
|
|
|
this.parseMessage = this.parseMessage.bind(this);
|
|
|
|
this.subscription = wsSubscribe(this.parseMessage);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2020-09-09 00:48:17 +00:00
|
|
|
// Only fetch the data if coming from another route
|
|
|
|
if (this.isoData.path == this.context.router.route.match.url) {
|
2020-12-26 03:28:05 +00:00
|
|
|
this.state.replies = this.isoData.routeData[0].replies || [];
|
|
|
|
this.state.mentions = this.isoData.routeData[1].mentions || [];
|
|
|
|
this.state.messages = this.isoData.routeData[2].messages || [];
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined = this.buildCombined();
|
2020-09-09 00:48:17 +00:00
|
|
|
this.state.loading = false;
|
|
|
|
} else {
|
|
|
|
this.refetch();
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2020-09-09 00:48:17 +00:00
|
|
|
if (isBrowser()) {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get documentTitle(): string {
|
2021-08-20 02:56:18 +00:00
|
|
|
return `@${
|
|
|
|
UserService.Instance.myUserInfo.local_user_view.person.name
|
|
|
|
} ${i18n.t("inbox")} - ${this.state.site_view.site.name}`;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
2020-09-09 00:48:17 +00:00
|
|
|
{this.state.loading ? (
|
|
|
|
<h5>
|
2021-07-17 20:21:31 +00:00
|
|
|
<Spinner large />
|
2020-09-09 00:48:17 +00:00
|
|
|
</h5>
|
|
|
|
) : (
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2020-09-11 18:09:21 +00:00
|
|
|
<HtmlTags
|
|
|
|
title={this.documentTitle}
|
|
|
|
path={this.context.router.route.match.url}
|
|
|
|
/>
|
2021-07-17 20:42:55 +00:00
|
|
|
<h5 class="mb-2">
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("inbox")}
|
2020-09-09 00:48:17 +00:00
|
|
|
<small>
|
|
|
|
<a
|
|
|
|
href={`/feeds/inbox/${UserService.Instance.auth}.xml`}
|
|
|
|
title="RSS"
|
|
|
|
rel="noopener"
|
|
|
|
>
|
2021-02-11 20:35:27 +00:00
|
|
|
<Icon icon="rss" classes="ml-2 text-muted small" />
|
2020-09-09 00:48:17 +00:00
|
|
|
</a>
|
|
|
|
</small>
|
|
|
|
</h5>
|
|
|
|
{this.state.replies.length +
|
|
|
|
this.state.mentions.length +
|
|
|
|
this.state.messages.length >
|
|
|
|
0 &&
|
|
|
|
this.state.unreadOrAll == UnreadOrAll.Unread && (
|
2021-07-17 20:42:55 +00:00
|
|
|
<button
|
|
|
|
class="btn btn-secondary mb-2"
|
|
|
|
onClick={linkEvent(this, this.markAllAsRead)}
|
|
|
|
>
|
|
|
|
{i18n.t("mark_all_as_read")}
|
|
|
|
</button>
|
2020-09-09 00:48:17 +00:00
|
|
|
)}
|
|
|
|
{this.selects()}
|
|
|
|
{this.state.messageType == MessageType.All && this.all()}
|
|
|
|
{this.state.messageType == MessageType.Replies && this.replies()}
|
|
|
|
{this.state.messageType == MessageType.Mentions &&
|
|
|
|
this.mentions()}
|
|
|
|
{this.state.messageType == MessageType.Messages &&
|
|
|
|
this.messages()}
|
2021-07-16 19:40:56 +00:00
|
|
|
<Paginator
|
|
|
|
page={this.state.page}
|
|
|
|
onChange={this.handlePageChange}
|
|
|
|
/>
|
2020-09-09 00:48:17 +00:00
|
|
|
</div>
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
2020-09-09 00:48:17 +00:00
|
|
|
)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
unreadOrAllRadios() {
|
|
|
|
return (
|
|
|
|
<div class="btn-group btn-group-toggle flex-wrap mb-2">
|
|
|
|
<label
|
|
|
|
className={`btn btn-outline-secondary pointer
|
2021-02-22 02:39:04 +00:00
|
|
|
${this.state.unreadOrAll == UnreadOrAll.Unread && "active"}
|
2020-09-06 16:15:25 +00:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
value={UnreadOrAll.Unread}
|
|
|
|
checked={this.state.unreadOrAll == UnreadOrAll.Unread}
|
|
|
|
onChange={linkEvent(this, this.handleUnreadOrAllChange)}
|
|
|
|
/>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("unread")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
|
|
|
<label
|
|
|
|
className={`btn btn-outline-secondary pointer
|
2021-02-22 02:39:04 +00:00
|
|
|
${this.state.unreadOrAll == UnreadOrAll.All && "active"}
|
2020-09-06 16:15:25 +00:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
value={UnreadOrAll.All}
|
|
|
|
checked={this.state.unreadOrAll == UnreadOrAll.All}
|
|
|
|
onChange={linkEvent(this, this.handleUnreadOrAllChange)}
|
|
|
|
/>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("all")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
messageTypeRadios() {
|
|
|
|
return (
|
|
|
|
<div class="btn-group btn-group-toggle flex-wrap mb-2">
|
|
|
|
<label
|
|
|
|
className={`btn btn-outline-secondary pointer
|
2021-02-22 02:39:04 +00:00
|
|
|
${this.state.messageType == MessageType.All && "active"}
|
2020-09-06 16:15:25 +00:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
value={MessageType.All}
|
|
|
|
checked={this.state.messageType == MessageType.All}
|
|
|
|
onChange={linkEvent(this, this.handleMessageTypeChange)}
|
|
|
|
/>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("all")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
|
|
|
<label
|
|
|
|
className={`btn btn-outline-secondary pointer
|
2021-02-22 02:39:04 +00:00
|
|
|
${this.state.messageType == MessageType.Replies && "active"}
|
2020-09-06 16:15:25 +00:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
value={MessageType.Replies}
|
|
|
|
checked={this.state.messageType == MessageType.Replies}
|
|
|
|
onChange={linkEvent(this, this.handleMessageTypeChange)}
|
|
|
|
/>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("replies")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
|
|
|
<label
|
|
|
|
className={`btn btn-outline-secondary pointer
|
2021-02-22 02:39:04 +00:00
|
|
|
${this.state.messageType == MessageType.Mentions && "active"}
|
2020-09-06 16:15:25 +00:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
value={MessageType.Mentions}
|
|
|
|
checked={this.state.messageType == MessageType.Mentions}
|
|
|
|
onChange={linkEvent(this, this.handleMessageTypeChange)}
|
|
|
|
/>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("mentions")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
|
|
|
<label
|
|
|
|
className={`btn btn-outline-secondary pointer
|
2021-02-22 02:39:04 +00:00
|
|
|
${this.state.messageType == MessageType.Messages && "active"}
|
2020-09-06 16:15:25 +00:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
value={MessageType.Messages}
|
|
|
|
checked={this.state.messageType == MessageType.Messages}
|
|
|
|
onChange={linkEvent(this, this.handleMessageTypeChange)}
|
|
|
|
/>
|
2021-02-22 02:39:04 +00:00
|
|
|
{i18n.t("messages")}
|
2020-09-06 16:15:25 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
selects() {
|
|
|
|
return (
|
|
|
|
<div className="mb-2">
|
|
|
|
<span class="mr-3">{this.unreadOrAllRadios()}</span>
|
|
|
|
<span class="mr-3">{this.messageTypeRadios()}</span>
|
|
|
|
<SortSelect
|
|
|
|
sort={this.state.sort}
|
|
|
|
onChange={this.handleSortChange}
|
|
|
|
hideHot
|
2021-02-01 18:48:42 +00:00
|
|
|
hideMostComments
|
2020-09-06 16:15:25 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-02-02 20:24:25 +00:00
|
|
|
replyToReplyType(r: CommentView): ReplyType {
|
|
|
|
return {
|
|
|
|
id: r.comment.id,
|
2020-12-24 01:58:27 +00:00
|
|
|
type_: ReplyEnum.Reply,
|
|
|
|
view: r,
|
|
|
|
published: r.comment.published,
|
2021-02-02 20:24:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-03-15 18:09:31 +00:00
|
|
|
mentionToReplyType(r: PersonMentionView): ReplyType {
|
2021-02-02 20:24:25 +00:00
|
|
|
return {
|
2021-03-15 18:09:31 +00:00
|
|
|
id: r.person_mention.id,
|
2020-12-24 01:58:27 +00:00
|
|
|
type_: ReplyEnum.Mention,
|
|
|
|
view: r,
|
|
|
|
published: r.comment.published,
|
2021-02-02 20:24:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
messageToReplyType(r: PrivateMessageView): ReplyType {
|
|
|
|
return {
|
|
|
|
id: r.private_message.id,
|
2020-12-24 01:58:27 +00:00
|
|
|
type_: ReplyEnum.Message,
|
|
|
|
view: r,
|
|
|
|
published: r.private_message.published,
|
2021-02-02 20:24:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
buildCombined(): ReplyType[] {
|
|
|
|
let replies: ReplyType[] = this.state.replies.map(r =>
|
|
|
|
this.replyToReplyType(r)
|
|
|
|
);
|
|
|
|
let mentions: ReplyType[] = this.state.mentions.map(r =>
|
|
|
|
this.mentionToReplyType(r)
|
|
|
|
);
|
|
|
|
let messages: ReplyType[] = this.state.messages.map(r =>
|
|
|
|
this.messageToReplyType(r)
|
|
|
|
);
|
2020-12-24 01:58:27 +00:00
|
|
|
|
|
|
|
return [...replies, ...mentions, ...messages].sort((a, b) =>
|
|
|
|
b.published.localeCompare(a.published)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderReplyType(i: ReplyType) {
|
|
|
|
switch (i.type_) {
|
|
|
|
case ReplyEnum.Reply:
|
|
|
|
return (
|
|
|
|
<CommentNodes
|
|
|
|
key={i.id}
|
|
|
|
nodes={[{ comment_view: i.view as CommentView }]}
|
|
|
|
noIndent
|
|
|
|
markable
|
|
|
|
showCommunity
|
|
|
|
showContext
|
|
|
|
enableDownvotes={this.state.site_view.site.enable_downvotes}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
case ReplyEnum.Mention:
|
|
|
|
return (
|
|
|
|
<CommentNodes
|
|
|
|
key={i.id}
|
2021-03-15 18:09:31 +00:00
|
|
|
nodes={[{ comment_view: i.view as PersonMentionView }]}
|
2020-12-24 01:58:27 +00:00
|
|
|
noIndent
|
|
|
|
markable
|
|
|
|
showCommunity
|
|
|
|
showContext
|
|
|
|
enableDownvotes={this.state.site_view.site.enable_downvotes}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
case ReplyEnum.Message:
|
|
|
|
return (
|
|
|
|
<PrivateMessage
|
|
|
|
key={i.id}
|
|
|
|
private_message_view={i.view as PrivateMessageView}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
return <div />;
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
all() {
|
2021-02-02 20:24:25 +00:00
|
|
|
return <div>{this.state.combined.map(i => this.renderReplyType(i))}</div>;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
replies() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<CommentNodes
|
|
|
|
nodes={commentsToFlatNodes(this.state.replies)}
|
|
|
|
noIndent
|
|
|
|
markable
|
|
|
|
showCommunity
|
|
|
|
showContext
|
2020-12-24 01:58:27 +00:00
|
|
|
enableDownvotes={this.state.site_view.site.enable_downvotes}
|
2020-09-06 16:15:25 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
mentions() {
|
|
|
|
return (
|
|
|
|
<div>
|
2020-12-24 01:58:27 +00:00
|
|
|
{this.state.mentions.map(umv => (
|
2020-09-06 16:15:25 +00:00
|
|
|
<CommentNodes
|
2021-03-15 18:09:31 +00:00
|
|
|
key={umv.person_mention.id}
|
2020-12-24 01:58:27 +00:00
|
|
|
nodes={[{ comment_view: umv }]}
|
2020-09-06 16:15:25 +00:00
|
|
|
noIndent
|
|
|
|
markable
|
|
|
|
showCommunity
|
|
|
|
showContext
|
2020-12-24 01:58:27 +00:00
|
|
|
enableDownvotes={this.state.site_view.site.enable_downvotes}
|
2020-09-06 16:15:25 +00:00
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
messages() {
|
|
|
|
return (
|
|
|
|
<div>
|
2020-12-24 01:58:27 +00:00
|
|
|
{this.state.messages.map(pmv => (
|
|
|
|
<PrivateMessage
|
|
|
|
key={pmv.private_message.id}
|
|
|
|
private_message_view={pmv}
|
|
|
|
/>
|
2020-09-06 16:15:25 +00:00
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-16 19:40:56 +00:00
|
|
|
handlePageChange(page: number) {
|
|
|
|
this.setState({ page });
|
|
|
|
this.refetch();
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleUnreadOrAllChange(i: Inbox, event: any) {
|
|
|
|
i.state.unreadOrAll = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMessageTypeChange(i: Inbox, event: any) {
|
|
|
|
i.state.messageType = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2020-11-12 21:56:46 +00:00
|
|
|
static fetchInitialData(req: InitialFetchRequest): Promise<any>[] {
|
2020-09-09 00:48:17 +00:00
|
|
|
let promises: Promise<any>[] = [];
|
|
|
|
|
|
|
|
// It can be /u/me, or /username/1
|
2020-12-24 01:58:27 +00:00
|
|
|
let repliesForm: GetReplies = {
|
2020-09-09 00:48:17 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
|
|
|
limit: fetchLimit,
|
2020-12-24 01:58:27 +00:00
|
|
|
auth: req.auth,
|
2020-09-09 00:48:17 +00:00
|
|
|
};
|
2020-11-12 21:56:46 +00:00
|
|
|
promises.push(req.client.getReplies(repliesForm));
|
2020-09-09 00:48:17 +00:00
|
|
|
|
2021-03-15 18:09:31 +00:00
|
|
|
let personMentionsForm: GetPersonMentions = {
|
2020-09-09 00:48:17 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
|
|
|
limit: fetchLimit,
|
2020-12-24 01:58:27 +00:00
|
|
|
auth: req.auth,
|
2020-09-09 00:48:17 +00:00
|
|
|
};
|
2021-03-15 18:09:31 +00:00
|
|
|
promises.push(req.client.getPersonMentions(personMentionsForm));
|
2020-09-09 00:48:17 +00:00
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
let privateMessagesForm: GetPrivateMessages = {
|
2020-09-09 00:48:17 +00:00
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
|
|
|
limit: fetchLimit,
|
2020-12-24 01:58:27 +00:00
|
|
|
auth: req.auth,
|
2020-09-09 00:48:17 +00:00
|
|
|
};
|
2020-11-12 21:56:46 +00:00
|
|
|
promises.push(req.client.getPrivateMessages(privateMessagesForm));
|
2020-09-09 00:48:17 +00:00
|
|
|
|
|
|
|
return promises;
|
|
|
|
}
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
refetch() {
|
2020-12-24 01:58:27 +00:00
|
|
|
let repliesForm: GetReplies = {
|
2020-09-06 16:15:25 +00:00
|
|
|
sort: this.state.sort,
|
|
|
|
unread_only: this.state.unreadOrAll == UnreadOrAll.Unread,
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.getReplies(repliesForm));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2021-03-15 18:09:31 +00:00
|
|
|
let personMentionsForm: GetPersonMentions = {
|
2020-09-06 16:15:25 +00:00
|
|
|
sort: this.state.sort,
|
|
|
|
unread_only: this.state.unreadOrAll == UnreadOrAll.Unread,
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2021-03-15 18:09:31 +00:00
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.getPersonMentions(personMentionsForm)
|
|
|
|
);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
let privateMessagesForm: GetPrivateMessages = {
|
2020-09-06 16:15:25 +00:00
|
|
|
unread_only: this.state.unreadOrAll == UnreadOrAll.Unread,
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.getPrivateMessages(privateMessagesForm)
|
|
|
|
);
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleSortChange(val: SortType) {
|
|
|
|
this.state.sort = val;
|
|
|
|
this.state.page = 1;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
markAllAsRead(i: Inbox) {
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(
|
|
|
|
wsClient.markAllAsRead({
|
|
|
|
auth: authField(),
|
|
|
|
})
|
|
|
|
);
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.replies = [];
|
|
|
|
i.state.mentions = [];
|
|
|
|
i.state.messages = [];
|
2021-10-17 17:42:30 +00:00
|
|
|
UserService.Instance.unreadInboxCountSub.next(0);
|
2020-09-06 16:15:25 +00:00
|
|
|
window.scrollTo(0, 0);
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2021-10-17 17:42:30 +00:00
|
|
|
sendUnreadCount(read: boolean) {
|
|
|
|
let urcs = UserService.Instance.unreadInboxCountSub;
|
|
|
|
if (read) {
|
|
|
|
urcs.next(urcs.getValue() - 1);
|
|
|
|
} else {
|
|
|
|
urcs.next(urcs.getValue() + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
let op = wsUserOp(msg);
|
2021-02-02 20:24:25 +00:00
|
|
|
console.log(msg);
|
2020-09-06 16:15:25 +00:00
|
|
|
if (msg.error) {
|
2021-02-22 02:39:04 +00:00
|
|
|
toast(i18n.t(msg.error), "danger");
|
2020-09-06 16:15:25 +00:00
|
|
|
return;
|
|
|
|
} else if (msg.reconnect) {
|
|
|
|
this.refetch();
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.GetReplies) {
|
|
|
|
let data = wsJsonToRes<GetRepliesResponse>(msg).data;
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.replies = data.replies;
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined = this.buildCombined();
|
2020-09-09 00:48:17 +00:00
|
|
|
this.state.loading = false;
|
2020-09-06 16:15:25 +00:00
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
2021-03-15 18:09:31 +00:00
|
|
|
} else if (op == UserOperation.GetPersonMentions) {
|
|
|
|
let data = wsJsonToRes<GetPersonMentionsResponse>(msg).data;
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.mentions = data.mentions;
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined = this.buildCombined();
|
2020-09-06 16:15:25 +00:00
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.GetPrivateMessages) {
|
|
|
|
let data = wsJsonToRes<PrivateMessagesResponse>(msg).data;
|
|
|
|
this.state.messages = data.private_messages;
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined = this.buildCombined();
|
2020-09-06 16:15:25 +00:00
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.EditPrivateMessage) {
|
|
|
|
let data = wsJsonToRes<PrivateMessageResponse>(msg).data;
|
|
|
|
let found: PrivateMessageView = this.state.messages.find(
|
|
|
|
m =>
|
|
|
|
m.private_message.id === data.private_message_view.private_message.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
if (found) {
|
2021-02-02 20:24:25 +00:00
|
|
|
let combinedView = this.state.combined.find(
|
|
|
|
i => i.id == data.private_message_view.private_message.id
|
|
|
|
).view as PrivateMessageView;
|
|
|
|
found.private_message.content = combinedView.private_message.content =
|
2020-12-24 01:58:27 +00:00
|
|
|
data.private_message_view.private_message.content;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.private_message.updated = combinedView.private_message.updated =
|
2020-12-24 01:58:27 +00:00
|
|
|
data.private_message_view.private_message.updated;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
this.setState(this.state);
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.DeletePrivateMessage) {
|
|
|
|
let data = wsJsonToRes<PrivateMessageResponse>(msg).data;
|
|
|
|
let found: PrivateMessageView = this.state.messages.find(
|
|
|
|
m =>
|
|
|
|
m.private_message.id === data.private_message_view.private_message.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
if (found) {
|
2021-02-02 20:24:25 +00:00
|
|
|
let combinedView = this.state.combined.find(
|
|
|
|
i => i.id == data.private_message_view.private_message.id
|
|
|
|
).view as PrivateMessageView;
|
|
|
|
found.private_message.deleted = combinedView.private_message.deleted =
|
2020-12-24 01:58:27 +00:00
|
|
|
data.private_message_view.private_message.deleted;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.private_message.updated = combinedView.private_message.updated =
|
2020-12-24 01:58:27 +00:00
|
|
|
data.private_message_view.private_message.updated;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
this.setState(this.state);
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.MarkPrivateMessageAsRead) {
|
|
|
|
let data = wsJsonToRes<PrivateMessageResponse>(msg).data;
|
|
|
|
let found: PrivateMessageView = this.state.messages.find(
|
|
|
|
m =>
|
|
|
|
m.private_message.id === data.private_message_view.private_message.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if (found) {
|
2021-02-02 20:24:25 +00:00
|
|
|
let combinedView = this.state.combined.find(
|
|
|
|
i => i.id == data.private_message_view.private_message.id
|
|
|
|
).view as PrivateMessageView;
|
|
|
|
found.private_message.updated = combinedView.private_message.updated =
|
2020-12-24 01:58:27 +00:00
|
|
|
data.private_message_view.private_message.updated;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
// If youre in the unread view, just remove it from the list
|
2020-12-24 01:58:27 +00:00
|
|
|
if (
|
|
|
|
this.state.unreadOrAll == UnreadOrAll.Unread &&
|
|
|
|
data.private_message_view.private_message.read
|
|
|
|
) {
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.messages = this.state.messages.filter(
|
2020-12-24 01:58:27 +00:00
|
|
|
r =>
|
|
|
|
r.private_message.id !==
|
|
|
|
data.private_message_view.private_message.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined = this.state.combined.filter(
|
|
|
|
r => r.id !== data.private_message_view.private_message.id
|
2020-12-24 01:58:27 +00:00
|
|
|
);
|
2021-02-02 20:24:25 +00:00
|
|
|
} else {
|
|
|
|
found.private_message.read = combinedView.private_message.read =
|
2020-12-24 01:58:27 +00:00
|
|
|
data.private_message_view.private_message.read;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-17 17:42:30 +00:00
|
|
|
this.sendUnreadCount(data.private_message_view.private_message.read);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.MarkAllAsRead) {
|
2020-09-06 16:15:25 +00:00
|
|
|
// Moved to be instant
|
|
|
|
} else if (
|
2020-12-24 01:58:27 +00:00
|
|
|
op == UserOperation.EditComment ||
|
|
|
|
op == UserOperation.DeleteComment ||
|
|
|
|
op == UserOperation.RemoveComment
|
2020-09-06 16:15:25 +00:00
|
|
|
) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let data = wsJsonToRes<CommentResponse>(msg).data;
|
|
|
|
editCommentRes(data.comment_view, this.state.replies);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.MarkCommentAsRead) {
|
|
|
|
let data = wsJsonToRes<CommentResponse>(msg).data;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
// If youre in the unread view, just remove it from the list
|
2020-12-24 01:58:27 +00:00
|
|
|
if (
|
|
|
|
this.state.unreadOrAll == UnreadOrAll.Unread &&
|
|
|
|
data.comment_view.comment.read
|
|
|
|
) {
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.replies = this.state.replies.filter(
|
2020-12-24 01:58:27 +00:00
|
|
|
r => r.comment.id !== data.comment_view.comment.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined = this.state.combined.filter(
|
|
|
|
r => r.id !== data.comment_view.comment.id
|
|
|
|
);
|
2020-09-06 16:15:25 +00:00
|
|
|
} else {
|
2020-12-24 01:58:27 +00:00
|
|
|
let found = this.state.replies.find(
|
|
|
|
c => c.comment.id == data.comment_view.comment.id
|
|
|
|
);
|
2021-02-02 20:24:25 +00:00
|
|
|
let combinedView = this.state.combined.find(
|
|
|
|
i => i.id == data.comment_view.comment.id
|
|
|
|
).view as CommentView;
|
|
|
|
found.comment.read = combinedView.comment.read =
|
|
|
|
data.comment_view.comment.read;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
2021-10-17 17:42:30 +00:00
|
|
|
|
|
|
|
this.sendUnreadCount(data.comment_view.comment.read);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
2021-03-15 18:09:31 +00:00
|
|
|
} else if (op == UserOperation.MarkPersonMentionAsRead) {
|
|
|
|
let data = wsJsonToRes<PersonMentionResponse>(msg).data;
|
2020-12-24 01:58:27 +00:00
|
|
|
|
|
|
|
// TODO this might not be correct, it might need to use the comment id
|
|
|
|
let found = this.state.mentions.find(
|
2021-03-15 18:09:31 +00:00
|
|
|
c => c.person_mention.id == data.person_mention_view.person_mention.id
|
2020-12-24 01:58:27 +00:00
|
|
|
);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2021-02-02 20:24:25 +00:00
|
|
|
if (found) {
|
|
|
|
let combinedView = this.state.combined.find(
|
2021-03-15 18:09:31 +00:00
|
|
|
i => i.id == data.person_mention_view.person_mention.id
|
|
|
|
).view as PersonMentionView;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.comment.content = combinedView.comment.content =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.comment.content;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.comment.updated = combinedView.comment.updated =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.comment.updated;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.comment.removed = combinedView.comment.removed =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.comment.removed;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.comment.deleted = combinedView.comment.deleted =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.comment.deleted;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.counts.upvotes = combinedView.counts.upvotes =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.counts.upvotes;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.counts.downvotes = combinedView.counts.downvotes =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.counts.downvotes;
|
2021-02-02 20:24:25 +00:00
|
|
|
found.counts.score = combinedView.counts.score =
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.counts.score;
|
2021-02-02 20:24:25 +00:00
|
|
|
|
|
|
|
// If youre in the unread view, just remove it from the list
|
|
|
|
if (
|
|
|
|
this.state.unreadOrAll == UnreadOrAll.Unread &&
|
2021-03-15 18:09:31 +00:00
|
|
|
data.person_mention_view.person_mention.read
|
2021-02-02 20:24:25 +00:00
|
|
|
) {
|
|
|
|
this.state.mentions = this.state.mentions.filter(
|
2021-03-15 18:09:31 +00:00
|
|
|
r =>
|
|
|
|
r.person_mention.id !== data.person_mention_view.person_mention.id
|
2021-02-02 20:24:25 +00:00
|
|
|
);
|
|
|
|
this.state.combined = this.state.combined.filter(
|
2021-03-15 18:09:31 +00:00
|
|
|
r => r.id !== data.person_mention_view.person_mention.id
|
2021-02-02 20:24:25 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// TODO test to make sure these mentions are getting marked as read
|
2021-03-15 18:09:31 +00:00
|
|
|
found.person_mention.read = combinedView.person_mention.read =
|
|
|
|
data.person_mention_view.person_mention.read;
|
2021-02-02 20:24:25 +00:00
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
2021-10-17 17:42:30 +00:00
|
|
|
this.sendUnreadCount(data.person_mention_view.person_mention.read);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.CreateComment) {
|
|
|
|
let data = wsJsonToRes<CommentResponse>(msg).data;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2021-03-15 18:09:31 +00:00
|
|
|
if (
|
|
|
|
data.recipient_ids.includes(
|
2021-08-20 02:56:18 +00:00
|
|
|
UserService.Instance.myUserInfo.local_user_view.local_user.id
|
2021-03-15 18:09:31 +00:00
|
|
|
)
|
|
|
|
) {
|
2020-12-24 01:58:27 +00:00
|
|
|
this.state.replies.unshift(data.comment_view);
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined.unshift(this.replyToReplyType(data.comment_view));
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
2021-03-15 18:09:31 +00:00
|
|
|
} else if (
|
|
|
|
data.comment_view.creator.id ==
|
2021-08-20 02:56:18 +00:00
|
|
|
UserService.Instance.myUserInfo.local_user_view.person.id
|
2021-03-15 18:09:31 +00:00
|
|
|
) {
|
2021-10-12 17:01:49 +00:00
|
|
|
// If youre in the unread view, just remove it from the list
|
|
|
|
if (this.state.unreadOrAll == UnreadOrAll.Unread) {
|
|
|
|
this.state.replies = this.state.replies.filter(
|
|
|
|
r => r.comment.id !== data.comment_view.comment.parent_id
|
|
|
|
);
|
|
|
|
this.state.mentions = this.state.mentions.filter(
|
|
|
|
m => m.comment.id !== data.comment_view.comment.parent_id
|
|
|
|
);
|
|
|
|
this.state.combined = this.state.combined.filter(r => {
|
|
|
|
if (this.isMention(r.view))
|
|
|
|
return r.view.comment.id !== data.comment_view.comment.parent_id;
|
|
|
|
else return r.id !== data.comment_view.comment.parent_id;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
let mention_found = this.state.mentions.find(
|
|
|
|
i => i.comment.id == data.comment_view.comment.parent_id
|
|
|
|
);
|
|
|
|
if (mention_found) {
|
|
|
|
mention_found.person_mention.read = true;
|
|
|
|
}
|
|
|
|
let reply_found = this.state.replies.find(
|
|
|
|
i => i.comment.id == data.comment_view.comment.parent_id
|
|
|
|
);
|
|
|
|
if (reply_found) {
|
|
|
|
reply_found.comment.read = true;
|
|
|
|
}
|
|
|
|
this.state.combined = this.buildCombined();
|
|
|
|
}
|
2021-10-17 17:42:30 +00:00
|
|
|
this.sendUnreadCount(true);
|
2021-10-12 17:01:49 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
2020-12-24 01:58:27 +00:00
|
|
|
// TODO this seems wrong, you should be using form_id
|
2021-02-22 02:39:04 +00:00
|
|
|
toast(i18n.t("reply_sent"));
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.CreatePrivateMessage) {
|
|
|
|
let data = wsJsonToRes<PrivateMessageResponse>(msg).data;
|
|
|
|
if (
|
2021-03-15 18:09:31 +00:00
|
|
|
data.private_message_view.recipient.id ==
|
2021-08-20 02:56:18 +00:00
|
|
|
UserService.Instance.myUserInfo.local_user_view.person.id
|
2020-12-24 01:58:27 +00:00
|
|
|
) {
|
|
|
|
this.state.messages.unshift(data.private_message_view);
|
2021-02-02 20:24:25 +00:00
|
|
|
this.state.combined.unshift(
|
|
|
|
this.messageToReplyType(data.private_message_view)
|
|
|
|
);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.SaveComment) {
|
|
|
|
let data = wsJsonToRes<CommentResponse>(msg).data;
|
|
|
|
saveCommentRes(data.comment_view, this.state.replies);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
2020-12-24 01:58:27 +00:00
|
|
|
} else if (op == UserOperation.CreateCommentLike) {
|
|
|
|
let data = wsJsonToRes<CommentResponse>(msg).data;
|
|
|
|
createCommentLikeRes(data.comment_view, this.state.replies);
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
2021-08-20 02:56:18 +00:00
|
|
|
} else if (op == UserOperation.BlockPerson) {
|
|
|
|
let data = wsJsonToRes<BlockPersonResponse>(msg).data;
|
|
|
|
updatePersonBlock(data);
|
2021-09-28 10:38:59 +00:00
|
|
|
} else if (op == UserOperation.CreatePostReport) {
|
|
|
|
let data = wsJsonToRes<PostReportResponse>(msg).data;
|
|
|
|
if (data) {
|
|
|
|
toast(i18n.t("report_created"));
|
|
|
|
}
|
|
|
|
} else if (op == UserOperation.CreateCommentReport) {
|
|
|
|
let data = wsJsonToRes<CommentReportResponse>(msg).data;
|
|
|
|
if (data) {
|
|
|
|
toast(i18n.t("report_created"));
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:01:49 +00:00
|
|
|
isMention(view: any): view is PersonMentionView {
|
|
|
|
return (view as PersonMentionView).person_mention !== undefined;
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|