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-10 02:19:12 -04:00
|
|
|
import { UserOperation, CommunityUser, GetFollowedCommunitiesResponse, ListCommunitiesForm, ListCommunitiesResponse, Community, SortType } from '../interfaces';
|
2019-04-05 15:14:54 -04:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { PostListings } from './post-listings';
|
2019-04-09 17:21:19 -04:00
|
|
|
import { msgOp, repoUrl } from '../utils';
|
2019-04-05 15:14:54 -04:00
|
|
|
|
|
|
|
interface State {
|
|
|
|
subscribedCommunities: Array<CommunityUser>;
|
2019-04-10 02:19:12 -04:00
|
|
|
trendingCommunities: Array<Community>;
|
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: [],
|
2019-04-10 02:19:12 -04:00
|
|
|
trendingCommunities: [],
|
2019-04-08 17:46:09 -04:00
|
|
|
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();
|
|
|
|
}
|
2019-04-10 02:19:12 -04:00
|
|
|
|
|
|
|
let listCommunitiesForm: ListCommunitiesForm = {
|
|
|
|
sort: SortType[SortType.New],
|
|
|
|
limit: 8
|
|
|
|
}
|
|
|
|
|
|
|
|
WebSocketService.Instance.listCommunities(listCommunitiesForm);
|
2019-04-05 15:14:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-04-09 17:21:19 -04:00
|
|
|
<div class="col-12 col-md-8">
|
2019-04-05 15:14:54 -04:00
|
|
|
<PostListings />
|
|
|
|
</div>
|
2019-04-09 17:21:19 -04:00
|
|
|
<div class="col-12 col-md-4">
|
2019-04-10 02:19:12 -04:00
|
|
|
{this.state.loading ?
|
|
|
|
<h4><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h4> :
|
|
|
|
<div>
|
|
|
|
{this.trendingCommunities()}
|
|
|
|
{UserService.Instance.loggedIn ?
|
2019-04-05 15:14:54 -04:00
|
|
|
<div>
|
2019-04-10 02:19:12 -04:00
|
|
|
<h4>Subscribed forums</h4>
|
|
|
|
<ul class="list-inline">
|
|
|
|
{this.state.subscribedCommunities.map(community =>
|
|
|
|
<li class="list-inline-item"><Link to={`/community/${community.community_id}`}>{community.community_name}</Link></li>
|
|
|
|
)}
|
|
|
|
</ul>
|
2019-04-09 17:21:19 -04:00
|
|
|
</div> :
|
2019-04-10 02:19:12 -04:00
|
|
|
this.landing()
|
|
|
|
}
|
|
|
|
</div>
|
2019-04-05 15:14:54 -04:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-10 02:19:12 -04:00
|
|
|
trendingCommunities() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h4>Trending forums</h4>
|
|
|
|
<ul class="list-inline">
|
|
|
|
{this.state.trendingCommunities.map(community =>
|
|
|
|
<li class="list-inline-item"><Link to={`/community/${community.id}`}>{community.name}</Link></li>
|
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-09 17:21:19 -04:00
|
|
|
landing() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h4>Welcome to
|
|
|
|
<svg class="icon mx-2"><use xlinkHref="#icon-mouse"></use></svg>
|
|
|
|
<a href={repoUrl}>Lemmy<sup>Beta</sup></a>
|
|
|
|
</h4>
|
|
|
|
<p>Lemmy is a <a href="https://en.wikipedia.org/wiki/Link_aggregation">link aggregator</a> / reddit alternative, intended to work in the <a href="https://en.wikipedia.org/wiki/Fediverse">fediverse</a>.</p>
|
|
|
|
<p>Its self-hostable, has live-updating comment threads, and is tiny (<code>~80kB</code>). Federation into the ActivityPub network is on the roadmap.</p>
|
|
|
|
<p>This is a <b>very early beta version</b>, and a lot of features are currently broken or missing.</p>
|
|
|
|
<p>Suggest new features or report bugs <a href={repoUrl}>here.</a></p>
|
|
|
|
<p>Made with <a href="https://www.rust-lang.org">Rust</a>, <a href="https://actix.rs/">Actix</a>, <a href="https://www.infernojs.org">Inferno</a>, <a href="https://www.typescriptlang.org/">Typescript</a>.</p>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2019-04-05 15:14:54 -04:00
|
|
|
|
|
|
|
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);
|
2019-04-10 02:19:12 -04:00
|
|
|
} else if (op == UserOperation.ListCommunities) {
|
|
|
|
let res: ListCommunitiesResponse = msg;
|
|
|
|
this.state.trendingCommunities = res.communities;
|
|
|
|
this.state.loading = false;
|
|
|
|
this.setState(this.state);
|
2019-04-05 15:14:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|