2019-04-08 05:19:02 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
|
|
|
import { UserOperation, Post, Comment, CommunityUser, GetUserDetailsForm, SortType, UserDetailsResponse, UserView } from '../interfaces';
|
|
|
|
import { WebSocketService } from '../services';
|
2019-04-17 18:30:13 +00:00
|
|
|
import { msgOp, fetchLimit } from '../utils';
|
2019-04-08 05:19:02 +00:00
|
|
|
import { PostListing } from './post-listing';
|
|
|
|
import { CommentNodes } from './comment-nodes';
|
|
|
|
import { MomentTime } from './moment-time';
|
|
|
|
|
|
|
|
enum View {
|
|
|
|
Overview, Comments, Posts, Saved
|
|
|
|
}
|
|
|
|
|
|
|
|
interface UserState {
|
|
|
|
user: UserView;
|
2019-04-17 18:30:13 +00:00
|
|
|
user_id: number;
|
2019-04-08 05:19:02 +00:00
|
|
|
follows: Array<CommunityUser>;
|
|
|
|
moderates: Array<CommunityUser>;
|
|
|
|
comments: Array<Comment>;
|
|
|
|
posts: Array<Post>;
|
|
|
|
saved?: Array<Post>;
|
|
|
|
view: View;
|
|
|
|
sort: SortType;
|
2019-04-17 18:30:13 +00:00
|
|
|
page: number;
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class User extends Component<any, UserState> {
|
|
|
|
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: UserState = {
|
|
|
|
user: {
|
|
|
|
id: null,
|
|
|
|
name: null,
|
|
|
|
fedi_name: null,
|
|
|
|
published: null,
|
|
|
|
number_of_posts: null,
|
|
|
|
post_score: null,
|
|
|
|
number_of_comments: null,
|
|
|
|
comment_score: null,
|
|
|
|
},
|
2019-04-17 18:30:13 +00:00
|
|
|
user_id: null,
|
2019-04-08 05:19:02 +00:00
|
|
|
follows: [],
|
|
|
|
moderates: [],
|
|
|
|
comments: [],
|
|
|
|
posts: [],
|
|
|
|
view: View.Overview,
|
2019-04-17 18:30:13 +00:00
|
|
|
sort: SortType.New,
|
|
|
|
page: 1,
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
this.state.user_id = Number(this.props.match.params.id);
|
2019-04-08 05:19:02 +00:00
|
|
|
|
|
|
|
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-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-04-09 00:04:03 +00:00
|
|
|
<div class="col-12 col-md-9">
|
2019-04-08 05:19:02 +00:00
|
|
|
<h4>/u/{this.state.user.name}</h4>
|
|
|
|
{this.selects()}
|
|
|
|
{this.state.view == View.Overview &&
|
|
|
|
this.overview()
|
|
|
|
}
|
|
|
|
{this.state.view == View.Comments &&
|
|
|
|
this.comments()
|
|
|
|
}
|
|
|
|
{this.state.view == View.Posts &&
|
|
|
|
this.posts()
|
|
|
|
}
|
2019-04-17 18:30:13 +00:00
|
|
|
{this.paginator()}
|
2019-04-08 05:19:02 +00:00
|
|
|
</div>
|
2019-04-09 00:04:03 +00:00
|
|
|
<div class="col-12 col-md-3">
|
2019-04-08 05:19:02 +00:00
|
|
|
{this.userInfo()}
|
|
|
|
{this.moderates()}
|
|
|
|
{this.follows()}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
selects() {
|
|
|
|
return (
|
|
|
|
<div className="mb-2">
|
|
|
|
<select value={this.state.view} onChange={linkEvent(this, this.handleViewChange)} class="custom-select w-auto">
|
|
|
|
<option disabled>View</option>
|
|
|
|
<option value={View.Overview}>Overview</option>
|
|
|
|
<option value={View.Comments}>Comments</option>
|
|
|
|
<option value={View.Posts}>Posts</option>
|
|
|
|
{/* <option value={View.Saved}>Saved</option> */}
|
|
|
|
</select>
|
|
|
|
<select value={this.state.sort} onChange={linkEvent(this, this.handleSortChange)} class="custom-select w-auto ml-2">
|
|
|
|
<option disabled>Sort Type</option>
|
|
|
|
<option value={SortType.New}>New</option>
|
|
|
|
<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>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
overview() {
|
2019-04-15 23:12:06 +00:00
|
|
|
let combined: Array<{type_: string, data: Comment | Post}> = [];
|
|
|
|
let comments = this.state.comments.map(e => {return {type_: "comments", data: e}});
|
|
|
|
let posts = this.state.posts.map(e => {return {type_: "posts", data: e}});
|
|
|
|
|
|
|
|
combined.push(...comments);
|
|
|
|
combined.push(...posts);
|
2019-04-08 05:19:02 +00:00
|
|
|
|
|
|
|
// Sort it
|
|
|
|
if (this.state.sort == SortType.New) {
|
2019-04-15 23:12:06 +00:00
|
|
|
combined.sort((a, b) => b.data.published.localeCompare(a.data.published));
|
2019-04-08 05:19:02 +00:00
|
|
|
} else {
|
2019-04-15 23:12:06 +00:00
|
|
|
combined.sort((a, b) => b.data.score - a.data.score);
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{combined.map(i =>
|
|
|
|
<div>
|
2019-04-15 23:12:06 +00:00
|
|
|
{i.type_ == "posts"
|
|
|
|
? <PostListing post={i.data as Post} showCommunity viewOnly />
|
|
|
|
: <CommentNodes nodes={[{comment: i.data as Comment}]} noIndent viewOnly />
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
comments() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.state.comments.map(comment =>
|
|
|
|
<CommentNodes nodes={[{comment: comment}]} noIndent viewOnly />
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
posts() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.state.posts.map(post =>
|
|
|
|
<PostListing post={post} showCommunity viewOnly />
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
userInfo() {
|
|
|
|
let user = this.state.user;
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h4>{user.name}</h4>
|
|
|
|
<div>Joined <MomentTime data={user} /></div>
|
|
|
|
<table class="table table-bordered table-sm mt-2">
|
|
|
|
<tr>
|
|
|
|
<td>{user.post_score} points</td>
|
|
|
|
<td>{user.number_of_posts} posts</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{user.comment_score} points</td>
|
|
|
|
<td>{user.number_of_comments} comments</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
moderates() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.state.moderates.length > 0 &&
|
|
|
|
<div>
|
|
|
|
<h4>Moderates</h4>
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{this.state.moderates.map(community =>
|
|
|
|
<li><Link to={`/community/${community.community_id}`}>{community.community_name}</Link></li>
|
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
follows() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.state.follows.length > 0 &&
|
|
|
|
<div>
|
|
|
|
<hr />
|
|
|
|
<h4>Subscribed</h4>
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{this.state.follows.map(community =>
|
|
|
|
<li><Link to={`/community/${community.community_id}`}>{community.community_name}</Link></li>
|
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
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: User) {
|
|
|
|
i.state.page++;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
prevPage(i: User) {
|
|
|
|
i.state.page--;
|
2019-04-08 05:19:02 +00:00
|
|
|
i.setState(i.state);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.refetch();
|
|
|
|
}
|
2019-04-08 05:19:02 +00:00
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
refetch() {
|
2019-04-08 05:19:02 +00:00
|
|
|
let form: GetUserDetailsForm = {
|
2019-04-17 18:30:13 +00:00
|
|
|
user_id: this.state.user_id,
|
|
|
|
sort: SortType[this.state.sort],
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
2019-04-08 05:19:02 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.getUserDetails(form);
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
handleSortChange(i: User, event: any) {
|
|
|
|
i.state.sort = Number(event.target.value);
|
|
|
|
i.state.page = 1;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
handleViewChange(i: User, event: any) {
|
|
|
|
i.state.view = Number(event.target.value);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.state.page = 1;
|
2019-04-08 05:19:02 +00:00
|
|
|
i.setState(i.state);
|
2019-04-17 18:30:13 +00:00
|
|
|
i.refetch();
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
parseMessage(msg: any) {
|
|
|
|
console.log(msg);
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
|
|
|
alert(msg.error);
|
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.GetUserDetails) {
|
|
|
|
let res: UserDetailsResponse = msg;
|
|
|
|
this.state.user = res.user;
|
|
|
|
this.state.comments = res.comments;
|
|
|
|
this.state.follows = res.follows;
|
|
|
|
this.state.moderates = res.moderates;
|
|
|
|
this.state.posts = res.posts;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|