2019-03-26 18:00:18 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2019-04-03 06:49:32 +00:00
|
|
|
import { Link } from 'inferno-router';
|
2019-03-26 18:00:18 +00:00
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-04-04 22:29:14 +00:00
|
|
|
import { UserOperation, Community as CommunityI, GetCommunityResponse, CommunityResponse, Post, GetPostsForm, ListingSortType, ListingType, GetPostsResponse, CreatePostLikeForm, CreatePostLikeResponse, CommunityUser} from '../interfaces';
|
2019-03-26 18:00:18 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
2019-04-03 06:49:32 +00:00
|
|
|
import { MomentTime } from './moment-time';
|
|
|
|
import { PostListing } from './post-listing';
|
2019-04-03 23:01:20 +00:00
|
|
|
import { Sidebar } from './sidebar';
|
|
|
|
import { msgOp, mdToHtml } from '../utils';
|
2019-03-26 18:00:18 +00:00
|
|
|
|
|
|
|
interface State {
|
|
|
|
community: CommunityI;
|
2019-04-04 20:53:32 +00:00
|
|
|
moderators: Array<CommunityUser>;
|
2019-03-26 18:00:18 +00:00
|
|
|
posts: Array<Post>;
|
2019-04-03 06:49:32 +00:00
|
|
|
sortType: ListingSortType;
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Community extends Component<any, State> {
|
|
|
|
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: State = {
|
|
|
|
community: {
|
|
|
|
id: null,
|
|
|
|
name: null,
|
2019-04-03 23:01:20 +00:00
|
|
|
title: null,
|
|
|
|
category_id: null,
|
|
|
|
category_name: null,
|
|
|
|
creator_id: null,
|
|
|
|
creator_name: null,
|
|
|
|
number_of_subscribers: null,
|
|
|
|
number_of_posts: null,
|
2019-04-04 20:53:32 +00:00
|
|
|
number_of_comments: null,
|
2019-03-26 18:00:18 +00:00
|
|
|
published: null
|
|
|
|
},
|
2019-04-04 20:53:32 +00:00
|
|
|
moderators: [],
|
2019-04-03 06:49:32 +00:00
|
|
|
posts: [],
|
|
|
|
sortType: ListingSortType.Hot,
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
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')
|
|
|
|
);
|
|
|
|
|
|
|
|
let communityId = Number(this.props.match.params.id);
|
|
|
|
WebSocketService.Instance.getCommunity(communityId);
|
2019-04-03 06:49:32 +00:00
|
|
|
|
|
|
|
let getPostsForm: GetPostsForm = {
|
|
|
|
community_id: communityId,
|
|
|
|
limit: 10,
|
|
|
|
sort: ListingSortType[ListingSortType.Hot],
|
|
|
|
type_: ListingType[ListingType.Community]
|
|
|
|
}
|
|
|
|
WebSocketService.Instance.getPosts(getPostsForm);
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-04-05 02:08:21 +00:00
|
|
|
<div class="col-12 col-lg-9">
|
2019-04-03 06:49:32 +00:00
|
|
|
<h4>/f/{this.state.community.name}</h4>
|
|
|
|
<div>{this.selects()}</div>
|
|
|
|
{this.state.posts.length > 0
|
|
|
|
? this.state.posts.map(post =>
|
|
|
|
<PostListing post={post} />)
|
|
|
|
: <div>no listings</div>
|
|
|
|
}
|
2019-03-26 18:00:18 +00:00
|
|
|
</div>
|
2019-04-05 02:08:21 +00:00
|
|
|
<div class="col-12 col-lg-3">
|
2019-04-04 20:53:32 +00:00
|
|
|
<Sidebar community={this.state.community} moderators={this.state.moderators} />
|
2019-04-03 06:49:32 +00:00
|
|
|
</div>
|
2019-03-26 18:00:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
selects() {
|
|
|
|
return (
|
|
|
|
<div className="mb-2">
|
|
|
|
<select value={this.state.sortType} onChange={linkEvent(this, this.handleSortChange)} class="custom-select w-auto">
|
|
|
|
<option disabled>Sort Type</option>
|
|
|
|
<option value={ListingSortType.Hot}>Hot</option>
|
|
|
|
<option value={ListingSortType.New}>New</option>
|
|
|
|
<option disabled>──────────</option>
|
|
|
|
<option value={ListingSortType.TopDay}>Top Day</option>
|
|
|
|
<option value={ListingSortType.TopWeek}>Week</option>
|
|
|
|
<option value={ListingSortType.TopMonth}>Month</option>
|
|
|
|
<option value={ListingSortType.TopYear}>Year</option>
|
|
|
|
<option value={ListingSortType.TopAll}>All</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSortChange(i: Community, event) {
|
|
|
|
i.state.sortType = Number(event.target.value);
|
|
|
|
i.setState(i.state);
|
|
|
|
|
|
|
|
let getPostsForm: GetPostsForm = {
|
|
|
|
community_id: i.state.community.id,
|
|
|
|
limit: 10,
|
|
|
|
sort: ListingSortType[i.state.sortType],
|
|
|
|
type_: ListingType[ListingType.Community]
|
|
|
|
}
|
|
|
|
WebSocketService.Instance.getPosts(getPostsForm);
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
console.log(msg);
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
|
|
|
alert(msg.error);
|
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.GetCommunity) {
|
2019-04-04 22:29:14 +00:00
|
|
|
let res: GetCommunityResponse = msg;
|
2019-03-26 18:00:18 +00:00
|
|
|
this.state.community = res.community;
|
2019-04-04 20:53:32 +00:00
|
|
|
this.state.moderators = res.moderators;
|
2019-03-26 18:00:18 +00:00
|
|
|
this.setState(this.state);
|
2019-04-03 06:49:32 +00:00
|
|
|
} else if (op == UserOperation.GetPosts) {
|
|
|
|
let res: GetPostsResponse = msg;
|
|
|
|
this.state.posts = res.posts;
|
|
|
|
this.setState(this.state);
|
|
|
|
} else if (op == UserOperation.CreatePostLike) {
|
|
|
|
let res: CreatePostLikeResponse = msg;
|
|
|
|
let found = this.state.posts.find(c => c.id == res.post.id);
|
|
|
|
found.my_vote = res.post.my_vote;
|
|
|
|
found.score = res.post.score;
|
|
|
|
found.upvotes = res.post.upvotes;
|
|
|
|
found.downvotes = res.post.downvotes;
|
|
|
|
this.setState(this.state);
|
2019-04-04 22:29:14 +00:00
|
|
|
} else if (op == UserOperation.EditCommunity) {
|
|
|
|
let res: CommunityResponse = msg;
|
|
|
|
this.state.community = res.community;
|
|
|
|
this.setState(this.state);
|
2019-04-05 06:26:38 +00:00
|
|
|
} else if (op == UserOperation.FollowCommunity) {
|
|
|
|
let res: CommunityResponse = msg;
|
|
|
|
this.state.community.subscribed = res.community.subscribed;
|
|
|
|
this.state.community.number_of_subscribers = res.community.number_of_subscribers;
|
|
|
|
this.setState(this.state);
|
2019-04-03 06:49:32 +00:00
|
|
|
}
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-03 06:49:32 +00:00
|
|
|
|
|
|
|
|