summaryrefslogtreecommitdiffstats
path: root/ui/src/components/inbox.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-20 11:17:00 -0700
committerDessalines <tyhou13@gmx.com>2019-04-20 11:17:00 -0700
commit682413613e75618489d262bd033c3101da96abd7 (patch)
treef3bc26c1f2c1f75bdfcf7b6e5b22f24e93c7a757 /ui/src/components/inbox.tsx
parente14e6e53cd969039087df17bc4407d1b7444e05d (diff)
Mostly working, before merge
Diffstat (limited to 'ui/src/components/inbox.tsx')
-rw-r--r--ui/src/components/inbox.tsx177
1 files changed, 177 insertions, 0 deletions
diff --git a/ui/src/components/inbox.tsx b/ui/src/components/inbox.tsx
new file mode 100644
index 00000000..e6ce6d13
--- /dev/null
+++ b/ui/src/components/inbox.tsx
@@ -0,0 +1,177 @@
+import { Component, linkEvent } from 'inferno';
+import { Link } from 'inferno-router';
+import { Subscription } from "rxjs";
+import { retryWhen, delay, take } from 'rxjs/operators';
+import { UserOperation, Comment, SortType, GetRepliesForm, GetRepliesResponse, CommentResponse } from '../interfaces';
+import { WebSocketService, UserService } from '../services';
+import { msgOp } from '../utils';
+import { CommentNodes } from './comment-nodes';
+
+enum UnreadType {
+ Unread, All
+}
+
+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,
+ }
+
+ constructor(props: any, context: any) {
+ super(props, context);
+
+ this.state = this.emptyState;
+
+ 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')
+ );
+
+ this.refetch();
+ }
+
+ componentWillUnmount() {
+ this.subscription.unsubscribe();
+ }
+
+ render() {
+ let user = UserService.Instance.user;
+ return (
+ <div class="container">
+ <div class="row">
+ <div class="col-12">
+ <h5>Inbox for <Link to={`/user/${user.id}`}>{user.username}</Link></h5>
+ {this.selects()}
+ {this.replies()}
+ {this.paginator()}
+ </div>
+ </div>
+ </div>
+ )
+ }
+
+ selects() {
+ return (
+ <div className="mb-2">
+ <select value={this.state.unreadType} onChange={linkEvent(this, this.handleUnreadTypeChange)} class="custom-select w-auto">
+ <option disabled>Type</option>
+ <option value={UnreadType.Unread}>Unread</option>
+ <option value={UnreadType.All}>All</option>
+ </select>
+ <select value={this.state.sort} onChange={linkEvent(this, this.handleSortChange)} class="custom-select w-auto ml-2">
+ <option disabled>Sort Type</option>
+ <option value={SortType.New}>New</option>
+ <option value={SortType.TopDay}>Top Day</option>
+ <option value={SortType.TopWeek}>Week</option>
+ <option value={SortType.TopMonth}>Month</option>
+ <option value={SortType.TopYear}>Year</option>
+ <option value={SortType.TopAll}>All</option>
+ </select>
+ </div>
+ )
+
+ }
+
+ replies() {
+ return (
+ <div>
+ {this.state.replies.map(reply =>
+ <CommentNodes nodes={[{comment: reply}]} noIndent viewOnly markable />
+ )}
+ </div>
+ );
+ }
+
+ paginator() {
+ return (
+ <div class="mt-2">
+ {this.state.page > 1 &&
+ <button class="btn btn-sm btn-secondary mr-1" onClick={linkEvent(this, this.prevPage)}>Prev</button>
+ }
+ <button class="btn btn-sm btn-secondary" onClick={linkEvent(this, this.nextPage)}>Next</button>
+ </div>
+ );
+ }
+
+ nextPage(i: Inbox) {
+ i.state.page++;
+ i.setState(i.state);
+ i.refetch();
+ }
+
+ prevPage(i: Inbox) {
+ 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],
+ unread_only: (this.state.unreadType == UnreadType.Unread),
+ 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();
+ }
+
+ parseMessage(msg: any) {
+ console.log(msg);
+ let op: UserOperation = msgOp(msg);
+ if (msg.error) {
+ alert(msg.error);
+ return;
+ } else if (op == UserOperation.GetReplies) {
+ let res: GetRepliesResponse = msg;
+ this.state.replies = res.replies;
+ this.sendRepliesCount();
+ this.setState(this.state);
+ } else if (op == UserOperation.EditComment) {
+ let res: CommentResponse = msg;
+
+ // If youre in the unread view, just remove it from the list
+ if (this.state.unreadType == UnreadType.Unread && res.comment.read) {
+ this.state.replies = this.state.replies.filter(r => r.id !== res.comment.id);
+ } else {
+ let found = this.state.replies.find(c => c.id == res.comment.id);
+ found.read = res.comment.read;
+ }
+
+ this.sendRepliesCount();
+ this.setState(this.state);
+ }
+ }
+
+ sendRepliesCount() {
+ UserService.Instance.sub.next({user: UserService.Instance.user, unreadCount: this.state.replies.filter(r => !r.read).length});
+ }
+}
+