2019-03-21 01:22:31 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
2019-04-21 17:49:57 +00:00
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { UserOperation, GetRepliesForm, GetRepliesResponse, SortType } from '../interfaces';
|
|
|
|
import { msgOp } from '../utils';
|
2019-04-09 03:28:07 +00:00
|
|
|
import { version } from '../version';
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2019-04-09 00:04:03 +00:00
|
|
|
interface NavbarState {
|
|
|
|
isLoggedIn: boolean;
|
|
|
|
expanded: boolean;
|
|
|
|
expandUserDropdown: boolean;
|
2019-04-20 18:17:00 +00:00
|
|
|
unreadCount: number;
|
2019-04-09 00:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Navbar extends Component<any, NavbarState> {
|
2019-04-21 17:49:57 +00:00
|
|
|
private wsSub: Subscription;
|
|
|
|
private userSub: Subscription;
|
2019-04-09 00:04:03 +00:00
|
|
|
emptyState: NavbarState = {
|
2019-04-20 18:17:00 +00:00
|
|
|
isLoggedIn: (UserService.Instance.user !== undefined),
|
|
|
|
unreadCount: 0,
|
2019-04-09 00:04:03 +00:00
|
|
|
expanded: false,
|
|
|
|
expandUserDropdown: false
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-03-21 01:22:31 +00:00
|
|
|
super(props, context);
|
2019-04-09 00:04:03 +00:00
|
|
|
this.state = this.emptyState;
|
|
|
|
this.handleOverviewClick = this.handleOverviewClick.bind(this);
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-04-21 17:49:57 +00:00
|
|
|
this.keepFetchingReplies();
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
// Subscribe to user changes
|
2019-04-21 17:49:57 +00:00
|
|
|
this.userSub = UserService.Instance.sub.subscribe(user => {
|
2019-04-20 18:17:00 +00:00
|
|
|
this.state.isLoggedIn = user.user !== undefined;
|
|
|
|
this.state.unreadCount = user.unreadCount;
|
|
|
|
this.setState(this.state);
|
2019-03-23 01:42:57 +00:00
|
|
|
});
|
2019-04-21 17:49:57 +00:00
|
|
|
|
|
|
|
this.wsSub = WebSocketService.Instance.subject
|
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
.subscribe(
|
|
|
|
(msg) => this.parseMessage(msg),
|
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
|
|
|
);
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2019-03-23 01:42:57 +00:00
|
|
|
<div>{this.navbar()}</div>
|
2019-03-21 01:22:31 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-21 17:49:57 +00:00
|
|
|
componentWillUnmount() {
|
|
|
|
this.wsSub.unsubscribe();
|
|
|
|
this.userSub.unsubscribe();
|
|
|
|
}
|
|
|
|
|
2019-03-21 01:22:31 +00:00
|
|
|
// TODO class active corresponding to current page
|
2019-03-23 01:42:57 +00:00
|
|
|
// TODO toggle css collapse
|
2019-03-21 01:22:31 +00:00
|
|
|
navbar() {
|
|
|
|
return (
|
2019-04-09 22:33:49 +00:00
|
|
|
<nav class="container navbar navbar-expand-md navbar-light navbar-bg p-0 px-3">
|
2019-04-09 03:28:07 +00:00
|
|
|
<a title={version} class="navbar-brand" href="#">
|
2019-04-06 22:49:51 +00:00
|
|
|
<svg class="icon mr-2"><use xlinkHref="#icon-mouse"></use></svg>
|
|
|
|
Lemmy
|
|
|
|
</a>
|
|
|
|
<button class="navbar-toggler" type="button" onClick={linkEvent(this, this.expandNavbar)}>
|
2019-03-23 01:42:57 +00:00
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
2019-04-06 22:49:51 +00:00
|
|
|
<div className={`${!this.state.expanded && 'collapse'} navbar-collapse`}>
|
2019-03-23 01:42:57 +00:00
|
|
|
<ul class="navbar-nav mr-auto">
|
2019-04-03 06:49:32 +00:00
|
|
|
<li class="nav-item">
|
2019-04-04 20:00:19 +00:00
|
|
|
<Link class="nav-link" to="/communities">Forums</Link>
|
2019-03-23 01:42:57 +00:00
|
|
|
</li>
|
2019-04-15 23:12:06 +00:00
|
|
|
<li class="nav-item">
|
|
|
|
<Link class="nav-link" to="/modlog">Modlog</Link>
|
|
|
|
</li>
|
2019-03-23 01:42:57 +00:00
|
|
|
<li class="nav-item">
|
|
|
|
<Link class="nav-link" to="/create_post">Create Post</Link>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<Link class="nav-link" to="/create_community">Create Forum</Link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<ul class="navbar-nav ml-auto mr-2">
|
2019-04-09 00:04:03 +00:00
|
|
|
{this.state.isLoggedIn ?
|
2019-04-20 04:06:25 +00:00
|
|
|
<>
|
2019-04-20 18:17:00 +00:00
|
|
|
{
|
2019-04-20 22:49:23 +00:00
|
|
|
<li className="nav-item">
|
|
|
|
<Link class="inbox nav-link" to="/inbox">
|
|
|
|
<svg class="icon"><use xlinkHref="#icon-mail"></use></svg>
|
|
|
|
{this.state.unreadCount> 0 && <span class="ml-1 badge badge-light">{this.state.unreadCount}</span>}
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
<li className={`nav-item dropdown ${this.state.expandUserDropdown && 'show'}`}>
|
|
|
|
<a class="pointer nav-link dropdown-toggle" onClick={linkEvent(this, this.expandUserDropdown)} role="button">
|
|
|
|
{UserService.Instance.user.username}
|
|
|
|
</a>
|
|
|
|
<div className={`dropdown-menu dropdown-menu-right ${this.state.expandUserDropdown && 'show'}`}>
|
|
|
|
<a role="button" class="dropdown-item pointer" onClick={linkEvent(this, this.handleOverviewClick)}>Overview</a>
|
|
|
|
<a role="button" class="dropdown-item pointer" onClick={ linkEvent(this, this.handleLogoutClick) }>Logout</a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</>
|
|
|
|
:
|
|
|
|
<Link class="nav-link" to="/login">Login / Sign up</Link>
|
2019-04-09 00:04:03 +00:00
|
|
|
}
|
2019-03-23 01:42:57 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2019-03-21 01:22:31 +00:00
|
|
|
</nav>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-09 00:04:03 +00:00
|
|
|
expandUserDropdown(i: Navbar) {
|
|
|
|
i.state.expandUserDropdown = !i.state.expandUserDropdown;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleLogoutClick(i: Navbar) {
|
|
|
|
i.state.expandUserDropdown = false;
|
2019-03-23 01:42:57 +00:00
|
|
|
UserService.Instance.logout();
|
2019-04-20 18:17:00 +00:00
|
|
|
i.context.router.history.push('/');
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
2019-04-06 22:49:51 +00:00
|
|
|
|
2019-04-09 00:04:03 +00:00
|
|
|
handleOverviewClick(i: Navbar) {
|
|
|
|
i.state.expandUserDropdown = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
let userPage = `/user/${UserService.Instance.user.id}`;
|
|
|
|
i.context.router.history.push(userPage);
|
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
expandNavbar(i: Navbar) {
|
2019-04-06 22:49:51 +00:00
|
|
|
i.state.expanded = !i.state.expanded;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
2019-04-21 17:49:57 +00:00
|
|
|
|
|
|
|
parseMessage(msg: any) {
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.GetReplies) {
|
|
|
|
let res: GetRepliesResponse = msg;
|
|
|
|
this.sendRepliesCount(res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
keepFetchingReplies() {
|
|
|
|
this.fetchReplies();
|
|
|
|
setInterval(() => this.fetchReplies(), 30000);
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchReplies() {
|
|
|
|
if (this.state.isLoggedIn) {
|
|
|
|
let repliesForm: GetRepliesForm = {
|
|
|
|
sort: SortType[SortType.New],
|
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
|
|
|
limit: 9999,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.getReplies(repliesForm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendRepliesCount(res: GetRepliesResponse) {
|
|
|
|
UserService.Instance.sub.next({user: UserService.Instance.user, unreadCount: res.replies.filter(r => !r.read).length});
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
2019-04-09 00:04:03 +00:00
|
|
|
|