mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 09:24:00 +00:00
ui.components: split user component up to fix duplicate requests
Replace componentWillReceiveProps with getDerivedState and pass state as props to new component
This commit is contained in:
parent
d71897620c
commit
f1d01f4fa0
3 changed files with 385 additions and 261 deletions
270
ui/src/components/user-details.tsx
vendored
Normal file
270
ui/src/components/user-details.tsx
vendored
Normal file
|
@ -0,0 +1,270 @@
|
||||||
|
import { Component } from 'inferno';
|
||||||
|
import { WebSocketService, UserService } from '../services';
|
||||||
|
import { Subscription } from 'rxjs';
|
||||||
|
import { retryWhen, delay, take, last } from 'rxjs/operators';
|
||||||
|
import { i18n } from '../i18next';
|
||||||
|
import {
|
||||||
|
UserOperation,
|
||||||
|
Post,
|
||||||
|
Comment,
|
||||||
|
CommunityUser,
|
||||||
|
SortType,
|
||||||
|
UserDetailsResponse,
|
||||||
|
UserView,
|
||||||
|
WebSocketJsonResponse,
|
||||||
|
UserDetailsView,
|
||||||
|
CommentResponse,
|
||||||
|
BanUserResponse,
|
||||||
|
PostResponse,
|
||||||
|
AddAdminResponse,
|
||||||
|
} from '../interfaces';
|
||||||
|
import {
|
||||||
|
wsJsonToRes,
|
||||||
|
toast,
|
||||||
|
commentsToFlatNodes,
|
||||||
|
setupTippy,
|
||||||
|
editCommentRes,
|
||||||
|
saveCommentRes,
|
||||||
|
createCommentLikeRes,
|
||||||
|
createPostLikeFindRes,
|
||||||
|
} from '../utils';
|
||||||
|
import { PostListing } from './post-listing';
|
||||||
|
import { CommentNodes } from './comment-nodes';
|
||||||
|
|
||||||
|
interface UserDetailsProps {
|
||||||
|
username?: string;
|
||||||
|
user_id?: number;
|
||||||
|
page: number;
|
||||||
|
limit: number;
|
||||||
|
sort: string;
|
||||||
|
enableDownvotes: boolean;
|
||||||
|
enableNsfw: boolean;
|
||||||
|
view: UserDetailsView;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface UserDetailsState {
|
||||||
|
follows: Array<CommunityUser>;
|
||||||
|
moderates: Array<CommunityUser>;
|
||||||
|
comments: Array<Comment>;
|
||||||
|
posts: Array<Post>;
|
||||||
|
saved?: Array<Post>;
|
||||||
|
admins: Array<UserView>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class UserDetails extends Component<UserDetailsProps, UserDetailsState> {
|
||||||
|
private subscription: Subscription;
|
||||||
|
constructor(props: any, context: any) {
|
||||||
|
super(props, context);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
follows: [],
|
||||||
|
moderates: [],
|
||||||
|
comments: [],
|
||||||
|
posts: [],
|
||||||
|
saved: [],
|
||||||
|
admins: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
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')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount() {
|
||||||
|
this.subscription.unsubscribe();
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
this.fetchUserData();
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidUpdate(lastProps: UserDetailsProps) {
|
||||||
|
for (const key of Object.keys(lastProps)) {
|
||||||
|
if (lastProps[key] !== this.props[key]) {
|
||||||
|
this.fetchUserData();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setupTippy();
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchUserData() {
|
||||||
|
WebSocketService.Instance.getUserDetails({
|
||||||
|
user_id: this.props.user_id,
|
||||||
|
username: this.props.username,
|
||||||
|
sort: this.props.sort,
|
||||||
|
saved_only: this.props.view === UserDetailsView.Saved,
|
||||||
|
page: this.props.page,
|
||||||
|
limit: this.props.limit,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return this.viewSelector(this.props.view);
|
||||||
|
}
|
||||||
|
|
||||||
|
viewSelector(view: UserDetailsView) {
|
||||||
|
if (view === UserDetailsView.Overview || view === UserDetailsView.Saved) {
|
||||||
|
return this.overview();
|
||||||
|
}
|
||||||
|
if (view === UserDetailsView.Comments) {
|
||||||
|
return this.comments();
|
||||||
|
}
|
||||||
|
if (view === UserDetailsView.Posts) {
|
||||||
|
return this.posts();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
overview() {
|
||||||
|
const comments = this.state.comments.map((c: Comment) => {
|
||||||
|
return { type: 'comments', data: c };
|
||||||
|
});
|
||||||
|
const posts = this.state.posts.map((p: Post) => {
|
||||||
|
return { type: 'posts', data: p };
|
||||||
|
});
|
||||||
|
|
||||||
|
const combined: Array<{ type: string; data: Comment | Post }> = [
|
||||||
|
...comments,
|
||||||
|
...posts,
|
||||||
|
];
|
||||||
|
|
||||||
|
// Sort it
|
||||||
|
if (SortType[this.props.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}
|
||||||
|
admins={this.state.admins}
|
||||||
|
showCommunity
|
||||||
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
|
enableNsfw={this.props.enableNsfw}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<CommentNodes
|
||||||
|
nodes={[{ comment: i.data as Comment }]}
|
||||||
|
admins={this.state.admins}
|
||||||
|
noIndent
|
||||||
|
showContext
|
||||||
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
comments() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<CommentNodes
|
||||||
|
nodes={commentsToFlatNodes(this.state.comments)}
|
||||||
|
admins={this.state.admins}
|
||||||
|
noIndent
|
||||||
|
showContext
|
||||||
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
posts() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{this.state.posts.map(post => (
|
||||||
|
<PostListing
|
||||||
|
post={post}
|
||||||
|
admins={this.state.admins}
|
||||||
|
showCommunity
|
||||||
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
|
enableNsfw={this.props.enableNsfw}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
parseMessage(msg: WebSocketJsonResponse) {
|
||||||
|
const res = wsJsonToRes(msg);
|
||||||
|
|
||||||
|
if (msg.error) {
|
||||||
|
toast(i18n.t(msg.error), 'danger');
|
||||||
|
if (msg.error == 'couldnt_find_that_username_or_email') {
|
||||||
|
this.context.router.history.push('/');
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
} else if (msg.reconnect) {
|
||||||
|
this.fetchUserData();
|
||||||
|
} else if (res.op == UserOperation.GetUserDetails) {
|
||||||
|
const data = res.data as UserDetailsResponse;
|
||||||
|
this.setState({
|
||||||
|
comments: data.comments,
|
||||||
|
follows: data.follows,
|
||||||
|
moderates: data.moderates,
|
||||||
|
posts: data.posts,
|
||||||
|
admins: data.admins,
|
||||||
|
});
|
||||||
|
} else if (res.op == UserOperation.CreateCommentLike) {
|
||||||
|
const data = res.data as CommentResponse;
|
||||||
|
createCommentLikeRes(data, this.state.comments);
|
||||||
|
this.setState({
|
||||||
|
comments: this.state.comments,
|
||||||
|
});
|
||||||
|
} else if (res.op == UserOperation.EditComment) {
|
||||||
|
const data = res.data as CommentResponse;
|
||||||
|
editCommentRes(data, this.state.comments);
|
||||||
|
this.setState({
|
||||||
|
comments: this.state.comments,
|
||||||
|
});
|
||||||
|
} else if (res.op == UserOperation.CreateComment) {
|
||||||
|
const data = res.data as CommentResponse;
|
||||||
|
if (
|
||||||
|
UserService.Instance.user &&
|
||||||
|
data.comment.creator_id == UserService.Instance.user.id
|
||||||
|
) {
|
||||||
|
toast(i18n.t('reply_sent'));
|
||||||
|
}
|
||||||
|
} else if (res.op == UserOperation.SaveComment) {
|
||||||
|
const data = res.data as CommentResponse;
|
||||||
|
saveCommentRes(data, this.state.comments);
|
||||||
|
this.setState({
|
||||||
|
comments: this.state.comments,
|
||||||
|
});
|
||||||
|
} else if (res.op == UserOperation.CreatePostLike) {
|
||||||
|
const data = res.data as PostResponse;
|
||||||
|
createPostLikeFindRes(data, this.state.posts);
|
||||||
|
this.setState({
|
||||||
|
posts: this.state.posts,
|
||||||
|
});
|
||||||
|
} else if (res.op == UserOperation.BanUser) {
|
||||||
|
const data = res.data as BanUserResponse;
|
||||||
|
this.state.comments
|
||||||
|
.filter(c => c.creator_id == data.user.id)
|
||||||
|
.forEach(c => (c.banned = data.banned));
|
||||||
|
this.state.posts
|
||||||
|
.filter(c => c.creator_id == data.user.id)
|
||||||
|
.forEach(c => (c.banned = data.banned));
|
||||||
|
this.setState({
|
||||||
|
posts: this.state.posts,
|
||||||
|
comments: this.state.comments,
|
||||||
|
});
|
||||||
|
} else if (res.op == UserOperation.AddAdmin) {
|
||||||
|
const data = res.data as AddAdminResponse;
|
||||||
|
this.setState({
|
||||||
|
admins: data.admins,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
325
ui/src/components/user.tsx
vendored
325
ui/src/components/user.tsx
vendored
|
@ -4,24 +4,18 @@ import { Subscription } from 'rxjs';
|
||||||
import { retryWhen, delay, take } from 'rxjs/operators';
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
||||||
import {
|
import {
|
||||||
UserOperation,
|
UserOperation,
|
||||||
Post,
|
|
||||||
Comment,
|
|
||||||
CommunityUser,
|
CommunityUser,
|
||||||
GetUserDetailsForm,
|
|
||||||
SortType,
|
SortType,
|
||||||
ListingType,
|
ListingType,
|
||||||
UserDetailsResponse,
|
|
||||||
UserView,
|
UserView,
|
||||||
CommentResponse,
|
|
||||||
UserSettingsForm,
|
UserSettingsForm,
|
||||||
LoginResponse,
|
LoginResponse,
|
||||||
BanUserResponse,
|
|
||||||
AddAdminResponse,
|
|
||||||
DeleteAccountForm,
|
DeleteAccountForm,
|
||||||
PostResponse,
|
|
||||||
WebSocketJsonResponse,
|
WebSocketJsonResponse,
|
||||||
GetSiteResponse,
|
GetSiteResponse,
|
||||||
Site,
|
Site,
|
||||||
|
UserDetailsView,
|
||||||
|
UserDetailsResponse,
|
||||||
} from '../interfaces';
|
} from '../interfaces';
|
||||||
import { WebSocketService, UserService } from '../services';
|
import { WebSocketService, UserService } from '../services';
|
||||||
import {
|
import {
|
||||||
|
@ -34,28 +28,15 @@ import {
|
||||||
languages,
|
languages,
|
||||||
showAvatars,
|
showAvatars,
|
||||||
toast,
|
toast,
|
||||||
editCommentRes,
|
|
||||||
saveCommentRes,
|
|
||||||
createCommentLikeRes,
|
|
||||||
createPostLikeFindRes,
|
|
||||||
commentsToFlatNodes,
|
|
||||||
setupTippy,
|
setupTippy,
|
||||||
} from '../utils';
|
} from '../utils';
|
||||||
import { PostListing } from './post-listing';
|
|
||||||
import { UserListing } from './user-listing';
|
import { UserListing } from './user-listing';
|
||||||
import { SortSelect } from './sort-select';
|
import { SortSelect } from './sort-select';
|
||||||
import { ListingTypeSelect } from './listing-type-select';
|
import { ListingTypeSelect } from './listing-type-select';
|
||||||
import { CommentNodes } from './comment-nodes';
|
|
||||||
import { MomentTime } from './moment-time';
|
import { MomentTime } from './moment-time';
|
||||||
import { i18n } from '../i18next';
|
import { i18n } from '../i18next';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
|
import { UserDetails } from './user-details';
|
||||||
enum View {
|
|
||||||
Overview,
|
|
||||||
Comments,
|
|
||||||
Posts,
|
|
||||||
Saved,
|
|
||||||
}
|
|
||||||
|
|
||||||
interface UserState {
|
interface UserState {
|
||||||
user: UserView;
|
user: UserView;
|
||||||
|
@ -63,11 +44,7 @@ interface UserState {
|
||||||
username: string;
|
username: string;
|
||||||
follows: Array<CommunityUser>;
|
follows: Array<CommunityUser>;
|
||||||
moderates: Array<CommunityUser>;
|
moderates: Array<CommunityUser>;
|
||||||
comments: Array<Comment>;
|
view: UserDetailsView;
|
||||||
posts: Array<Post>;
|
|
||||||
saved?: Array<Post>;
|
|
||||||
admins: Array<UserView>;
|
|
||||||
view: View;
|
|
||||||
sort: SortType;
|
sort: SortType;
|
||||||
page: number;
|
page: number;
|
||||||
loading: boolean;
|
loading: boolean;
|
||||||
|
@ -102,14 +79,11 @@ export class User extends Component<any, UserState> {
|
||||||
username: null,
|
username: null,
|
||||||
follows: [],
|
follows: [],
|
||||||
moderates: [],
|
moderates: [],
|
||||||
comments: [],
|
loading: false,
|
||||||
posts: [],
|
|
||||||
admins: [],
|
|
||||||
loading: true,
|
|
||||||
avatarLoading: false,
|
avatarLoading: false,
|
||||||
view: this.getViewFromProps(this.props),
|
view: User.getViewFromProps(this.props.match.view),
|
||||||
sort: this.getSortTypeFromProps(this.props),
|
sort: User.getSortTypeFromProps(this.props.match.sort),
|
||||||
page: this.getPageFromProps(this.props),
|
page: User.getPageFromProps(this.props.match.page),
|
||||||
userSettingsForm: {
|
userSettingsForm: {
|
||||||
show_nsfw: null,
|
show_nsfw: null,
|
||||||
theme: null,
|
theme: null,
|
||||||
|
@ -145,7 +119,7 @@ export class User extends Component<any, UserState> {
|
||||||
constructor(props: any, context: any) {
|
constructor(props: any, context: any) {
|
||||||
super(props, context);
|
super(props, context);
|
||||||
|
|
||||||
this.state = this.emptyState;
|
this.state = Object.assign({}, this.emptyState);
|
||||||
this.handleSortChange = this.handleSortChange.bind(this);
|
this.handleSortChange = this.handleSortChange.bind(this);
|
||||||
this.handleUserSettingsSortTypeChange = this.handleUserSettingsSortTypeChange.bind(
|
this.handleUserSettingsSortTypeChange = this.handleUserSettingsSortTypeChange.bind(
|
||||||
this
|
this
|
||||||
|
@ -154,7 +128,7 @@ export class User extends Component<any, UserState> {
|
||||||
this
|
this
|
||||||
);
|
);
|
||||||
|
|
||||||
this.state.user_id = Number(this.props.match.params.id);
|
this.state.user_id = Number(this.props.match.params.id) || null;
|
||||||
this.state.username = this.props.match.params.username;
|
this.state.username = this.props.match.params.username;
|
||||||
|
|
||||||
this.subscription = WebSocketService.Instance.subject
|
this.subscription = WebSocketService.Instance.subject
|
||||||
|
@ -165,7 +139,6 @@ export class User extends Component<any, UserState> {
|
||||||
() => console.log('complete')
|
() => console.log('complete')
|
||||||
);
|
);
|
||||||
|
|
||||||
this.refetch();
|
|
||||||
WebSocketService.Instance.getSite();
|
WebSocketService.Instance.getSite();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -176,38 +149,32 @@ export class User extends Component<any, UserState> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
getViewFromProps(props: any): View {
|
static getViewFromProps(view: any): UserDetailsView {
|
||||||
return props.match.params.view
|
return view
|
||||||
? View[capitalizeFirstLetter(props.match.params.view)]
|
? UserDetailsView[capitalizeFirstLetter(view)]
|
||||||
: View.Overview;
|
: UserDetailsView.Overview;
|
||||||
}
|
}
|
||||||
|
|
||||||
getSortTypeFromProps(props: any): SortType {
|
static getSortTypeFromProps(sort: any): SortType {
|
||||||
return props.match.params.sort
|
return sort ? routeSortTypeToEnum(sort) : SortType.New;
|
||||||
? routeSortTypeToEnum(props.match.params.sort)
|
|
||||||
: SortType.New;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getPageFromProps(props: any): number {
|
static getPageFromProps(page: any): number {
|
||||||
return props.match.params.page ? Number(props.match.params.page) : 1;
|
return page ? Number(page) : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
this.subscription.unsubscribe();
|
this.subscription.unsubscribe();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Necessary for back button for some reason
|
static getDerivedStateFromProps(props) {
|
||||||
componentWillReceiveProps(nextProps: any) {
|
return {
|
||||||
if (
|
view: this.getViewFromProps(props.match.params.view),
|
||||||
nextProps.history.action == 'POP' ||
|
sort: this.getSortTypeFromProps(props.match.params.sort),
|
||||||
nextProps.history.action == 'PUSH'
|
page: this.getPageFromProps(props.match.params.page),
|
||||||
) {
|
user_id: Number(props.match.params.id) || null,
|
||||||
this.state.view = this.getViewFromProps(nextProps);
|
username: props.match.params.username,
|
||||||
this.state.sort = this.getSortTypeFromProps(nextProps);
|
};
|
||||||
this.state.page = this.getPageFromProps(nextProps);
|
|
||||||
this.setState(this.state);
|
|
||||||
this.refetch();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(lastProps: any, _lastState: UserState, _snapshot: any) {
|
componentDidUpdate(lastProps: any, _lastState: UserState, _snapshot: any) {
|
||||||
|
@ -219,6 +186,8 @@ export class User extends Component<any, UserState> {
|
||||||
// Couldnt get a refresh working. This does for now.
|
// Couldnt get a refresh working. This does for now.
|
||||||
location.reload();
|
location.reload();
|
||||||
}
|
}
|
||||||
|
document.title = `/u/${this.state.username} - ${this.state.site.name}`;
|
||||||
|
setupTippy();
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
@ -242,13 +211,20 @@ export class User extends Component<any, UserState> {
|
||||||
class="rounded-circle mr-2"
|
class="rounded-circle mr-2"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
<span>/u/{this.state.user.name}</span>
|
<span>/u/{this.state.username}</span>
|
||||||
</h5>
|
</h5>
|
||||||
{this.selects()}
|
{this.selects()}
|
||||||
{this.state.view == View.Overview && this.overview()}
|
<UserDetails
|
||||||
{this.state.view == View.Comments && this.comments()}
|
user_id={this.state.user_id}
|
||||||
{this.state.view == View.Posts && this.posts()}
|
username={this.state.username}
|
||||||
{this.state.view == View.Saved && this.overview()}
|
sort={SortType[this.state.sort]}
|
||||||
|
page={this.state.page}
|
||||||
|
limit={fetchLimit}
|
||||||
|
enableDownvotes={this.state.site.enable_downvotes}
|
||||||
|
enableNsfw={this.state.site.enable_nsfw}
|
||||||
|
view={this.state.view}
|
||||||
|
key={this.state.user_id || this.state.username}
|
||||||
|
/>
|
||||||
{this.paginator()}
|
{this.paginator()}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-4">
|
<div class="col-12 col-md-4">
|
||||||
|
@ -268,52 +244,52 @@ export class User extends Component<any, UserState> {
|
||||||
<div class="btn-group btn-group-toggle">
|
<div class="btn-group btn-group-toggle">
|
||||||
<label
|
<label
|
||||||
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
||||||
${this.state.view == View.Overview && 'active'}
|
${this.state.view == UserDetailsView.Overview && 'active'}
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
value={View.Overview}
|
value={UserDetailsView.Overview}
|
||||||
checked={this.state.view == View.Overview}
|
checked={this.state.view === UserDetailsView.Overview}
|
||||||
onChange={linkEvent(this, this.handleViewChange)}
|
onChange={linkEvent(this, this.handleViewChange)}
|
||||||
/>
|
/>
|
||||||
{i18n.t('overview')}
|
{i18n.t('overview')}
|
||||||
</label>
|
</label>
|
||||||
<label
|
<label
|
||||||
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
||||||
${this.state.view == View.Comments && 'active'}
|
${this.state.view == UserDetailsView.Comments && 'active'}
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
value={View.Comments}
|
value={UserDetailsView.Comments}
|
||||||
checked={this.state.view == View.Comments}
|
checked={this.state.view == UserDetailsView.Comments}
|
||||||
onChange={linkEvent(this, this.handleViewChange)}
|
onChange={linkEvent(this, this.handleViewChange)}
|
||||||
/>
|
/>
|
||||||
{i18n.t('comments')}
|
{i18n.t('comments')}
|
||||||
</label>
|
</label>
|
||||||
<label
|
<label
|
||||||
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
||||||
${this.state.view == View.Posts && 'active'}
|
${this.state.view == UserDetailsView.Posts && 'active'}
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
value={View.Posts}
|
value={UserDetailsView.Posts}
|
||||||
checked={this.state.view == View.Posts}
|
checked={this.state.view == UserDetailsView.Posts}
|
||||||
onChange={linkEvent(this, this.handleViewChange)}
|
onChange={linkEvent(this, this.handleViewChange)}
|
||||||
/>
|
/>
|
||||||
{i18n.t('posts')}
|
{i18n.t('posts')}
|
||||||
</label>
|
</label>
|
||||||
<label
|
<label
|
||||||
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
className={`btn btn-sm btn-secondary pointer btn-outline-light
|
||||||
${this.state.view == View.Saved && 'active'}
|
${this.state.view == UserDetailsView.Saved && 'active'}
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
value={View.Saved}
|
value={UserDetailsView.Saved}
|
||||||
checked={this.state.view == View.Saved}
|
checked={this.state.view == UserDetailsView.Saved}
|
||||||
onChange={linkEvent(this, this.handleViewChange)}
|
onChange={linkEvent(this, this.handleViewChange)}
|
||||||
/>
|
/>
|
||||||
{i18n.t('saved')}
|
{i18n.t('saved')}
|
||||||
|
@ -347,84 +323,6 @@ export class User extends Component<any, UserState> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
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}
|
|
||||||
admins={this.state.admins}
|
|
||||||
showCommunity
|
|
||||||
enableDownvotes={this.state.site.enable_downvotes}
|
|
||||||
enableNsfw={this.state.site.enable_nsfw}
|
|
||||||
/>
|
|
||||||
) : (
|
|
||||||
<CommentNodes
|
|
||||||
nodes={[{ comment: i.data as Comment }]}
|
|
||||||
admins={this.state.admins}
|
|
||||||
noIndent
|
|
||||||
showCommunity
|
|
||||||
showContext
|
|
||||||
enableDownvotes={this.state.site.enable_downvotes}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
comments() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<CommentNodes
|
|
||||||
nodes={commentsToFlatNodes(this.state.comments)}
|
|
||||||
admins={this.state.admins}
|
|
||||||
noIndent
|
|
||||||
showCommunity
|
|
||||||
showContext
|
|
||||||
enableDownvotes={this.state.site.enable_downvotes}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
posts() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
{this.state.posts.map(post => (
|
|
||||||
<PostListing
|
|
||||||
post={post}
|
|
||||||
admins={this.state.admins}
|
|
||||||
showCommunity
|
|
||||||
enableDownvotes={this.state.site.enable_downvotes}
|
|
||||||
enableNsfw={this.state.site.enable_nsfw}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
userInfo() {
|
userInfo() {
|
||||||
let user = this.state.user;
|
let user = this.state.user;
|
||||||
return (
|
return (
|
||||||
|
@ -920,58 +818,43 @@ export class User extends Component<any, UserState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
updateUrl() {
|
updateUrl() {
|
||||||
let viewStr = View[this.state.view].toLowerCase();
|
let viewStr = UserDetailsView[this.state.view].toLowerCase();
|
||||||
let sortStr = SortType[this.state.sort].toLowerCase();
|
let sortStr = SortType[this.state.sort].toLowerCase();
|
||||||
this.props.history.push(
|
this.props.history.push(
|
||||||
`/u/${this.state.user.name}/view/${viewStr}/sort/${sortStr}/page/${this.state.page}`
|
`/u/${this.state.username}/view/${viewStr}/sort/${sortStr}/page/${this.state.page}`
|
||||||
);
|
);
|
||||||
|
this.setState(this.state);
|
||||||
}
|
}
|
||||||
|
|
||||||
nextPage(i: User) {
|
nextPage(i: User) {
|
||||||
i.state.page++;
|
i.state.page++;
|
||||||
i.setState(i.state);
|
|
||||||
i.updateUrl();
|
i.updateUrl();
|
||||||
i.refetch();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
prevPage(i: User) {
|
prevPage(i: User) {
|
||||||
i.state.page--;
|
i.state.page--;
|
||||||
i.setState(i.state);
|
|
||||||
i.updateUrl();
|
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(val: SortType) {
|
handleSortChange(val: SortType) {
|
||||||
this.state.sort = val;
|
this.state.sort = val;
|
||||||
this.state.page = 1;
|
this.state.page = 1;
|
||||||
this.setState(this.state);
|
|
||||||
this.updateUrl();
|
this.updateUrl();
|
||||||
this.refetch();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handleViewChange(i: User, event: any) {
|
handleViewChange(i: User, event: any) {
|
||||||
i.state.view = Number(event.target.value);
|
i.state.view = Number(event.target.value);
|
||||||
i.state.page = 1;
|
i.state.page = 1;
|
||||||
i.setState(i.state);
|
|
||||||
i.updateUrl();
|
i.updateUrl();
|
||||||
i.refetch();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handleUserSettingsShowNsfwChange(i: User, event: any) {
|
handleUserSettingsShowNsfwChange(i: User, event: any) {
|
||||||
i.state.userSettingsForm.show_nsfw = event.target.checked;
|
i.setState({
|
||||||
i.setState(i.state);
|
userSettingsForm: {
|
||||||
|
...i.state.userSettingsForm,
|
||||||
|
show_nsfw: event.target.checked,
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
handleUserSettingsShowAvatarsChange(i: User, event: any) {
|
handleUserSettingsShowAvatarsChange(i: User, event: any) {
|
||||||
|
@ -1136,29 +1019,28 @@ export class User extends Component<any, UserState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
parseMessage(msg: WebSocketJsonResponse) {
|
parseMessage(msg: WebSocketJsonResponse) {
|
||||||
console.log(msg);
|
const res = wsJsonToRes(msg);
|
||||||
let res = wsJsonToRes(msg);
|
|
||||||
if (msg.error) {
|
if (msg.error) {
|
||||||
toast(i18n.t(msg.error), 'danger');
|
toast(i18n.t(msg.error), 'danger');
|
||||||
this.state.deleteAccountLoading = false;
|
|
||||||
this.state.avatarLoading = false;
|
|
||||||
this.state.userSettingsLoading = false;
|
|
||||||
if (msg.error == 'couldnt_find_that_username_or_email') {
|
if (msg.error == 'couldnt_find_that_username_or_email') {
|
||||||
this.context.router.history.push('/');
|
this.context.router.history.push('/');
|
||||||
}
|
}
|
||||||
this.setState(this.state);
|
this.setState({
|
||||||
|
deleteAccountLoading: false,
|
||||||
|
avatarLoading: false,
|
||||||
|
userSettingsLoading: false,
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
} else if (msg.reconnect) {
|
|
||||||
this.refetch();
|
|
||||||
} else if (res.op == UserOperation.GetUserDetails) {
|
} else if (res.op == UserOperation.GetUserDetails) {
|
||||||
let data = res.data as UserDetailsResponse;
|
// Since the UserDetails contains posts/comments as well as some general user info we listen here as well
|
||||||
|
// and set the parent state if it is not set or differs
|
||||||
|
const data = res.data as UserDetailsResponse;
|
||||||
|
|
||||||
|
if (this.state.user.id !== data.user.id) {
|
||||||
this.state.user = data.user;
|
this.state.user = data.user;
|
||||||
this.state.comments = data.comments;
|
|
||||||
this.state.follows = data.follows;
|
this.state.follows = data.follows;
|
||||||
this.state.moderates = data.moderates;
|
this.state.moderates = data.moderates;
|
||||||
this.state.posts = data.posts;
|
|
||||||
this.state.admins = data.admins;
|
|
||||||
this.state.loading = false;
|
|
||||||
if (this.isCurrentUser) {
|
if (this.isCurrentUser) {
|
||||||
this.state.userSettingsForm.show_nsfw =
|
this.state.userSettingsForm.show_nsfw =
|
||||||
UserService.Instance.user.show_nsfw;
|
UserService.Instance.user.show_nsfw;
|
||||||
|
@ -1177,61 +1059,26 @@ export class User extends Component<any, UserState> {
|
||||||
UserService.Instance.user.show_avatars;
|
UserService.Instance.user.show_avatars;
|
||||||
this.state.userSettingsForm.matrix_user_id = this.state.user.matrix_user_id;
|
this.state.userSettingsForm.matrix_user_id = this.state.user.matrix_user_id;
|
||||||
}
|
}
|
||||||
document.title = `/u/${this.state.user.name} - ${this.state.site.name}`;
|
|
||||||
window.scrollTo(0, 0);
|
|
||||||
this.setState(this.state);
|
this.setState(this.state);
|
||||||
setupTippy();
|
|
||||||
} else if (res.op == UserOperation.EditComment) {
|
|
||||||
let data = res.data as CommentResponse;
|
|
||||||
editCommentRes(data, this.state.comments);
|
|
||||||
this.setState(this.state);
|
|
||||||
} else if (res.op == UserOperation.CreateComment) {
|
|
||||||
let data = res.data as CommentResponse;
|
|
||||||
if (
|
|
||||||
UserService.Instance.user &&
|
|
||||||
data.comment.creator_id == UserService.Instance.user.id
|
|
||||||
) {
|
|
||||||
toast(i18n.t('reply_sent'));
|
|
||||||
}
|
}
|
||||||
} else if (res.op == UserOperation.SaveComment) {
|
|
||||||
let data = res.data as CommentResponse;
|
|
||||||
saveCommentRes(data, this.state.comments);
|
|
||||||
this.setState(this.state);
|
|
||||||
} else if (res.op == UserOperation.CreateCommentLike) {
|
|
||||||
let data = res.data as CommentResponse;
|
|
||||||
createCommentLikeRes(data, this.state.comments);
|
|
||||||
this.setState(this.state);
|
|
||||||
} else if (res.op == UserOperation.CreatePostLike) {
|
|
||||||
let data = res.data as PostResponse;
|
|
||||||
createPostLikeFindRes(data, this.state.posts);
|
|
||||||
this.setState(this.state);
|
|
||||||
} else if (res.op == UserOperation.BanUser) {
|
|
||||||
let data = res.data as BanUserResponse;
|
|
||||||
this.state.comments
|
|
||||||
.filter(c => c.creator_id == data.user.id)
|
|
||||||
.forEach(c => (c.banned = data.banned));
|
|
||||||
this.state.posts
|
|
||||||
.filter(c => c.creator_id == data.user.id)
|
|
||||||
.forEach(c => (c.banned = data.banned));
|
|
||||||
this.setState(this.state);
|
|
||||||
} else if (res.op == UserOperation.AddAdmin) {
|
|
||||||
let data = res.data as AddAdminResponse;
|
|
||||||
this.state.admins = data.admins;
|
|
||||||
this.setState(this.state);
|
|
||||||
} else if (res.op == UserOperation.SaveUserSettings) {
|
} else if (res.op == UserOperation.SaveUserSettings) {
|
||||||
let data = res.data as LoginResponse;
|
const data = res.data as LoginResponse;
|
||||||
this.state.userSettingsLoading = false;
|
|
||||||
this.setState(this.state);
|
|
||||||
UserService.Instance.login(data);
|
UserService.Instance.login(data);
|
||||||
|
this.setState({
|
||||||
|
userSettingsLoading: false,
|
||||||
|
});
|
||||||
|
window.scrollTo(0, 0);
|
||||||
} else if (res.op == UserOperation.DeleteAccount) {
|
} else if (res.op == UserOperation.DeleteAccount) {
|
||||||
this.state.deleteAccountLoading = false;
|
this.setState({
|
||||||
this.state.deleteAccountShowConfirm = false;
|
deleteAccountLoading: false,
|
||||||
this.setState(this.state);
|
deleteAccountShowConfirm: false,
|
||||||
|
});
|
||||||
this.context.router.history.push('/');
|
this.context.router.history.push('/');
|
||||||
} else if (res.op == UserOperation.GetSite) {
|
} else if (res.op == UserOperation.GetSite) {
|
||||||
let data = res.data as GetSiteResponse;
|
const data = res.data as GetSiteResponse;
|
||||||
this.state.site = data.site;
|
this.setState({
|
||||||
this.setState(this.state);
|
site: data.site,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
7
ui/src/interfaces.ts
vendored
7
ui/src/interfaces.ts
vendored
|
@ -937,3 +937,10 @@ export interface WebSocketJsonResponse {
|
||||||
error?: string;
|
error?: string;
|
||||||
reconnect?: boolean;
|
reconnect?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum UserDetailsView {
|
||||||
|
Overview,
|
||||||
|
Comments,
|
||||||
|
Posts,
|
||||||
|
Saved,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue