2019-03-21 01:22:31 +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-21 17:49:57 +00:00
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
|
|
|
import { WebSocketService, UserService } from '../services';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
|
|
|
UserOperation,
|
|
|
|
GetRepliesForm,
|
|
|
|
GetRepliesResponse,
|
2019-10-20 00:46:29 +00:00
|
|
|
GetUserMentionsForm,
|
|
|
|
GetUserMentionsResponse,
|
2020-01-22 21:35:29 +00:00
|
|
|
GetPrivateMessagesForm,
|
|
|
|
PrivateMessagesResponse,
|
2019-10-19 00:20:27 +00:00
|
|
|
SortType,
|
|
|
|
GetSiteResponse,
|
|
|
|
Comment,
|
2020-01-22 21:35:29 +00:00
|
|
|
PrivateMessage,
|
2019-10-19 00:20:27 +00:00
|
|
|
} from '../interfaces';
|
2020-01-15 21:20:54 +00:00
|
|
|
import {
|
|
|
|
msgOp,
|
|
|
|
pictshareAvatarThumbnail,
|
|
|
|
showAvatars,
|
|
|
|
fetchLimit,
|
2020-01-22 21:35:29 +00:00
|
|
|
isCommentType,
|
2020-01-15 21:20:54 +00:00
|
|
|
} 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;
|
2019-10-19 00:20:27 +00:00
|
|
|
replies: Array<Comment>;
|
2019-10-20 00:46:29 +00:00
|
|
|
mentions: Array<Comment>;
|
2020-01-22 21:35:29 +00:00
|
|
|
messages: Array<PrivateMessage>;
|
2019-10-19 00:20:27 +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-10-19 00:20:27 +00:00
|
|
|
isLoggedIn: UserService.Instance.user !== undefined,
|
2019-04-20 18:17:00 +00:00
|
|
|
unreadCount: 0,
|
2019-05-19 16:15:08 +00:00
|
|
|
fetchCount: 0,
|
2019-05-18 23:41:22 +00:00
|
|
|
replies: [],
|
2019-10-20 00:46:29 +00:00
|
|
|
mentions: [],
|
2020-01-22 21:35:29 +00:00
|
|
|
messages: [],
|
2019-04-09 00:04:03 +00:00
|
|
|
expanded: false,
|
2019-10-19 00:20:27 +00:00
|
|
|
siteName: undefined,
|
|
|
|
};
|
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;
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
this.keepFetchingUnreads();
|
2019-04-21 17:49:57 +00:00
|
|
|
|
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
|
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-21 17:49:57 +00:00
|
|
|
() => console.log('complete')
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
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() {
|
2019-10-19 00:20:27 +00:00
|
|
|
return <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-10-19 00:20:27 +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-10-19 00:20:27 +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-10-19 00:20:27 +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-10-19 00:20:27 +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-10-19 00:20:27 +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-10-19 00:20:27 +00:00
|
|
|
<Link class="nav-link" to="/create_community">
|
|
|
|
<T i18nKey="create_community">#</T>
|
|
|
|
</Link>
|
2019-03-23 01:42:57 +00:00
|
|
|
</li>
|
2020-01-19 21:28:29 +00:00
|
|
|
<li className="nav-item">
|
|
|
|
<Link
|
|
|
|
class="nav-link ml-2"
|
|
|
|
to="/sponsors"
|
|
|
|
title={i18n.t('donate_to_lemmy')}
|
|
|
|
>
|
|
|
|
<svg class="icon">
|
|
|
|
<use xlinkHref="#icon-coffee"></use>
|
|
|
|
</svg>
|
|
|
|
</Link>
|
|
|
|
</li>
|
2019-03-23 01:42:57 +00:00
|
|
|
</ul>
|
2020-01-19 21:28:29 +00:00
|
|
|
<ul class="navbar-nav ml-auto">
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.isLoggedIn ? (
|
|
|
|
<>
|
2020-01-19 21:28:29 +00:00
|
|
|
<li className="nav-item mt-1">
|
2019-10-30 03:35:39 +00:00
|
|
|
<Link class="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>
|
|
|
|
<li className="nav-item">
|
|
|
|
<Link
|
|
|
|
class="nav-link"
|
|
|
|
to={`/u/${UserService.Instance.user.username}`}
|
2019-10-19 00:20:27 +00:00
|
|
|
>
|
2019-12-29 20:39:48 +00:00
|
|
|
<span>
|
2020-01-02 21:55:54 +00:00
|
|
|
{UserService.Instance.user.avatar && showAvatars() && (
|
2019-12-29 20:39:48 +00:00
|
|
|
<img
|
|
|
|
src={pictshareAvatarThumbnail(
|
|
|
|
UserService.Instance.user.avatar
|
|
|
|
)}
|
|
|
|
height="32"
|
|
|
|
width="32"
|
|
|
|
class="rounded-circle mr-2"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{UserService.Instance.user.username}
|
|
|
|
</span>
|
2019-10-30 03:35:39 +00:00
|
|
|
</Link>
|
2019-04-20 22:49:23 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<Link class="nav-link" to="/login">
|
|
|
|
<T i18nKey="login_sign_up">#</T>
|
|
|
|
</Link>
|
|
|
|
)}
|
2019-03-23 01:42:57 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2019-03-21 01:22:31 +00:00
|
|
|
</nav>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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-10-19 00:20: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);
|
2019-10-19 00:20:27 +00:00
|
|
|
if (
|
|
|
|
unreadReplies.length > 0 &&
|
|
|
|
this.state.fetchCount > 1 &&
|
|
|
|
JSON.stringify(this.state.replies) !== JSON.stringify(unreadReplies)
|
|
|
|
) {
|
2019-05-19 16:15:08 +00:00
|
|
|
this.notify(unreadReplies);
|
2019-05-18 23:41:22 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 16:15:08 +00:00
|
|
|
this.state.replies = unreadReplies;
|
2019-10-20 00:46:29 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
this.sendUnreadCount();
|
|
|
|
} else if (op == UserOperation.GetUserMentions) {
|
|
|
|
let res: GetUserMentionsResponse = msg;
|
|
|
|
let unreadMentions = res.mentions.filter(r => !r.read);
|
|
|
|
if (
|
|
|
|
unreadMentions.length > 0 &&
|
|
|
|
this.state.fetchCount > 1 &&
|
|
|
|
JSON.stringify(this.state.mentions) !== JSON.stringify(unreadMentions)
|
|
|
|
) {
|
|
|
|
this.notify(unreadMentions);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state.mentions = unreadMentions;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.sendUnreadCount();
|
2020-01-22 21:35:29 +00:00
|
|
|
} else if (op == UserOperation.GetPrivateMessages) {
|
|
|
|
let res: PrivateMessagesResponse = msg;
|
|
|
|
let unreadMessages = res.messages.filter(r => !r.read);
|
|
|
|
if (
|
|
|
|
unreadMessages.length > 0 &&
|
|
|
|
this.state.fetchCount > 1 &&
|
|
|
|
JSON.stringify(this.state.messages) !== JSON.stringify(unreadMessages)
|
|
|
|
) {
|
|
|
|
this.notify(unreadMessages);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state.messages = unreadMessages;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.sendUnreadCount();
|
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-10-19 00:20:27 +00:00
|
|
|
}
|
2019-04-21 17:49:57 +00:00
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
keepFetchingUnreads() {
|
|
|
|
this.fetchUnreads();
|
|
|
|
setInterval(() => this.fetchUnreads(), 15000);
|
2019-04-21 17:49:57 +00:00
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
fetchUnreads() {
|
2019-04-21 17:49:57 +00:00
|
|
|
if (this.state.isLoggedIn) {
|
|
|
|
let repliesForm: GetRepliesForm = {
|
|
|
|
sort: SortType[SortType.New],
|
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
2020-01-15 21:20:54 +00:00
|
|
|
limit: fetchLimit,
|
2019-04-21 17:49:57 +00:00
|
|
|
};
|
2019-10-20 00:46:29 +00:00
|
|
|
|
|
|
|
let userMentionsForm: GetUserMentionsForm = {
|
|
|
|
sort: SortType[SortType.New],
|
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
2020-01-15 21:20:54 +00:00
|
|
|
limit: fetchLimit,
|
2019-10-20 00:46:29 +00:00
|
|
|
};
|
2020-01-22 21:35:29 +00:00
|
|
|
|
|
|
|
let privateMessagesForm: GetPrivateMessagesForm = {
|
|
|
|
unread_only: true,
|
|
|
|
page: 1,
|
|
|
|
limit: fetchLimit,
|
|
|
|
};
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
if (this.currentLocation !== '/inbox') {
|
2019-09-06 00:55:57 +00:00
|
|
|
WebSocketService.Instance.getReplies(repliesForm);
|
2019-10-20 00:46:29 +00:00
|
|
|
WebSocketService.Instance.getUserMentions(userMentionsForm);
|
2020-01-22 21:35:29 +00:00
|
|
|
WebSocketService.Instance.getPrivateMessages(privateMessagesForm);
|
2019-09-06 00:55:57 +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-10-20 00:46:29 +00:00
|
|
|
sendUnreadCount() {
|
2019-10-19 00:20:27 +00:00
|
|
|
UserService.Instance.sub.next({
|
|
|
|
user: UserService.Instance.user,
|
2019-10-20 00:46:29 +00:00
|
|
|
unreadCount: this.unreadCount,
|
2019-10-19 00:20:27 +00:00
|
|
|
});
|
2019-04-21 17:49:57 +00:00
|
|
|
}
|
2019-04-09 00:04:03 +00:00
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
get unreadCount() {
|
|
|
|
return (
|
|
|
|
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).length
|
2019-10-20 00:46:29 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-18 23:41:22 +00:00
|
|
|
requestNotificationPermission() {
|
|
|
|
if (UserService.Instance.user) {
|
2019-10-19 00:20:27 +00:00
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
if (!Notification) {
|
|
|
|
alert(i18n.t('notifications_error'));
|
|
|
|
return;
|
|
|
|
}
|
2019-05-18 23:41:22 +00:00
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
if (Notification.permission !== 'granted')
|
|
|
|
Notification.requestPermission();
|
|
|
|
});
|
2019-05-18 23:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 21:35:29 +00:00
|
|
|
notify(replies: Array<Comment | PrivateMessage>) {
|
2019-05-18 23:41:22 +00:00
|
|
|
let recentReply = replies[0];
|
2019-10-19 00:20:27 +00:00
|
|
|
if (Notification.permission !== 'granted') Notification.requestPermission();
|
2019-05-18 23:41:22 +00:00
|
|
|
else {
|
2019-10-19 00:20:27 +00:00
|
|
|
var notification = new Notification(
|
|
|
|
`${replies.length} ${i18n.t('unread_messages')}`,
|
|
|
|
{
|
2020-01-22 21:35:29 +00:00
|
|
|
icon: recentReply.creator_avatar
|
|
|
|
? recentReply.creator_avatar
|
|
|
|
: `${window.location.protocol}//${window.location.host}/static/assets/apple-touch-icon.png`,
|
2019-10-19 00:20:27 +00:00
|
|
|
body: `${recentReply.creator_name}: ${recentReply.content}`,
|
|
|
|
}
|
|
|
|
);
|
2019-05-18 23:41:22 +00:00
|
|
|
|
|
|
|
notification.onclick = () => {
|
2019-10-19 00:20:27 +00:00
|
|
|
this.context.router.history.push(
|
2020-01-22 21:35:29 +00:00
|
|
|
isCommentType(recentReply)
|
|
|
|
? `/post/${recentReply.post_id}/comment/${recentReply.id}`
|
|
|
|
: `/inbox`
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-05-18 23:41:22 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|