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';
|
2019-05-18 23:41:22 +00:00
|
|
|
import { UserOperation, GetRepliesForm, GetRepliesResponse, SortType, GetSiteResponse, Comment} from '../interfaces';
|
2019-04-21 17:49:57 +00:00
|
|
|
import { msgOp } from '../utils';
|
2019-04-09 03:28:07 +00:00
|
|
|
import { version } from '../version';
|
2019-08-09 01:58:04 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
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-05-18 23:41:22 +00:00
|
|
|
replies: Array<Comment>,
|
2019-05-19 16:15:08 +00:00
|
|
|
fetchCount: number,
|
2019-04-20 18:17:00 +00:00
|
|
|
unreadCount: number;
|
2019-04-30 15:19:00 +00:00
|
|
|
siteName: string;
|
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-05-19 16:15:08 +00:00
|
|
|
fetchCount: 0,
|
2019-05-18 23:41:22 +00:00
|
|
|
replies: [],
|
2019-04-09 00:04:03 +00:00
|
|
|
expanded: false,
|
2019-04-30 15:19:00 +00:00
|
|
|
expandUserDropdown: false,
|
|
|
|
siteName: undefined
|
2019-04-09 00:04:03 +00:00
|
|
|
}
|
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;
|
2019-05-18 23:41:22 +00:00
|
|
|
this.requestNotificationPermission();
|
2019-04-20 18:17:00 +00:00
|
|
|
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-04-30 15:19:00 +00:00
|
|
|
|
2019-05-18 23:41:22 +00:00
|
|
|
if (this.state.isLoggedIn) {
|
|
|
|
this.requestNotificationPermission();
|
|
|
|
}
|
|
|
|
|
2019-04-30 15:19:00 +00:00
|
|
|
WebSocketService.Instance.getSite();
|
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
|
|
|
|
navbar() {
|
|
|
|
return (
|
2019-08-20 02:37:32 +00:00
|
|
|
<nav class="container-fluid navbar navbar-expand-md navbar-light shadow p-0 px-3">
|
2019-04-29 01:30:52 +00:00
|
|
|
<Link title={version} class="navbar-brand" to="/">
|
2019-04-30 15:19:00 +00:00
|
|
|
{this.state.siteName}
|
2019-04-29 01:30:52 +00:00
|
|
|
</Link>
|
2019-04-06 22:49:51 +00:00
|
|
|
<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-08-09 01:58:04 +00:00
|
|
|
<Link class="nav-link" to="/communities"><T i18nKey="communities">#</T></Link>
|
2019-03-23 01:42:57 +00:00
|
|
|
</li>
|
2019-04-15 23:12:06 +00:00
|
|
|
<li class="nav-item">
|
2019-08-09 01:58:04 +00:00
|
|
|
<Link class="nav-link" to="/search"><T i18nKey="search">#</T></Link>
|
2019-04-15 23:12:06 +00:00
|
|
|
</li>
|
2019-03-23 01:42:57 +00:00
|
|
|
<li class="nav-item">
|
2019-08-09 01:58:04 +00:00
|
|
|
<Link class="nav-link" to={{pathname: '/create_post', state: { prevPath: this.currentLocation }}}><T i18nKey="create_post">#</T></Link>
|
2019-03-23 01:42:57 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2019-08-09 01:58:04 +00:00
|
|
|
<Link class="nav-link" to="/create_community"><T i18nKey="create_community">#</T></Link>
|
2019-03-23 01:42:57 +00:00
|
|
|
</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">
|
2019-08-17 19:15:53 +00:00
|
|
|
<Link class="nav-link" to="/inbox">
|
2019-04-20 22:49:23 +00:00
|
|
|
<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'}`}>
|
2019-08-09 01:58:04 +00:00
|
|
|
<a role="button" class="dropdown-item pointer" onClick={linkEvent(this, this.handleOverviewClick)}><T i18nKey="overview">#</T></a>
|
|
|
|
<a role="button" class="dropdown-item pointer" onClick={ linkEvent(this, this.handleLogoutClick) }><T i18nKey="logout">#</T></a>
|
2019-04-20 04:06:25 +00:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</>
|
|
|
|
:
|
2019-08-09 01:58:04 +00:00
|
|
|
<Link class="nav-link" to="/login"><T i18nKey="login_sign_up">#</T></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);
|
2019-04-25 21:52:18 +00:00
|
|
|
let userPage = `/u/${UserService.Instance.user.username}`;
|
2019-04-09 00:04:03 +00:00
|
|
|
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) {
|
2019-08-10 00:15:27 +00:00
|
|
|
if (msg.error == "not_logged_in") {
|
2019-05-02 16:55:29 +00:00
|
|
|
UserService.Instance.logout();
|
|
|
|
location.reload();
|
|
|
|
}
|
2019-04-21 17:49:57 +00:00
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.GetReplies) {
|
|
|
|
let res: GetRepliesResponse = msg;
|
2019-05-19 16:15:08 +00:00
|
|
|
let unreadReplies = res.replies.filter(r => !r.read);
|
|
|
|
if (unreadReplies.length > 0 && this.state.fetchCount > 1 &&
|
|
|
|
(JSON.stringify(this.state.replies) !== JSON.stringify(unreadReplies))) {
|
|
|
|
this.notify(unreadReplies);
|
2019-05-18 23:41:22 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 16:15:08 +00:00
|
|
|
this.state.replies = unreadReplies;
|
2019-04-21 17:49:57 +00:00
|
|
|
this.sendRepliesCount(res);
|
2019-04-30 15:19:00 +00:00
|
|
|
} else if (op == UserOperation.GetSite) {
|
|
|
|
let res: GetSiteResponse = msg;
|
|
|
|
|
|
|
|
if (res.site) {
|
|
|
|
this.state.siteName = res.site.name;
|
|
|
|
WebSocketService.Instance.site = res.site;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
2019-04-21 17:49:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2019-05-19 16:15:08 +00:00
|
|
|
this.state.fetchCount++;
|
2019-04-21 17:49:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-29 16:07:41 +00:00
|
|
|
get currentLocation() {
|
|
|
|
return this.context.router.history.location.pathname;
|
|
|
|
}
|
|
|
|
|
2019-04-21 17:49:57 +00:00
|
|
|
sendRepliesCount(res: GetRepliesResponse) {
|
|
|
|
UserService.Instance.sub.next({user: UserService.Instance.user, unreadCount: res.replies.filter(r => !r.read).length});
|
|
|
|
}
|
2019-04-09 00:04:03 +00:00
|
|
|
|
2019-05-18 23:41:22 +00:00
|
|
|
requestNotificationPermission() {
|
|
|
|
if (UserService.Instance.user) {
|
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
|
|
if (!Notification) {
|
2019-08-09 01:58:04 +00:00
|
|
|
alert(i18n.t('notifications_error'));
|
2019-05-18 23:41:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Notification.permission !== 'granted')
|
|
|
|
Notification.requestPermission();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
notify(replies: Array<Comment>) {
|
|
|
|
let recentReply = replies[0];
|
|
|
|
if (Notification.permission !== 'granted')
|
|
|
|
Notification.requestPermission();
|
|
|
|
else {
|
2019-08-09 01:58:04 +00:00
|
|
|
var notification = new Notification(`${replies.length} ${i18n.t('unread_messages')}`, {
|
2019-05-18 23:41:22 +00:00
|
|
|
icon: `${window.location.protocol}//${window.location.host}/static/assets/apple-touch-icon.png`,
|
2019-05-19 16:15:08 +00:00
|
|
|
body: `${recentReply.creator_name}: ${recentReply.content}`
|
2019-05-18 23:41:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
notification.onclick = () => {
|
|
|
|
this.context.router.history.push(`/post/${recentReply.post_id}/comment/${recentReply.id}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|