2019-04-08 01:19:02 -04:00
|
|
|
import { Component } from 'inferno';
|
2019-04-05 15:14:54 -04:00
|
|
|
import { Link } from 'inferno-router';
|
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-04-08 01:19:02 -04:00
|
|
|
import { UserOperation, CommunityUser, GetFollowedCommunitiesResponse } from '../interfaces';
|
2019-04-05 15:14:54 -04:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { PostListings } from './post-listings';
|
2019-04-08 01:19:02 -04:00
|
|
|
import { msgOp } from '../utils';
|
2019-04-05 15:14:54 -04:00
|
|
|
|
|
|
|
interface State {
|
|
|
|
subscribedCommunities: Array<CommunityUser>;
|
2019-04-08 17:46:09 -04:00
|
|
|
loading: boolean;
|
2019-04-05 15:14:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Main extends Component<any, State> {
|
|
|
|
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: State = {
|
2019-04-08 17:46:09 -04:00
|
|
|
subscribedCommunities: [],
|
|
|
|
loading: true
|
2019-04-05 15:14:54 -04:00
|
|
|
}
|
|
|
|
|
2019-04-08 01:19:02 -04:00
|
|
|
constructor(props: any, context: any) {
|
2019-04-05 15:14:54 -04:00
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2019-04-08 17:46:09 -04:00
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
.subscribe(
|
|
|
|
(msg) => this.parseMessage(msg),
|
2019-04-05 15:14:54 -04:00
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
2019-04-08 17:46:09 -04:00
|
|
|
);
|
2019-04-05 15:14:54 -04:00
|
|
|
|
|
|
|
if (UserService.Instance.loggedIn) {
|
|
|
|
WebSocketService.Instance.getFollowedCommunities();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-04-08 20:04:03 -04:00
|
|
|
<div class="col-12 col-md-9">
|
2019-04-05 15:14:54 -04:00
|
|
|
<PostListings />
|
|
|
|
</div>
|
2019-04-08 20:04:03 -04:00
|
|
|
<div class="col-12 col-md-3">
|
2019-04-05 15:14:54 -04:00
|
|
|
<h4>A Landing message</h4>
|
|
|
|
{UserService.Instance.loggedIn &&
|
|
|
|
<div>
|
2019-04-08 17:46:09 -04:00
|
|
|
{this.state.loading ?
|
|
|
|
<h4 class="mt-3"><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h4> :
|
|
|
|
<div>
|
|
|
|
<hr />
|
|
|
|
<h4>Subscribed forums</h4>
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{this.state.subscribedCommunities.map(community =>
|
|
|
|
<li><Link to={`/community/${community.community_id}`}>{community.community_name}</Link></li>
|
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
}
|
2019-04-05 15:14:54 -04:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
parseMessage(msg: any) {
|
|
|
|
console.log(msg);
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
|
|
|
alert(msg.error);
|
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.GetFollowedCommunities) {
|
|
|
|
let res: GetFollowedCommunitiesResponse = msg;
|
|
|
|
this.state.subscribedCommunities = res.communities;
|
2019-04-08 17:46:09 -04:00
|
|
|
this.state.loading = false;
|
2019-04-05 15:14:54 -04:00
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|