2019-04-05 19:14:54 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-04-17 23:31:08 +00:00
|
|
|
import { UserOperation, Post, GetPostsForm, SortType, ListingType, GetPostsResponse, CreatePostLikeResponse, CommunityUser} from '../interfaces';
|
2019-04-05 19:14:54 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { PostListing } from './post-listing';
|
2019-04-17 18:30:13 +00:00
|
|
|
import { msgOp, fetchLimit } from '../utils';
|
2019-04-05 19:14:54 +00:00
|
|
|
|
|
|
|
interface PostListingsProps {
|
|
|
|
communityId?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface PostListingsState {
|
|
|
|
moderators: Array<CommunityUser>;
|
|
|
|
posts: Array<Post>;
|
2019-04-08 05:19:02 +00:00
|
|
|
sortType: SortType;
|
2019-04-05 19:14:54 +00:00
|
|
|
type_: ListingType;
|
2019-04-17 18:30:13 +00:00
|
|
|
page: number;
|
2019-04-08 21:46:09 +00:00
|
|
|
loading: boolean;
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class PostListings extends Component<PostListingsProps, PostListingsState> {
|
|
|
|
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: PostListingsState = {
|
|
|
|
moderators: [],
|
|
|
|
posts: [],
|
2019-04-08 05:19:02 +00:00
|
|
|
sortType: SortType.Hot,
|
2019-04-05 19:14:54 +00:00
|
|
|
type_: this.props.communityId
|
|
|
|
? ListingType.Community
|
2019-04-16 23:04:23 +00:00
|
|
|
: UserService.Instance.user
|
2019-04-05 19:14:54 +00:00
|
|
|
? ListingType.Subscribed
|
2019-04-08 21:46:09 +00:00
|
|
|
: ListingType.All,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: 1,
|
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
|
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
.subscribe(
|
|
|
|
(msg) => this.parseMessage(msg),
|
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
|
|
|
);
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
this.refetch();
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-04-08 21:46:09 +00:00
|
|
|
{this.state.loading ?
|
2019-04-20 04:06:25 +00:00
|
|
|
<h5><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h5> :
|
2019-04-08 21:46:09 +00:00
|
|
|
<div>
|
2019-04-17 18:30:13 +00:00
|
|
|
{this.selects()}
|
2019-04-08 21:46:09 +00:00
|
|
|
{this.state.posts.length > 0
|
|
|
|
? this.state.posts.map(post =>
|
|
|
|
<PostListing post={post} showCommunity={!this.props.communityId}/>)
|
2019-04-16 23:04:23 +00:00
|
|
|
: <div>No Listings. {!this.props.communityId && <span>Subscribe to some <Link to="/communities">forums</Link>.</span>}</div>
|
2019-04-08 21:46:09 +00:00
|
|
|
}
|
2019-04-17 18:30:13 +00:00
|
|
|
{this.paginator()}
|
2019-04-08 21:46:09 +00:00
|
|
|
</div>
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
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>
|
2019-04-08 05:19:02 +00:00
|
|
|
<option value={SortType.Hot}>Hot</option>
|
|
|
|
<option value={SortType.New}>New</option>
|
2019-04-05 19:14:54 +00:00
|
|
|
<option disabled>──────────</option>
|
2019-04-08 05:19:02 +00:00
|
|
|
<option value={SortType.TopDay}>Top Day</option>
|
|
|
|
<option value={SortType.TopWeek}>Week</option>
|
|
|
|
<option value={SortType.TopMonth}>Month</option>
|
|
|
|
<option value={SortType.TopYear}>Year</option>
|
|
|
|
<option value={SortType.TopAll}>All</option>
|
2019-04-05 19:14:54 +00:00
|
|
|
</select>
|
|
|
|
{!this.props.communityId &&
|
2019-04-16 23:04:23 +00:00
|
|
|
UserService.Instance.user &&
|
2019-04-08 21:46:09 +00:00
|
|
|
<select value={this.state.type_} onChange={linkEvent(this, this.handleTypeChange)} class="ml-2 custom-select w-auto">
|
|
|
|
<option disabled>Type</option>
|
|
|
|
<option value={ListingType.All}>All</option>
|
|
|
|
<option value={ListingType.Subscribed}>Subscribed</option>
|
|
|
|
</select>
|
2019-04-05 19:14:54 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
2019-04-17 18:30:13 +00:00
|
|
|
}
|
2019-04-05 19:14:54 +00:00
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
paginator() {
|
|
|
|
return (
|
|
|
|
<div class="mt-2">
|
|
|
|
{this.state.page > 1 &&
|
|
|
|
<button class="btn btn-sm btn-secondary mr-1" onClick={linkEvent(this, this.prevPage)}>Prev</button>
|
|
|
|
}
|
|
|
|
<button class="btn btn-sm btn-secondary" onClick={linkEvent(this, this.nextPage)}>Next</button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
nextPage(i: PostListings) {
|
|
|
|
i.state.page++;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
prevPage(i: PostListings) {
|
|
|
|
i.state.page--;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
handleSortChange(i: PostListings, event: any) {
|
2019-04-05 19:14:54 +00:00
|
|
|
i.state.sortType = Number(event.target.value);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.state.page = 1;
|
2019-04-05 19:14:54 +00:00
|
|
|
i.setState(i.state);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.refetch();
|
|
|
|
}
|
2019-04-05 19:14:54 +00:00
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
refetch() {
|
2019-04-05 19:14:54 +00:00
|
|
|
let getPostsForm: GetPostsForm = {
|
2019-04-17 23:31:08 +00:00
|
|
|
community_id: this.props.communityId,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
|
|
|
sort: SortType[this.state.sortType],
|
2019-04-17 19:58:14 +00:00
|
|
|
type_: ListingType[this.state.type_]
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
WebSocketService.Instance.getPosts(getPostsForm);
|
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
handleTypeChange(i: PostListings, event: any) {
|
2019-04-05 19:14:54 +00:00
|
|
|
i.state.type_ = Number(event.target.value);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.state.page = 1;
|
2019-04-05 19:14:54 +00:00
|
|
|
i.setState(i.state);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.refetch();
|
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.GetPosts) {
|
|
|
|
let res: GetPostsResponse = msg;
|
|
|
|
this.state.posts = res.posts;
|
2019-04-08 21:46:09 +00:00
|
|
|
this.state.loading = false;
|
2019-04-05 19:14:54 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|