mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 12:35:02 +00:00
382 lines
11 KiB
TypeScript
382 lines
11 KiB
TypeScript
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, CommentResponse } from '../interfaces';
|
|
import { WebSocketService } from '../services';
|
|
import { msgOp, fetchLimit, routeSortTypeToEnum, capitalizeFirstLetter } from '../utils';
|
|
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;
|
|
user_id: number;
|
|
username: string;
|
|
follows: Array<CommunityUser>;
|
|
moderates: Array<CommunityUser>;
|
|
comments: Array<Comment>;
|
|
posts: Array<Post>;
|
|
saved?: Array<Post>;
|
|
view: View;
|
|
sort: SortType;
|
|
page: number;
|
|
loading: boolean;
|
|
}
|
|
|
|
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,
|
|
},
|
|
user_id: null,
|
|
username: null,
|
|
follows: [],
|
|
moderates: [],
|
|
comments: [],
|
|
posts: [],
|
|
loading: true,
|
|
view: this.getViewFromProps(this.props),
|
|
sort: this.getSortTypeFromProps(this.props),
|
|
page: this.getPageFromProps(this.props),
|
|
}
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.state.user_id = Number(this.props.match.params.id);
|
|
this.state.username = this.props.match.params.username;
|
|
|
|
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')
|
|
);
|
|
|
|
this.refetch();
|
|
}
|
|
|
|
getViewFromProps(props: any): View {
|
|
return (props.match.params.view) ?
|
|
View[capitalizeFirstLetter(props.match.params.view)] :
|
|
View.Overview;
|
|
}
|
|
|
|
getSortTypeFromProps(props: any): SortType {
|
|
return (props.match.params.sort) ?
|
|
routeSortTypeToEnum(props.match.params.sort) :
|
|
SortType.New;
|
|
}
|
|
|
|
getPageFromProps(props: any): number {
|
|
return (props.match.params.page) ? Number(props.match.params.page) : 1;
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.subscription.unsubscribe();
|
|
}
|
|
|
|
// Necessary for back button for some reason
|
|
componentWillReceiveProps(nextProps: any) {
|
|
if (nextProps.history.action == 'POP') {
|
|
this.state = this.emptyState;
|
|
this.state.view = this.getViewFromProps(nextProps);
|
|
this.state.sort = this.getSortTypeFromProps(nextProps);
|
|
this.state.page = this.getPageFromProps(nextProps);
|
|
this.refetch();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div class="container">
|
|
{this.state.loading ?
|
|
<h5><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h5> :
|
|
<div class="row">
|
|
<div class="col-12 col-md-9">
|
|
<h5>/u/{this.state.user.name}</h5>
|
|
{this.selects()}
|
|
{this.state.view == View.Overview &&
|
|
this.overview()
|
|
}
|
|
{this.state.view == View.Comments &&
|
|
this.comments()
|
|
}
|
|
{this.state.view == View.Posts &&
|
|
this.posts()
|
|
}
|
|
{this.state.view == View.Saved &&
|
|
this.overview()
|
|
}
|
|
{this.paginator()}
|
|
</div>
|
|
<div class="col-12 col-md-3">
|
|
{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 custom-select-sm 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 custom-select-sm 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() {
|
|
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);
|
|
|
|
// Sort it
|
|
if (this.state.sort == SortType.New) {
|
|
combined.sort((a, b) => b.data.published.localeCompare(a.data.published));
|
|
} else {
|
|
combined.sort((a, b) => b.data.score - a.data.score);
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
{combined.map(i =>
|
|
<div>
|
|
{i.type_ == "posts"
|
|
? <PostListing post={i.data as Post} showCommunity viewOnly />
|
|
: <CommentNodes nodes={[{comment: i.data as Comment}]} noIndent />
|
|
}
|
|
</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>
|
|
<h5>{user.name}</h5>
|
|
<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>
|
|
<h5>Moderates</h5>
|
|
<ul class="list-unstyled">
|
|
{this.state.moderates.map(community =>
|
|
<li><Link to={`/c/${community.community_name}`}>{community.community_name}</Link></li>
|
|
)}
|
|
</ul>
|
|
</div>
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
follows() {
|
|
return (
|
|
<div>
|
|
{this.state.follows.length > 0 &&
|
|
<div>
|
|
<hr />
|
|
<h5>Subscribed</h5>
|
|
<ul class="list-unstyled">
|
|
{this.state.follows.map(community =>
|
|
<li><Link to={`/c/${community.community_name}`}>{community.community_name}</Link></li>
|
|
)}
|
|
</ul>
|
|
</div>
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
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>
|
|
);
|
|
}
|
|
|
|
updateUrl() {
|
|
let viewStr = View[this.state.view].toLowerCase();
|
|
let sortStr = SortType[this.state.sort].toLowerCase();
|
|
this.props.history.push(`/u/${this.state.user.name}/view/${viewStr}/sort/${sortStr}/page/${this.state.page}`);
|
|
}
|
|
|
|
nextPage(i: User) {
|
|
i.state.page++;
|
|
i.setState(i.state);
|
|
i.updateUrl();
|
|
i.refetch();
|
|
}
|
|
|
|
prevPage(i: User) {
|
|
i.state.page--;
|
|
i.setState(i.state);
|
|
i.updateUrl();
|
|
i.refetch();
|
|
}
|
|
|
|
refetch() {
|
|
let form: GetUserDetailsForm = {
|
|
user_id: this.state.user_id,
|
|
username: this.state.username,
|
|
sort: SortType[this.state.sort],
|
|
saved_only: this.state.view == View.Saved,
|
|
page: this.state.page,
|
|
limit: fetchLimit,
|
|
};
|
|
WebSocketService.Instance.getUserDetails(form);
|
|
}
|
|
|
|
handleSortChange(i: User, event: any) {
|
|
i.state.sort = Number(event.target.value);
|
|
i.state.page = 1;
|
|
i.setState(i.state);
|
|
i.updateUrl();
|
|
i.refetch();
|
|
}
|
|
|
|
handleViewChange(i: User, event: any) {
|
|
i.state.view = Number(event.target.value);
|
|
i.state.page = 1;
|
|
i.setState(i.state);
|
|
i.updateUrl();
|
|
i.refetch();
|
|
}
|
|
|
|
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.state.loading = false;
|
|
document.title = `/u/${this.state.user.name} - Lemmy`;
|
|
window.scrollTo(0,0);
|
|
this.setState(this.state);
|
|
} else if (op == UserOperation.EditComment) {
|
|
let res: CommentResponse = msg;
|
|
|
|
let found = this.state.comments.find(c => c.id == res.comment.id);
|
|
found.content = res.comment.content;
|
|
found.updated = res.comment.updated;
|
|
found.removed = res.comment.removed;
|
|
found.deleted = res.comment.deleted;
|
|
found.upvotes = res.comment.upvotes;
|
|
found.downvotes = res.comment.downvotes;
|
|
found.score = res.comment.score;
|
|
|
|
this.setState(this.state);
|
|
} else if (op == UserOperation.CreateComment) {
|
|
// let res: CommentResponse = msg;
|
|
alert('Reply sent');
|
|
// this.state.comments.unshift(res.comment); // TODO do this right
|
|
// this.setState(this.state);
|
|
} else if (op == UserOperation.SaveComment) {
|
|
let res: CommentResponse = msg;
|
|
let found = this.state.comments.find(c => c.id == res.comment.id);
|
|
found.saved = res.comment.saved;
|
|
this.setState(this.state);
|
|
} else if (op == UserOperation.CreateCommentLike) {
|
|
let res: CommentResponse = msg;
|
|
let found: Comment = this.state.comments.find(c => c.id === res.comment.id);
|
|
found.score = res.comment.score;
|
|
found.upvotes = res.comment.upvotes;
|
|
found.downvotes = res.comment.downvotes;
|
|
if (res.comment.my_vote !== null)
|
|
found.my_vote = res.comment.my_vote;
|
|
this.setState(this.state);
|
|
}
|
|
}
|
|
}
|
|
|