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'; import { msgOp } 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; follows: Array; moderates: Array; comments: Array; posts: Array; saved?: Array; view: View; sort: SortType; } export class User extends Component { 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, }, follows: [], moderates: [], comments: [], posts: [], view: View.Overview, sort: SortType.New } constructor(props: any, context: any) { super(props, context); this.state = this.emptyState; let userId = Number(this.props.match.params.id); 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 form: GetUserDetailsForm = { user_id: userId, sort: SortType[this.state.sort], limit: 999 }; WebSocketService.Instance.getUserDetails(form); } componentWillUnmount() { this.subscription.unsubscribe(); } render() { return (

/u/{this.state.user.name}

{this.selects()} {this.state.view == View.Overview && this.overview() } {this.state.view == View.Comments && this.comments() } {this.state.view == View.Posts && this.posts() }
{this.userInfo()} {this.moderates()} {this.follows()}
) } selects() { return (
) } overview() { let combined: Array = []; combined.push(...this.state.comments); combined.push(...this.state.posts); // Sort it if (this.state.sort == SortType.New) { combined.sort((a, b) => b.published.localeCompare(a.published)); } else { combined.sort((a, b) => b.score - a.score); } return (
{combined.map(i =>
{i.community_id ? : }
) }
) } comments() { return (
{this.state.comments.map(comment => )}
); } posts() { return (
{this.state.posts.map(post => )}
); } userInfo() { let user = this.state.user; return (

{user.name}

Joined
{user.post_score} points {user.number_of_posts} posts
{user.comment_score} points {user.number_of_comments} comments

) } moderates() { return (
{this.state.moderates.length > 0 &&

Moderates

    {this.state.moderates.map(community =>
  • {community.community_name}
  • )}
}
) } follows() { return (
{this.state.follows.length > 0 &&

Subscribed

    {this.state.follows.map(community =>
  • {community.community_name}
  • )}
}
) } handleSortChange(i: User, event: any) { i.state.sort = Number(event.target.value); i.setState(i.state); let form: GetUserDetailsForm = { user_id: i.state.user.id, sort: SortType[i.state.sort], limit: 999 }; WebSocketService.Instance.getUserDetails(form); } handleViewChange(i: User, event: any) { i.state.view = Number(event.target.value); i.setState(i.state); } 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); } } }