import { Component } from 'inferno'; import { Link } from 'inferno-router'; import { Subscription } from "rxjs"; import { retryWhen, delay, take } from 'rxjs/operators'; import { UserOperation, CommunityUser, GetFollowedCommunitiesResponse, ListCommunitiesForm, ListCommunitiesResponse, Community, SortType } from '../interfaces'; import { WebSocketService, UserService } from '../services'; import { PostListings } from './post-listings'; import { msgOp, repoUrl } from '../utils'; interface State { subscribedCommunities: Array; trendingCommunities: Array; loading: boolean; } export class Main extends Component { private subscription: Subscription; private emptyState: State = { subscribedCommunities: [], trendingCommunities: [], loading: true } 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(); } let listCommunitiesForm: ListCommunitiesForm = { sort: SortType[SortType.New], limit: 8 } WebSocketService.Instance.listCommunities(listCommunitiesForm); } componentWillUnmount() { this.subscription.unsubscribe(); } render() { return (
{this.state.loading ?

:
{this.trendingCommunities()} {UserService.Instance.loggedIn ?

Subscribed forums

    {this.state.subscribedCommunities.map(community =>
  • {community.community_name}
  • )}
: this.landing() }
}
) } trendingCommunities() { return (

Trending forums

    {this.state.trendingCommunities.map(community =>
  • {community.name}
  • )}
) } landing() { return (

Welcome to LemmyBeta

Lemmy is a link aggregator / reddit alternative, intended to work in the fediverse.

Its self-hostable, has live-updating comment threads, and is tiny (~80kB). Federation into the ActivityPub network is on the roadmap.

This is a very early beta version, and a lot of features are currently broken or missing.

Suggest new features or report bugs here.

Made with Rust, Actix, Inferno, Typescript.

) } 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.state.loading = false; this.setState(this.state); } else if (op == UserOperation.ListCommunities) { let res: ListCommunitiesResponse = msg; this.state.trendingCommunities = res.communities; this.state.loading = false; this.setState(this.state); } } }