2019-04-20 18:17:00 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
2019-10-19 00:20:27 +00:00
|
|
|
import { Subscription } from 'rxjs';
|
2019-04-20 18:17:00 +00:00
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
|
|
|
UserOperation,
|
|
|
|
Comment,
|
|
|
|
SortType,
|
|
|
|
GetRepliesForm,
|
|
|
|
GetRepliesResponse,
|
2019-10-20 00:46:29 +00:00
|
|
|
GetUserMentionsForm,
|
|
|
|
GetUserMentionsResponse,
|
|
|
|
UserMentionResponse,
|
2019-10-19 00:20:27 +00:00
|
|
|
CommentResponse,
|
2020-01-19 05:38:45 +00:00
|
|
|
WebSocketJsonResponse,
|
2020-01-22 21:35:29 +00:00
|
|
|
PrivateMessage as PrivateMessageI,
|
|
|
|
GetPrivateMessagesForm,
|
|
|
|
PrivateMessagesResponse,
|
|
|
|
PrivateMessageResponse,
|
2019-10-19 00:20:27 +00:00
|
|
|
} from '../interfaces';
|
2019-04-20 18:17:00 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
2020-02-09 04:20:11 +00:00
|
|
|
import {
|
|
|
|
wsJsonToRes,
|
|
|
|
fetchLimit,
|
|
|
|
isCommentType,
|
|
|
|
toast,
|
|
|
|
editCommentRes,
|
|
|
|
saveCommentRes,
|
|
|
|
createCommentLikeRes,
|
|
|
|
commentsToFlatNodes,
|
|
|
|
} from '../utils';
|
2019-04-20 18:17:00 +00:00
|
|
|
import { CommentNodes } from './comment-nodes';
|
2020-01-22 21:35:29 +00:00
|
|
|
import { PrivateMessage } from './private-message';
|
2019-10-21 00:49:13 +00:00
|
|
|
import { SortSelect } from './sort-select';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
2019-04-20 18:17:00 +00:00
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
enum UnreadOrAll {
|
2019-10-19 00:20:27 +00:00
|
|
|
Unread,
|
|
|
|
All,
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
enum UnreadType {
|
2020-01-22 21:35:29 +00:00
|
|
|
All,
|
2019-10-20 00:46:29 +00:00
|
|
|
Replies,
|
|
|
|
Mentions,
|
2020-01-22 21:35:29 +00:00
|
|
|
Messages,
|
2019-10-20 00:46:29 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 02:04:30 +00:00
|
|
|
type ReplyType = Comment | PrivateMessageI;
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
interface InboxState {
|
2019-10-20 00:46:29 +00:00
|
|
|
unreadOrAll: UnreadOrAll;
|
2019-04-20 18:17:00 +00:00
|
|
|
unreadType: UnreadType;
|
|
|
|
replies: Array<Comment>;
|
2019-10-20 00:46:29 +00:00
|
|
|
mentions: Array<Comment>;
|
2020-01-22 21:35:29 +00:00
|
|
|
messages: Array<PrivateMessageI>;
|
2019-04-20 18:17:00 +00:00
|
|
|
sort: SortType;
|
|
|
|
page: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Inbox extends Component<any, InboxState> {
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: InboxState = {
|
2019-10-20 00:46:29 +00:00
|
|
|
unreadOrAll: UnreadOrAll.Unread,
|
2020-01-22 21:35:29 +00:00
|
|
|
unreadType: UnreadType.All,
|
2019-04-20 18:17:00 +00:00
|
|
|
replies: [],
|
2019-10-20 00:46:29 +00:00
|
|
|
mentions: [],
|
2020-01-22 21:35:29 +00:00
|
|
|
messages: [],
|
2019-04-20 18:17:00 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
page: 1,
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-04-20 18:17:00 +00:00
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
2019-10-21 00:49:13 +00:00
|
|
|
this.handleSortChange = this.handleSortChange.bind(this);
|
2019-04-20 18:17:00 +00:00
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2020-01-15 21:20:54 +00:00
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
2019-10-19 00:20:27 +00:00
|
|
|
.subscribe(
|
|
|
|
msg => this.parseMessage(msg),
|
|
|
|
err => console.error(err),
|
2019-04-20 18:17:00 +00:00
|
|
|
() => console.log('complete')
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-20 18:17:00 +00:00
|
|
|
|
|
|
|
this.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
2019-04-22 16:24:13 +00:00
|
|
|
componentDidMount() {
|
2019-10-19 00:20:27 +00:00
|
|
|
document.title = `/u/${UserService.Instance.user.username} ${i18n.t(
|
|
|
|
'inbox'
|
|
|
|
)} - ${WebSocketService.Instance.site.name}`;
|
2019-04-22 16:24:13 +00:00
|
|
|
}
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
render() {
|
|
|
|
let user = UserService.Instance.user;
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2019-04-29 16:51:13 +00:00
|
|
|
<h5 class="mb-0">
|
2019-12-08 00:39:43 +00:00
|
|
|
<T
|
|
|
|
class="d-inline"
|
|
|
|
i18nKey="inbox_for"
|
|
|
|
interpolation={{ user: user.username }}
|
|
|
|
>
|
|
|
|
#<Link to={`/u/${user.username}`}>#</Link>
|
|
|
|
</T>
|
|
|
|
<small>
|
|
|
|
<a
|
|
|
|
href={`/feeds/inbox/${UserService.Instance.auth}.xml`}
|
|
|
|
target="_blank"
|
2020-03-03 07:29:45 +00:00
|
|
|
title="RSS"
|
2019-12-08 00:39:43 +00:00
|
|
|
>
|
|
|
|
<svg class="icon mx-2 text-muted small">
|
|
|
|
<use xlinkHref="#icon-rss">#</use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</small>
|
2019-04-29 16:51:13 +00:00
|
|
|
</h5>
|
2020-01-22 21:35:29 +00:00
|
|
|
{this.state.replies.length +
|
|
|
|
this.state.mentions.length +
|
|
|
|
this.state.messages.length >
|
|
|
|
0 &&
|
2019-10-20 00:46:29 +00:00
|
|
|
this.state.unreadOrAll == UnreadOrAll.Unread && (
|
2019-10-19 00:20:27 +00:00
|
|
|
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
|
|
|
<li className="list-inline-item">
|
|
|
|
<span class="pointer" onClick={this.markAllAsRead}>
|
2020-02-02 18:50:44 +00:00
|
|
|
{i18n.t('mark_all_as_read')}
|
2019-10-19 00:20:27 +00:00
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
)}
|
2019-04-20 18:17:00 +00:00
|
|
|
{this.selects()}
|
2020-01-22 21:35:29 +00:00
|
|
|
{this.state.unreadType == UnreadType.All && this.all()}
|
2019-10-20 00:46:29 +00:00
|
|
|
{this.state.unreadType == UnreadType.Replies && this.replies()}
|
|
|
|
{this.state.unreadType == UnreadType.Mentions && this.mentions()}
|
2020-01-22 21:35:29 +00:00
|
|
|
{this.state.unreadType == UnreadType.Messages && this.messages()}
|
2019-04-20 18:17:00 +00:00
|
|
|
{this.paginator()}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
selects() {
|
|
|
|
return (
|
|
|
|
<div className="mb-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
<select
|
2019-10-20 00:46:29 +00:00
|
|
|
value={this.state.unreadOrAll}
|
|
|
|
onChange={linkEvent(this, this.handleUnreadOrAllChange)}
|
|
|
|
class="custom-select custom-select-sm w-auto mr-2"
|
2019-10-19 00:20:27 +00:00
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
<option disabled>{i18n.t('type')}</option>
|
|
|
|
<option value={UnreadOrAll.Unread}>{i18n.t('unread')}</option>
|
|
|
|
<option value={UnreadOrAll.All}>{i18n.t('all')}</option>
|
2019-04-20 18:17:00 +00:00
|
|
|
</select>
|
2019-10-20 00:46:29 +00:00
|
|
|
<select
|
|
|
|
value={this.state.unreadType}
|
|
|
|
onChange={linkEvent(this, this.handleUnreadTypeChange)}
|
|
|
|
class="custom-select custom-select-sm w-auto mr-2"
|
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
<option disabled>{i18n.t('type')}</option>
|
|
|
|
<option value={UnreadType.All}>{i18n.t('all')}</option>
|
|
|
|
<option value={UnreadType.Replies}>{i18n.t('replies')}</option>
|
|
|
|
<option value={UnreadType.Mentions}>{i18n.t('mentions')}</option>
|
|
|
|
<option value={UnreadType.Messages}>{i18n.t('messages')}</option>
|
2019-10-20 00:46:29 +00:00
|
|
|
</select>
|
2019-10-21 00:49:13 +00:00
|
|
|
<SortSelect
|
|
|
|
sort={this.state.sort}
|
|
|
|
onChange={this.handleSortChange}
|
|
|
|
hideHot
|
|
|
|
/>
|
2019-04-20 18:17:00 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 21:35:29 +00:00
|
|
|
all() {
|
2020-01-28 02:04:30 +00:00
|
|
|
let combined: Array<ReplyType> = [];
|
2019-10-20 00:46:29 +00:00
|
|
|
|
2020-01-22 21:35:29 +00:00
|
|
|
combined.push(...this.state.replies);
|
|
|
|
combined.push(...this.state.mentions);
|
|
|
|
combined.push(...this.state.messages);
|
2019-10-20 00:46:29 +00:00
|
|
|
|
|
|
|
// Sort it
|
2020-01-22 21:35:29 +00:00
|
|
|
combined.sort((a, b) => b.published.localeCompare(a.published));
|
2019-10-20 00:46:29 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2020-01-22 21:35:29 +00:00
|
|
|
{combined.map(i =>
|
|
|
|
isCommentType(i) ? (
|
2020-01-23 03:29:11 +00:00
|
|
|
<CommentNodes nodes={[{ comment: i }]} noIndent markable />
|
2020-01-22 21:35:29 +00:00
|
|
|
) : (
|
|
|
|
<PrivateMessage privateMessage={i} />
|
|
|
|
)
|
|
|
|
)}
|
2019-10-20 00:46:29 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
replies() {
|
|
|
|
return (
|
|
|
|
<div>
|
2020-02-09 04:20:11 +00:00
|
|
|
<CommentNodes
|
|
|
|
nodes={commentsToFlatNodes(this.state.replies)}
|
|
|
|
noIndent
|
|
|
|
markable
|
|
|
|
/>
|
2019-04-20 18:17:00 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
mentions() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.state.mentions.map(mention => (
|
|
|
|
<CommentNodes nodes={[{ comment: mention }]} noIndent markable />
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-01-22 21:35:29 +00:00
|
|
|
messages() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.state.messages.map(message => (
|
|
|
|
<PrivateMessage privateMessage={message} />
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
paginator() {
|
|
|
|
return (
|
|
|
|
<div class="mt-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.page > 1 && (
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary mr-1"
|
|
|
|
onClick={linkEvent(this, this.prevPage)}
|
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
{i18n.t('prev')}
|
2019-10-19 00:20:27 +00:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.nextPage)}
|
|
|
|
>
|
2020-02-02 18:50:44 +00:00
|
|
|
{i18n.t('next')}
|
2019-10-19 00:20:27 +00:00
|
|
|
</button>
|
2019-04-20 18:17:00 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
nextPage(i: Inbox) {
|
2019-04-20 18:17:00 +00:00
|
|
|
i.state.page++;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
prevPage(i: Inbox) {
|
2019-04-20 18:17:00 +00:00
|
|
|
i.state.page--;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
handleUnreadOrAllChange(i: Inbox, event: any) {
|
|
|
|
i.state.unreadOrAll = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
handleUnreadTypeChange(i: Inbox, event: any) {
|
|
|
|
i.state.unreadType = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
refetch() {
|
2019-10-20 00:46:29 +00:00
|
|
|
let repliesForm: GetRepliesForm = {
|
2019-04-20 18:17:00 +00:00
|
|
|
sort: SortType[this.state.sort],
|
2019-10-20 00:46:29 +00:00
|
|
|
unread_only: this.state.unreadOrAll == UnreadOrAll.Unread,
|
2019-04-20 18:17:00 +00:00
|
|
|
page: this.state.page,
|
2020-01-15 21:20:54 +00:00
|
|
|
limit: fetchLimit,
|
2019-04-20 18:17:00 +00:00
|
|
|
};
|
2019-10-20 00:46:29 +00:00
|
|
|
WebSocketService.Instance.getReplies(repliesForm);
|
|
|
|
|
|
|
|
let userMentionsForm: GetUserMentionsForm = {
|
|
|
|
sort: SortType[this.state.sort],
|
|
|
|
unread_only: this.state.unreadOrAll == UnreadOrAll.Unread,
|
|
|
|
page: this.state.page,
|
2020-01-15 21:20:54 +00:00
|
|
|
limit: fetchLimit,
|
2019-10-20 00:46:29 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.getUserMentions(userMentionsForm);
|
2020-01-22 21:35:29 +00:00
|
|
|
|
|
|
|
let privateMessagesForm: GetPrivateMessagesForm = {
|
|
|
|
unread_only: this.state.unreadOrAll == UnreadOrAll.Unread,
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.getPrivateMessages(privateMessagesForm);
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 00:49:13 +00:00
|
|
|
handleSortChange(val: SortType) {
|
|
|
|
this.state.sort = val;
|
|
|
|
this.state.page = 1;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.refetch();
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 16:51:13 +00:00
|
|
|
markAllAsRead() {
|
|
|
|
WebSocketService.Instance.markAllAsRead();
|
|
|
|
}
|
|
|
|
|
2020-01-19 05:38:45 +00:00
|
|
|
parseMessage(msg: WebSocketJsonResponse) {
|
2019-04-20 18:17:00 +00:00
|
|
|
console.log(msg);
|
2020-01-19 04:54:10 +00:00
|
|
|
let res = wsJsonToRes(msg);
|
2020-01-25 14:58:53 +00:00
|
|
|
if (msg.error) {
|
2020-01-23 03:29:11 +00:00
|
|
|
toast(i18n.t(msg.error), 'danger');
|
2019-04-20 18:17:00 +00:00
|
|
|
return;
|
2020-02-04 16:19:05 +00:00
|
|
|
} else if (msg.reconnect) {
|
|
|
|
this.refetch();
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.GetReplies) {
|
|
|
|
let data = res.data as GetRepliesResponse;
|
|
|
|
this.state.replies = data.replies;
|
2019-10-20 00:46:29 +00:00
|
|
|
this.sendUnreadCount();
|
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.GetUserMentions) {
|
|
|
|
let data = res.data as GetUserMentionsResponse;
|
|
|
|
this.state.mentions = data.mentions;
|
2019-10-20 00:46:29 +00:00
|
|
|
this.sendUnreadCount();
|
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
2020-01-24 00:17:42 +00:00
|
|
|
} else if (res.op == UserOperation.GetPrivateMessages) {
|
|
|
|
let data = res.data as PrivateMessagesResponse;
|
|
|
|
this.state.messages = data.messages;
|
2020-01-22 21:35:29 +00:00
|
|
|
this.sendUnreadCount();
|
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
2020-01-24 00:17:42 +00:00
|
|
|
} else if (res.op == UserOperation.EditPrivateMessage) {
|
|
|
|
let data = res.data as PrivateMessageResponse;
|
2020-01-22 21:35:29 +00:00
|
|
|
let found: PrivateMessageI = this.state.messages.find(
|
2020-01-24 00:17:42 +00:00
|
|
|
m => m.id === data.message.id
|
2020-01-22 21:35:29 +00:00
|
|
|
);
|
2020-01-24 00:17:42 +00:00
|
|
|
found.content = data.message.content;
|
|
|
|
found.updated = data.message.updated;
|
|
|
|
found.deleted = data.message.deleted;
|
2020-01-22 21:35:29 +00:00
|
|
|
// If youre in the unread view, just remove it from the list
|
2020-01-24 00:17:42 +00:00
|
|
|
if (this.state.unreadOrAll == UnreadOrAll.Unread && data.message.read) {
|
2020-01-22 21:35:29 +00:00
|
|
|
this.state.messages = this.state.messages.filter(
|
2020-01-24 00:17:42 +00:00
|
|
|
r => r.id !== data.message.id
|
2020-01-22 21:35:29 +00:00
|
|
|
);
|
|
|
|
} else {
|
2020-01-24 00:17:42 +00:00
|
|
|
let found = this.state.messages.find(c => c.id == data.message.id);
|
|
|
|
found.read = data.message.read;
|
2020-01-22 21:35:29 +00:00
|
|
|
}
|
|
|
|
this.sendUnreadCount();
|
|
|
|
window.scrollTo(0, 0);
|
|
|
|
this.setState(this.state);
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.MarkAllAsRead) {
|
2019-10-20 00:46:29 +00:00
|
|
|
this.state.replies = [];
|
|
|
|
this.state.mentions = [];
|
2020-01-22 21:35:29 +00:00
|
|
|
this.state.messages = [];
|
|
|
|
this.sendUnreadCount();
|
2019-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-04-20 18:17:00 +00:00
|
|
|
this.setState(this.state);
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.EditComment) {
|
|
|
|
let data = res.data as CommentResponse;
|
2020-02-09 04:20:11 +00:00
|
|
|
editCommentRes(data, this.state.replies);
|
2019-04-22 18:32:50 +00:00
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
// If youre in the unread view, just remove it from the list
|
2020-01-19 04:54:10 +00:00
|
|
|
if (this.state.unreadOrAll == UnreadOrAll.Unread && data.comment.read) {
|
2019-10-19 00:20:27 +00:00
|
|
|
this.state.replies = this.state.replies.filter(
|
2020-01-19 04:54:10 +00:00
|
|
|
r => r.id !== data.comment.id
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-20 18:17:00 +00:00
|
|
|
} else {
|
2020-01-19 04:54:10 +00:00
|
|
|
let found = this.state.replies.find(c => c.id == data.comment.id);
|
|
|
|
found.read = data.comment.read;
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
2019-10-20 00:46:29 +00:00
|
|
|
this.sendUnreadCount();
|
|
|
|
this.setState(this.state);
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.EditUserMention) {
|
|
|
|
let data = res.data as UserMentionResponse;
|
|
|
|
|
|
|
|
let found = this.state.mentions.find(c => c.id == data.mention.id);
|
|
|
|
found.content = data.mention.content;
|
|
|
|
found.updated = data.mention.updated;
|
|
|
|
found.removed = data.mention.removed;
|
|
|
|
found.deleted = data.mention.deleted;
|
|
|
|
found.upvotes = data.mention.upvotes;
|
|
|
|
found.downvotes = data.mention.downvotes;
|
|
|
|
found.score = data.mention.score;
|
2019-10-20 00:46:29 +00:00
|
|
|
|
|
|
|
// If youre in the unread view, just remove it from the list
|
2020-01-19 04:54:10 +00:00
|
|
|
if (this.state.unreadOrAll == UnreadOrAll.Unread && data.mention.read) {
|
2019-10-20 00:46:29 +00:00
|
|
|
this.state.mentions = this.state.mentions.filter(
|
2020-01-19 04:54:10 +00:00
|
|
|
r => r.id !== data.mention.id
|
2019-10-20 00:46:29 +00:00
|
|
|
);
|
|
|
|
} else {
|
2020-01-19 04:54:10 +00:00
|
|
|
let found = this.state.mentions.find(c => c.id == data.mention.id);
|
|
|
|
found.read = data.mention.read;
|
2019-10-20 00:46:29 +00:00
|
|
|
}
|
|
|
|
this.sendUnreadCount();
|
2019-04-22 18:32:50 +00:00
|
|
|
this.setState(this.state);
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.CreateComment) {
|
2020-02-01 03:34:08 +00:00
|
|
|
let data = res.data as CommentResponse;
|
|
|
|
|
|
|
|
if (data.recipient_ids.includes(UserService.Instance.user.id)) {
|
|
|
|
this.state.replies.unshift(data.comment);
|
|
|
|
this.setState(this.state);
|
|
|
|
} else if (data.comment.creator_id == UserService.Instance.user.id) {
|
|
|
|
toast(i18n.t('reply_sent'));
|
|
|
|
}
|
|
|
|
this.setState(this.state);
|
|
|
|
} else if (res.op == UserOperation.CreatePrivateMessage) {
|
|
|
|
let data = res.data as PrivateMessageResponse;
|
|
|
|
if (data.message.recipient_id == UserService.Instance.user.id) {
|
|
|
|
this.state.messages.unshift(data.message);
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.SaveComment) {
|
|
|
|
let data = res.data as CommentResponse;
|
2020-02-09 04:20:11 +00:00
|
|
|
saveCommentRes(data, this.state.replies);
|
2019-04-22 18:32:50 +00:00
|
|
|
this.setState(this.state);
|
2020-01-19 04:54:10 +00:00
|
|
|
} else if (res.op == UserOperation.CreateCommentLike) {
|
|
|
|
let data = res.data as CommentResponse;
|
2020-02-09 04:20:11 +00:00
|
|
|
createCommentLikeRes(data, this.state.replies);
|
2019-04-20 18:17:00 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
sendUnreadCount() {
|
|
|
|
let count =
|
|
|
|
this.state.replies.filter(r => !r.read).length +
|
2020-01-22 21:35:29 +00:00
|
|
|
this.state.mentions.filter(r => !r.read).length +
|
|
|
|
this.state.messages.filter(
|
|
|
|
r => !r.read && r.creator_id !== UserService.Instance.user.id
|
|
|
|
).length;
|
2020-02-11 15:14:09 +00:00
|
|
|
UserService.Instance.user.unreadCount = count;
|
2019-10-19 00:20:27 +00:00
|
|
|
UserService.Instance.sub.next({
|
|
|
|
user: UserService.Instance.user,
|
|
|
|
});
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
}
|