import { Component } from 'inferno'; import { Link } from 'inferno-router'; import { Subscription } from "rxjs"; import { retryWhen, delay, take } from 'rxjs/operators'; import { UserOperation, CommunityUser, GetFollowedCommunitiesResponse } from '../interfaces'; import { WebSocketService, UserService } from '../services'; import { PostListings } from './post-listings'; import { msgOp } from '../utils'; interface State { subscribedCommunities: Array; } export class Main extends Component { private subscription: Subscription; private emptyState: State = { subscribedCommunities: [] } 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') ); if (UserService.Instance.loggedIn) { WebSocketService.Instance.getFollowedCommunities(); } } componentWillUnmount() { this.subscription.unsubscribe(); } render() { return (

A Landing message

{UserService.Instance.loggedIn &&

Subscribed forums

    {this.state.subscribedCommunities.map(community =>
  • {community.community_name}
  • )}
}
) } 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; this.setState(this.state); } } }