2019-04-08 05:19:02 +00:00
|
|
|
import { Component } from 'inferno';
|
2019-04-05 19:14:54 +00:00
|
|
|
import { Link } from 'inferno-router';
|
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-04-16 23:04:23 +00:00
|
|
|
import { UserOperation, CommunityUser, GetFollowedCommunitiesResponse, ListCommunitiesForm, ListCommunitiesResponse, Community, SortType, GetSiteResponse } from '../interfaces';
|
2019-04-05 19:14:54 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { PostListings } from './post-listings';
|
2019-04-16 23:04:23 +00:00
|
|
|
import { msgOp, repoUrl, mdToHtml } from '../utils';
|
2019-04-05 19:14:54 +00:00
|
|
|
|
|
|
|
interface State {
|
|
|
|
subscribedCommunities: Array<CommunityUser>;
|
2019-04-10 06:19:12 +00:00
|
|
|
trendingCommunities: Array<Community>;
|
2019-04-16 23:04:23 +00:00
|
|
|
site: GetSiteResponse;
|
2019-04-08 21:46:09 +00:00
|
|
|
loading: boolean;
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Main extends Component<any, State> {
|
|
|
|
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: State = {
|
2019-04-08 21:46:09 +00:00
|
|
|
subscribedCommunities: [],
|
2019-04-10 06:19:12 +00:00
|
|
|
trendingCommunities: [],
|
2019-04-16 23:04:23 +00:00
|
|
|
site: {
|
|
|
|
op: null,
|
|
|
|
site: {
|
|
|
|
id: null,
|
|
|
|
name: null,
|
|
|
|
creator_id: null,
|
|
|
|
creator_name: null,
|
|
|
|
published: null,
|
|
|
|
number_of_users: null,
|
|
|
|
number_of_posts: null,
|
|
|
|
number_of_comments: null,
|
|
|
|
},
|
|
|
|
admins: [],
|
|
|
|
banned: [],
|
|
|
|
},
|
2019-04-08 21:46:09 +00:00
|
|
|
loading: true
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-04-05 19:14:54 +00:00
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2019-04-08 21:46:09 +00:00
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
.subscribe(
|
|
|
|
(msg) => this.parseMessage(msg),
|
2019-04-05 19:14:54 +00:00
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
2019-04-08 21:46:09 +00:00
|
|
|
);
|
2019-04-05 19:14:54 +00:00
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
WebSocketService.Instance.getSite();
|
|
|
|
|
|
|
|
if (UserService.Instance.user) {
|
2019-04-05 19:14:54 +00:00
|
|
|
WebSocketService.Instance.getFollowedCommunities();
|
|
|
|
}
|
2019-04-10 06:19:12 +00:00
|
|
|
|
|
|
|
let listCommunitiesForm: ListCommunitiesForm = {
|
|
|
|
sort: SortType[SortType.New],
|
|
|
|
limit: 8
|
|
|
|
}
|
|
|
|
|
|
|
|
WebSocketService.Instance.listCommunities(listCommunitiesForm);
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-04-09 21:21:19 +00:00
|
|
|
<div class="col-12 col-md-8">
|
2019-04-05 19:14:54 +00:00
|
|
|
<PostListings />
|
|
|
|
</div>
|
2019-04-09 21:21:19 +00:00
|
|
|
<div class="col-12 col-md-4">
|
2019-04-10 06:19:12 +00:00
|
|
|
{this.state.loading ?
|
|
|
|
<h4><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h4> :
|
|
|
|
<div>
|
|
|
|
{this.trendingCommunities()}
|
2019-04-16 23:04:23 +00:00
|
|
|
{UserService.Instance.user && this.state.subscribedCommunities.length > 0 &&
|
2019-04-05 19:14:54 +00:00
|
|
|
<div>
|
2019-04-10 06:19:12 +00: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-16 23:04:23 +00:00
|
|
|
</div>
|
2019-04-10 06:19:12 +00:00
|
|
|
}
|
2019-04-16 23:04:23 +00:00
|
|
|
{this.landing()}
|
2019-04-10 06:19:12 +00:00
|
|
|
</div>
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-10 06:19:12 +00:00
|
|
|
trendingCommunities() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-04-16 23:04:23 +00:00
|
|
|
<h4>Trending <Link class="text-white" to="/communities">forums</Link></h4>
|
2019-04-10 06:19:12 +00:00
|
|
|
<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 21:21:19 +00:00
|
|
|
landing() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-04-16 23:04:23 +00:00
|
|
|
<h4>{`${this.state.site.site.name}`}</h4>
|
|
|
|
<ul class="my-1 list-inline">
|
|
|
|
<li className="list-inline-item badge badge-light">{this.state.site.site.number_of_users} Users</li>
|
|
|
|
<li className="list-inline-item badge badge-light">{this.state.site.site.number_of_posts} Posts</li>
|
|
|
|
<li className="list-inline-item badge badge-light">{this.state.site.site.number_of_comments} Comments</li>
|
|
|
|
<li className="list-inline-item"><Link className="badge badge-light" to="/modlog">Modlog</Link></li>
|
|
|
|
</ul>
|
|
|
|
<ul class="list-inline small">
|
|
|
|
<li class="list-inline-item">admins: </li>
|
|
|
|
{this.state.site.admins.map(admin =>
|
|
|
|
<li class="list-inline-item"><Link class="text-info" to={`/user/${admin.id}`}>{admin.name}</Link></li>
|
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
{this.state.site.site.description &&
|
|
|
|
<div>
|
|
|
|
<hr />
|
|
|
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(this.state.site.site.description)} />
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
}
|
2019-04-09 21:21:19 +00:00
|
|
|
<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 19:14:54 +00: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 21:46:09 +00:00
|
|
|
this.state.loading = false;
|
2019-04-05 19:14:54 +00:00
|
|
|
this.setState(this.state);
|
2019-04-10 06:19:12 +00: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-16 23:04:23 +00:00
|
|
|
} else if (op == UserOperation.GetSite) {
|
|
|
|
let res: GetSiteResponse = msg;
|
|
|
|
|
|
|
|
// This means it hasn't been set up yet
|
|
|
|
if (!res.site) {
|
|
|
|
this.context.router.history.push("/setup");
|
|
|
|
}
|
|
|
|
this.state.site.admins = res.admins;
|
|
|
|
this.state.site.site = res.site;
|
|
|
|
this.state.site.banned = res.banned;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|