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,
|
|
|
|
CommentResponse,
|
|
|
|
} from '../interfaces';
|
2019-04-20 18:17:00 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { msgOp } from '../utils';
|
|
|
|
import { CommentNodes } from './comment-nodes';
|
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
|
|
|
|
|
|
|
enum UnreadType {
|
2019-10-19 00:20:27 +00:00
|
|
|
Unread,
|
|
|
|
All,
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface InboxState {
|
|
|
|
unreadType: UnreadType;
|
|
|
|
replies: Array<Comment>;
|
|
|
|
sort: SortType;
|
|
|
|
page: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Inbox extends Component<any, InboxState> {
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: InboxState = {
|
|
|
|
unreadType: UnreadType.Unread,
|
|
|
|
replies: [],
|
|
|
|
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;
|
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2019-10-19 00:20:27 +00:00
|
|
|
.pipe(
|
|
|
|
retryWhen(errors =>
|
|
|
|
errors.pipe(
|
|
|
|
delay(3000),
|
|
|
|
take(10)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.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-10-19 00:20:27 +00:00
|
|
|
<span>
|
|
|
|
<T i18nKey="inbox_for" interpolation={{ user: user.username }}>
|
|
|
|
#<Link to={`/u/${user.username}`}>#</Link>
|
|
|
|
</T>
|
|
|
|
</span>
|
2019-04-29 16:51:13 +00:00
|
|
|
</h5>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.replies.length > 0 &&
|
|
|
|
this.state.unreadType == UnreadType.Unread && (
|
|
|
|
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
|
|
|
<li className="list-inline-item">
|
|
|
|
<span class="pointer" onClick={this.markAllAsRead}>
|
|
|
|
<T i18nKey="mark_all_as_read">#</T>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
)}
|
2019-04-20 18:17:00 +00:00
|
|
|
{this.selects()}
|
|
|
|
{this.replies()}
|
|
|
|
{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
|
|
|
|
value={this.state.unreadType}
|
|
|
|
onChange={linkEvent(this, this.handleUnreadTypeChange)}
|
|
|
|
class="custom-select custom-select-sm w-auto"
|
|
|
|
>
|
|
|
|
<option disabled>
|
|
|
|
<T i18nKey="type">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={UnreadType.Unread}>
|
|
|
|
<T i18nKey="unread">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={UnreadType.All}>
|
|
|
|
<T i18nKey="all">#</T>
|
|
|
|
</option>
|
2019-04-20 18:17:00 +00:00
|
|
|
</select>
|
2019-10-19 00:20:27 +00:00
|
|
|
<select
|
|
|
|
value={this.state.sort}
|
|
|
|
onChange={linkEvent(this, this.handleSortChange)}
|
|
|
|
class="custom-select custom-select-sm w-auto ml-2"
|
|
|
|
>
|
|
|
|
<option disabled>
|
|
|
|
<T i18nKey="sort_type">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={SortType.New}>
|
|
|
|
<T i18nKey="new">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={SortType.TopDay}>
|
|
|
|
<T i18nKey="top_day">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={SortType.TopWeek}>
|
|
|
|
<T i18nKey="week">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={SortType.TopMonth}>
|
|
|
|
<T i18nKey="month">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={SortType.TopYear}>
|
|
|
|
<T i18nKey="year">#</T>
|
|
|
|
</option>
|
|
|
|
<option value={SortType.TopAll}>
|
|
|
|
<T i18nKey="all">#</T>
|
|
|
|
</option>
|
2019-04-20 18:17:00 +00:00
|
|
|
</select>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
replies() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.replies.map(reply => (
|
|
|
|
<CommentNodes nodes={[{ comment: reply }]} noIndent markable />
|
|
|
|
))}
|
2019-04-20 18:17:00 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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)}
|
|
|
|
>
|
|
|
|
<T i18nKey="prev">#</T>
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.nextPage)}
|
|
|
|
>
|
|
|
|
<T i18nKey="next">#</T>
|
|
|
|
</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();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleUnreadTypeChange(i: Inbox, event: any) {
|
|
|
|
i.state.unreadType = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
refetch() {
|
|
|
|
let form: GetRepliesForm = {
|
|
|
|
sort: SortType[this.state.sort],
|
2019-10-19 00:20:27 +00:00
|
|
|
unread_only: this.state.unreadType == UnreadType.Unread,
|
2019-04-20 18:17:00 +00:00
|
|
|
page: this.state.page,
|
|
|
|
limit: 9999,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.getReplies(form);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSortChange(i: Inbox, event: any) {
|
|
|
|
i.state.sort = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-04-29 16:51:13 +00:00
|
|
|
markAllAsRead() {
|
|
|
|
WebSocketService.Instance.markAllAsRead();
|
|
|
|
}
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
console.log(msg);
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
2019-08-10 00:14:43 +00:00
|
|
|
alert(i18n.t(msg.error));
|
2019-04-20 18:17:00 +00:00
|
|
|
return;
|
2019-10-19 00:20:27 +00:00
|
|
|
} else if (
|
|
|
|
op == UserOperation.GetReplies ||
|
|
|
|
op == UserOperation.MarkAllAsRead
|
|
|
|
) {
|
2019-04-20 18:17:00 +00:00
|
|
|
let res: GetRepliesResponse = msg;
|
|
|
|
this.state.replies = res.replies;
|
|
|
|
this.sendRepliesCount();
|
2019-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-04-20 18:17:00 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
} else if (op == UserOperation.EditComment) {
|
|
|
|
let res: CommentResponse = msg;
|
|
|
|
|
2019-04-22 18:32:50 +00:00
|
|
|
let found = this.state.replies.find(c => c.id == res.comment.id);
|
|
|
|
found.content = res.comment.content;
|
|
|
|
found.updated = res.comment.updated;
|
|
|
|
found.removed = res.comment.removed;
|
2019-04-29 19:14:54 +00:00
|
|
|
found.deleted = res.comment.deleted;
|
2019-04-22 18:32:50 +00:00
|
|
|
found.upvotes = res.comment.upvotes;
|
|
|
|
found.downvotes = res.comment.downvotes;
|
|
|
|
found.score = res.comment.score;
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
// If youre in the unread view, just remove it from the list
|
|
|
|
if (this.state.unreadType == UnreadType.Unread && res.comment.read) {
|
2019-10-19 00:20:27 +00:00
|
|
|
this.state.replies = this.state.replies.filter(
|
|
|
|
r => r.id !== res.comment.id
|
|
|
|
);
|
2019-04-20 18:17:00 +00:00
|
|
|
} else {
|
|
|
|
let found = this.state.replies.find(c => c.id == res.comment.id);
|
|
|
|
found.read = res.comment.read;
|
|
|
|
}
|
|
|
|
this.sendRepliesCount();
|
2019-04-22 18:32:50 +00:00
|
|
|
|
|
|
|
this.setState(this.state);
|
|
|
|
} else if (op == UserOperation.CreateComment) {
|
|
|
|
// let res: CommentResponse = msg;
|
2019-08-10 00:14:43 +00:00
|
|
|
alert(i18n.t('reply_sent'));
|
2019-04-22 18:32:50 +00:00
|
|
|
// this.state.replies.unshift(res.comment); // TODO do this right
|
|
|
|
// this.setState(this.state);
|
|
|
|
} else if (op == UserOperation.SaveComment) {
|
|
|
|
let res: CommentResponse = msg;
|
|
|
|
let found = this.state.replies.find(c => c.id == res.comment.id);
|
|
|
|
found.saved = res.comment.saved;
|
|
|
|
this.setState(this.state);
|
|
|
|
} else if (op == UserOperation.CreateCommentLike) {
|
|
|
|
let res: CommentResponse = msg;
|
2019-10-19 00:20:27 +00:00
|
|
|
let found: Comment = this.state.replies.find(
|
|
|
|
c => c.id === res.comment.id
|
|
|
|
);
|
2019-04-22 18:32:50 +00:00
|
|
|
found.score = res.comment.score;
|
|
|
|
found.upvotes = res.comment.upvotes;
|
|
|
|
found.downvotes = res.comment.downvotes;
|
2019-10-19 00:20:27 +00:00
|
|
|
if (res.comment.my_vote !== null) found.my_vote = res.comment.my_vote;
|
2019-04-20 18:17:00 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendRepliesCount() {
|
2019-10-19 00:20:27 +00:00
|
|
|
UserService.Instance.sub.next({
|
|
|
|
user: UserService.Instance.user,
|
|
|
|
unreadCount: this.state.replies.filter(r => !r.read).length,
|
|
|
|
});
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
}
|