lemmy-ui/src/shared/components/home/home.tsx

947 lines
28 KiB
TypeScript
Raw Normal View History

import { Component, linkEvent } from "inferno";
import { T } from "inferno-i18next";
import { Link } from "inferno-router";
import {
AddAdminResponse,
BanPersonResponse,
BlockPersonResponse,
CommentResponse,
CommentView,
CommunityView,
GetComments,
GetCommentsResponse,
GetPosts,
GetPostsResponse,
GetSiteResponse,
2020-12-24 01:58:27 +00:00
ListCommunities,
ListCommunitiesResponse,
ListingType,
PostResponse,
2020-12-24 01:58:27 +00:00
PostView,
SiteResponse,
SortType,
UserOperation,
} from "lemmy-js-client";
import { Subscription } from "rxjs";
import { i18n } from "../../i18next";
import { DataType, InitialFetchRequest } from "../../interfaces";
import { UserService, WebSocketService } from "../../services";
import {
authField,
commentsToFlatNodes,
createCommentLikeRes,
createPostLikeFindRes,
editCommentRes,
editPostFindRes,
fetchLimit,
getDataTypeFromProps,
getListingTypeFromProps,
getPageFromProps,
getSortTypeFromProps,
mdToHtml,
notifyPost,
restoreScrollPosition,
saveCommentRes,
saveScrollPosition,
2020-09-08 04:09:11 +00:00
setIsoData,
setOptionalAuth,
setupTippy,
showLocal,
toast,
updatePersonBlock,
wsClient,
wsJsonToRes,
wsSubscribe,
wsUserOp,
} from "../../utils";
import { CommentNodes } from "../comment/comment-nodes";
import { BannerIconHeader } from "../common/banner-icon-header";
import { DataTypeSelect } from "../common/data-type-select";
import { HtmlTags } from "../common/html-tags";
import { Icon, Spinner } from "../common/icon";
import { ListingTypeSelect } from "../common/listing-type-select";
import { Paginator } from "../common/paginator";
import { SortSelect } from "../common/sort-select";
import { CommunityLink } from "../community/community-link";
import { PersonListing } from "../person/person-listing";
import { PostListings } from "../post/post-listings";
import { SiteForm } from "./site-form";
interface HomeState {
2020-12-24 01:58:27 +00:00
trendingCommunities: CommunityView[];
siteRes: GetSiteResponse;
showEditSite: boolean;
showSubscribedMobile: boolean;
showTrendingMobile: boolean;
showSidebarMobile: boolean;
loading: boolean;
2020-12-24 01:58:27 +00:00
posts: PostView[];
comments: CommentView[];
listingType: ListingType;
dataType: DataType;
sort: SortType;
page: number;
}
interface HomeProps {
listingType: ListingType;
dataType: DataType;
sort: SortType;
page: number;
}
interface UrlParams {
listingType?: ListingType;
dataType?: string;
sort?: SortType;
page?: number;
}
export class Home extends Component<any, HomeState> {
2020-09-08 04:09:11 +00:00
private isoData = setIsoData(this.context);
private subscription: Subscription;
private emptyState: HomeState = {
trendingCommunities: [],
2020-12-24 01:58:27 +00:00
siteRes: this.isoData.site_res,
showEditSite: false,
showSubscribedMobile: false,
showTrendingMobile: false,
showSidebarMobile: false,
loading: true,
posts: [],
comments: [],
listingType: getListingTypeFromProps(this.props),
dataType: getDataTypeFromProps(this.props),
sort: getSortTypeFromProps(this.props),
page: getPageFromProps(this.props),
};
constructor(props: any, context: any) {
super(props, context);
this.state = this.emptyState;
this.handleEditCancel = this.handleEditCancel.bind(this);
this.handleSortChange = this.handleSortChange.bind(this);
this.handleListingTypeChange = this.handleListingTypeChange.bind(this);
this.handleDataTypeChange = this.handleDataTypeChange.bind(this);
this.handlePageChange = this.handlePageChange.bind(this);
2020-09-08 04:09:11 +00:00
this.parseMessage = this.parseMessage.bind(this);
this.subscription = wsSubscribe(this.parseMessage);
// Only fetch the data if coming from another route
if (this.isoData.path == this.context.router.route.match.url) {
if (this.state.dataType == DataType.Post) {
this.state.posts = this.isoData.routeData[0].posts;
} else {
this.state.comments = this.isoData.routeData[0].comments;
}
this.state.trendingCommunities = this.isoData.routeData[1].communities;
this.state.loading = false;
} else {
this.fetchTrendingCommunities();
this.fetchData();
}
2020-09-08 04:09:11 +00:00
setupTippy();
}
fetchTrendingCommunities() {
2020-12-24 01:58:27 +00:00
let listCommunitiesForm: ListCommunities = {
type_: ListingType.Local,
2020-09-08 04:09:11 +00:00
sort: SortType.Hot,
limit: 6,
auth: authField(false),
2020-09-08 04:09:11 +00:00
};
WebSocketService.Instance.send(
wsClient.listCommunities(listCommunitiesForm)
);
}
componentDidMount() {
2020-09-15 16:44:46 +00:00
// This means it hasn't been set up yet
2020-12-24 01:58:27 +00:00
if (!this.state.siteRes.site_view) {
this.context.router.history.push("/setup");
2020-09-15 16:44:46 +00:00
}
WebSocketService.Instance.send(wsClient.communityJoin({ community_id: 0 }));
}
componentWillUnmount() {
saveScrollPosition(this.context);
this.subscription.unsubscribe();
window.isoData.path = undefined;
2020-09-08 04:09:11 +00:00
}
static getDerivedStateFromProps(props: any): HomeProps {
2020-09-08 04:09:11 +00:00
return {
listingType: getListingTypeFromProps(props),
dataType: getDataTypeFromProps(props),
sort: getSortTypeFromProps(props),
page: getPageFromProps(props),
};
}
static fetchInitialData(req: InitialFetchRequest): Promise<any>[] {
let pathSplit = req.path.split("/");
2020-09-08 04:09:11 +00:00
let dataType: DataType = pathSplit[3]
? DataType[pathSplit[3]]
: DataType.Post;
2020-09-08 04:09:11 +00:00
// TODO figure out auth default_listingType, default_sort_type
let type_: ListingType = pathSplit[5]
? ListingType[pathSplit[5]]
: UserService.Instance.myUserInfo
2020-09-08 04:09:11 +00:00
? Object.values(ListingType)[
UserService.Instance.myUserInfo.local_user_view.local_user
.default_listing_type
2020-09-08 04:09:11 +00:00
]
: ListingType.Local;
2020-09-08 04:09:11 +00:00
let sort: SortType = pathSplit[7]
? SortType[pathSplit[7]]
: UserService.Instance.myUserInfo
2021-03-15 18:09:31 +00:00
? Object.values(SortType)[
UserService.Instance.myUserInfo.local_user_view.local_user
.default_sort_type
2021-03-15 18:09:31 +00:00
]
2020-09-08 04:09:11 +00:00
: SortType.Active;
let page = pathSplit[9] ? Number(pathSplit[9]) : 1;
let promises: Promise<any>[] = [];
if (dataType == DataType.Post) {
2020-12-24 01:58:27 +00:00
let getPostsForm: GetPosts = {
2020-09-08 04:09:11 +00:00
page,
limit: fetchLimit,
sort,
type_,
2021-03-23 22:58:13 +00:00
saved_only: false,
2020-09-08 04:09:11 +00:00
};
setOptionalAuth(getPostsForm, req.auth);
promises.push(req.client.getPosts(getPostsForm));
} else {
2020-12-24 01:58:27 +00:00
let getCommentsForm: GetComments = {
2020-09-08 04:09:11 +00:00
page,
limit: fetchLimit,
sort,
type_,
2021-03-23 22:58:13 +00:00
saved_only: false,
2020-09-08 04:09:11 +00:00
};
setOptionalAuth(getCommentsForm, req.auth);
promises.push(req.client.getComments(getCommentsForm));
2020-09-08 04:09:11 +00:00
}
2020-12-24 01:58:27 +00:00
let trendingCommunitiesForm: ListCommunities = {
type_: ListingType.Local,
2020-09-08 04:09:11 +00:00
sort: SortType.Hot,
limit: 6,
};
promises.push(req.client.listCommunities(trendingCommunitiesForm));
2020-09-08 04:09:11 +00:00
return promises;
}
componentDidUpdate(_: any, lastState: HomeState) {
2020-09-08 04:09:11 +00:00
if (
lastState.listingType !== this.state.listingType ||
lastState.dataType !== this.state.dataType ||
lastState.sort !== this.state.sort ||
lastState.page !== this.state.page
) {
this.setState({ loading: true });
this.fetchData();
}
}
2020-09-08 04:09:11 +00:00
get documentTitle(): string {
2020-09-15 16:44:46 +00:00
return `${
2020-12-24 01:58:27 +00:00
this.state.siteRes.site_view
? this.state.siteRes.site_view.site.description
? `${this.state.siteRes.site_view.site.name} - ${this.state.siteRes.site_view.site.description}`
: this.state.siteRes.site_view.site.name
: "Lemmy"
2020-09-15 16:44:46 +00:00
}`;
2020-09-08 04:09:11 +00:00
}
render() {
return (
<div class="container">
2020-09-11 18:09:21 +00:00
<HtmlTags
title={this.documentTitle}
path={this.context.router.route.match.url}
/>
{this.state.siteRes.site_view?.site && (
2020-09-15 16:44:46 +00:00
<div class="row">
<main role="main" class="col-12 col-md-8">
<div class="d-block d-md-none">{this.mobileView()}</div>
2020-09-15 16:44:46 +00:00
{this.posts()}
</main>
<aside class="d-none d-md-block col-md-4">{this.mySidebar()}</aside>
2020-09-15 16:44:46 +00:00
</div>
)}
</div>
);
}
mobileView() {
return (
<div class="row">
<div class="col-12">
{UserService.Instance.myUserInfo &&
UserService.Instance.myUserInfo.follows.length > 0 && (
<button
class="btn btn-secondary d-inline-block mb-2 mr-3"
onClick={linkEvent(this, this.handleShowSubscribedMobile)}
>
{i18n.t("subscribed")}{" "}
<Icon
icon={
this.state.showSubscribedMobile
? `minus-square`
: `plus-square`
}
classes="icon-inline"
/>
</button>
)}
<button
class="btn btn-secondary d-inline-block mb-2 mr-3"
onClick={linkEvent(this, this.handleShowTrendingMobile)}
>
{i18n.t("trending")}{" "}
<Icon
icon={
this.state.showTrendingMobile ? `minus-square` : `plus-square`
}
classes="icon-inline"
/>
</button>
<button
class="btn btn-secondary d-inline-block mb-2 mr-3"
onClick={linkEvent(this, this.handleShowSidebarMobile)}
>
{i18n.t("sidebar")}{" "}
<Icon
icon={
this.state.showSidebarMobile ? `minus-square` : `plus-square`
}
classes="icon-inline"
/>
</button>
{this.state.showSubscribedMobile && (
<div class="col-12 card border-secondary mb-3">
<div class="card-body">{this.subscribedCommunities()}</div>
</div>
)}
{this.state.showTrendingMobile && (
<div class="col-12 card border-secondary mb-3">
<div class="card-body">{this.trendingCommunities()}</div>
</div>
)}
{this.state.showSidebarMobile && (
<div class="col-12 card border-secondary mb-3">
<div class="card-body">{this.sidebar()}</div>
</div>
)}
</div>
</div>
);
}
mySidebar() {
return (
<div>
{!this.state.loading && (
<div>
<div class="card border-secondary mb-3">
<div class="card-body">
{this.trendingCommunities()}
{this.createCommunityButton()}
{this.exploreCommunitiesButton()}
</div>
</div>
{UserService.Instance.myUserInfo &&
UserService.Instance.myUserInfo.follows.length > 0 && (
<div class="card border-secondary mb-3">
<div class="card-body">{this.subscribedCommunities()}</div>
</div>
)}
<div class="card border-secondary mb-3">
<div class="card-body">{this.sidebar()}</div>
</div>
</div>
)}
</div>
);
}
createCommunityButton() {
return (
<Link className="mt-2 btn btn-secondary btn-block" to="/create_community">
{i18n.t("create_a_community")}
</Link>
);
}
exploreCommunitiesButton() {
return (
<Link className="btn btn-secondary btn-block" to="/communities">
{i18n.t("explore_communities")}
</Link>
);
}
trendingCommunities() {
return (
<div>
<h5>
<T i18nKey="trending_communities">
#
2020-09-08 04:09:11 +00:00
<Link className="text-body" to="/communities">
#
</Link>
</T>
</h5>
<ul class="list-inline mb-0">
2020-12-24 01:58:27 +00:00
{this.state.trendingCommunities.map(cv => (
<li class="list-inline-item d-inline-block">
2020-12-24 01:58:27 +00:00
<CommunityLink community={cv.community} />
</li>
))}
</ul>
</div>
);
}
subscribedCommunities() {
return (
<div>
<h5>
<T i18nKey="subscribed_to_communities">
#
<Link className="text-body" to="/communities">
#
</Link>
</T>
</h5>
<ul class="list-inline mb-0">
{UserService.Instance.myUserInfo.follows.map(cfv => (
<li class="list-inline-item d-inline-block">
2020-12-24 01:58:27 +00:00
<CommunityLink community={cfv.community} />
</li>
))}
</ul>
</div>
);
}
sidebar() {
2020-12-24 01:58:27 +00:00
let site = this.state.siteRes.site_view.site;
return (
<div>
{!this.state.showEditSite ? (
<div>
<div class="mb-2">
{this.siteName()}
{this.adminButtons()}
</div>
2020-12-24 01:58:27 +00:00
<BannerIconHeader banner={site.banner} />
{this.siteInfo()}
</div>
) : (
2020-12-24 01:58:27 +00:00
<SiteForm site={site} onCancel={this.handleEditCancel} />
)}
</div>
);
}
updateUrl(paramUpdates: UrlParams) {
const listingTypeStr = paramUpdates.listingType || this.state.listingType;
const dataTypeStr = paramUpdates.dataType || DataType[this.state.dataType];
const sortStr = paramUpdates.sort || this.state.sort;
const page = paramUpdates.page || this.state.page;
this.props.history.push(
`/home/data_type/${dataTypeStr}/listing_type/${listingTypeStr}/sort/${sortStr}/page/${page}`
);
}
siteInfo() {
2021-04-23 22:26:36 +00:00
let site = this.state.siteRes.site_view.site;
return (
<div>
2021-04-23 22:26:36 +00:00
{site.description && <h6>{site.description}</h6>}
{site.sidebar && this.siteSidebar()}
{this.badges()}
{this.admins()}
</div>
);
}
siteName() {
2021-05-04 17:57:02 +00:00
let site = this.state.siteRes.site_view.site;
return site.name && <h5 class="mb-0">{site.name}</h5>;
}
admins() {
return (
<ul class="mt-1 list-inline small mb-0">
<li class="list-inline-item">{i18n.t("admins")}:</li>
2020-12-24 01:58:27 +00:00
{this.state.siteRes.admins.map(av => (
<li class="list-inline-item">
2021-03-15 18:09:31 +00:00
<PersonListing person={av.person} />
</li>
))}
</ul>
);
}
badges() {
let counts = this.state.siteRes.site_view.counts;
return (
<ul class="my-2 list-inline">
<li className="list-inline-item badge badge-secondary">
{i18n.t("number_online", { count: this.state.siteRes.online })}
</li>
<li
className="list-inline-item badge badge-secondary pointer"
data-tippy-content={`${i18n.t("number_of_users", {
count: counts.users_active_day,
})} ${i18n.t("active_in_the_last")} ${i18n.t("day")}`}
>
{i18n.t("number_of_users", {
count: counts.users_active_day,
})}{" "}
/ {i18n.t("day")}
</li>
<li
className="list-inline-item badge badge-secondary pointer"
data-tippy-content={`${i18n.t("number_of_users", {
count: counts.users_active_week,
})} ${i18n.t("active_in_the_last")} ${i18n.t("week")}`}
>
{i18n.t("number_of_users", {
count: counts.users_active_week,
})}{" "}
/ {i18n.t("week")}
</li>
<li
className="list-inline-item badge badge-secondary pointer"
data-tippy-content={`${i18n.t("number_of_users", {
count: counts.users_active_month,
})} ${i18n.t("active_in_the_last")} ${i18n.t("month")}`}
>
{i18n.t("number_of_users", {
count: counts.users_active_month,
})}{" "}
/ {i18n.t("month")}
</li>
<li
className="list-inline-item badge badge-secondary pointer"
data-tippy-content={`${i18n.t("number_of_users", {
count: counts.users_active_half_year,
})} ${i18n.t("active_in_the_last")} ${i18n.t("number_of_months", {
count: 6,
})}`}
>
{i18n.t("number_of_users", {
count: counts.users_active_half_year,
})}{" "}
/ {i18n.t("number_of_months", { count: 6 })}
</li>
<li className="list-inline-item badge badge-secondary">
{i18n.t("number_of_users", {
count: counts.users,
})}
</li>
<li className="list-inline-item badge badge-secondary">
{i18n.t("number_of_communities", {
count: counts.communities,
})}
</li>
<li className="list-inline-item badge badge-secondary">
{i18n.t("number_of_posts", {
count: counts.posts,
})}
</li>
<li className="list-inline-item badge badge-secondary">
{i18n.t("number_of_comments", {
count: counts.comments,
})}
</li>
<li className="list-inline-item">
<Link className="badge badge-secondary" to="/modlog">
{i18n.t("modlog")}
</Link>
</li>
</ul>
);
}
adminButtons() {
return (
this.canAdmin && (
<ul class="list-inline mb-1 text-muted font-weight-bold">
<li className="list-inline-item-action">
<button
class="btn btn-link d-inline-block text-muted"
onClick={linkEvent(this, this.handleEditClick)}
aria-label={i18n.t("edit")}
data-tippy-content={i18n.t("edit")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="edit" classes="icon-inline" />
</button>
</li>
</ul>
)
);
}
2021-04-23 22:26:36 +00:00
siteSidebar() {
return (
<div
className="md-div"
2020-12-24 01:58:27 +00:00
dangerouslySetInnerHTML={mdToHtml(
2021-04-23 22:26:36 +00:00
this.state.siteRes.site_view.site.sidebar
2020-12-24 01:58:27 +00:00
)}
/>
);
}
posts() {
return (
<div class="main-content-wrapper">
{this.state.loading ? (
<h5>
2021-07-17 20:21:31 +00:00
<Spinner large />
</h5>
) : (
<div>
{this.selects()}
{this.listings()}
<Paginator
page={this.state.page}
onChange={this.handlePageChange}
/>
</div>
)}
</div>
);
}
listings() {
2020-12-24 01:58:27 +00:00
let site = this.state.siteRes.site_view.site;
return this.state.dataType == DataType.Post ? (
<PostListings
posts={this.state.posts}
showCommunity
removeDuplicates
2020-12-24 01:58:27 +00:00
enableDownvotes={site.enable_downvotes}
enableNsfw={site.enable_nsfw}
/>
) : (
<CommentNodes
nodes={commentsToFlatNodes(this.state.comments)}
noIndent
showCommunity
showContext
2020-12-24 01:58:27 +00:00
enableDownvotes={site.enable_downvotes}
/>
);
}
selects() {
return (
<div className="mb-3">
<span class="mr-3">
<DataTypeSelect
type_={this.state.dataType}
onChange={this.handleDataTypeChange}
/>
</span>
<span class="mr-3">
<ListingTypeSelect
type_={this.state.listingType}
showLocal={showLocal(this.isoData)}
onChange={this.handleListingTypeChange}
/>
</span>
<span class="mr-2">
<SortSelect sort={this.state.sort} onChange={this.handleSortChange} />
</span>
{this.state.listingType == ListingType.All && (
<a
href={`/feeds/all.xml?sort=${this.state.sort}`}
rel="noopener"
title="RSS"
>
2021-02-11 20:35:27 +00:00
<Icon icon="rss" classes="text-muted small" />
</a>
)}
2020-11-25 20:19:42 +00:00
{this.state.listingType == ListingType.Local && (
<a
href={`/feeds/local.xml?sort=${this.state.sort}`}
rel="noopener"
title="RSS"
>
2021-02-11 20:35:27 +00:00
<Icon icon="rss" classes="text-muted small" />
2020-11-25 20:19:42 +00:00
</a>
)}
{UserService.Instance.myUserInfo &&
this.state.listingType == ListingType.Subscribed && (
<a
href={`/feeds/front/${UserService.Instance.auth}.xml?sort=${this.state.sort}`}
title="RSS"
rel="noopener"
>
2021-02-11 20:35:27 +00:00
<Icon icon="rss" classes="text-muted small" />
</a>
)}
</div>
);
}
get canAdmin(): boolean {
return (
UserService.Instance.myUserInfo &&
this.state.siteRes.admins
2021-03-15 18:09:31 +00:00
.map(a => a.person.id)
.includes(UserService.Instance.myUserInfo.local_user_view.person.id)
);
}
handleEditClick(i: Home) {
i.state.showEditSite = true;
i.setState(i.state);
}
handleEditCancel() {
this.state.showEditSite = false;
this.setState(this.state);
}
handleShowSubscribedMobile(i: Home) {
i.state.showSubscribedMobile = !i.state.showSubscribedMobile;
i.setState(i.state);
}
handleShowTrendingMobile(i: Home) {
i.state.showTrendingMobile = !i.state.showTrendingMobile;
i.setState(i.state);
}
handleShowSidebarMobile(i: Home) {
i.state.showSidebarMobile = !i.state.showSidebarMobile;
i.setState(i.state);
}
handlePageChange(page: number) {
this.updateUrl({ page });
window.scrollTo(0, 0);
}
handleSortChange(val: SortType) {
this.updateUrl({ sort: val, page: 1 });
window.scrollTo(0, 0);
}
handleListingTypeChange(val: ListingType) {
this.updateUrl({ listingType: val, page: 1 });
window.scrollTo(0, 0);
}
handleDataTypeChange(val: DataType) {
this.updateUrl({ dataType: DataType[val], page: 1 });
window.scrollTo(0, 0);
}
fetchData() {
if (this.state.dataType == DataType.Post) {
2020-12-24 01:58:27 +00:00
let getPostsForm: GetPosts = {
page: this.state.page,
limit: fetchLimit,
sort: this.state.sort,
type_: this.state.listingType,
2021-03-23 22:58:13 +00:00
saved_only: false,
auth: authField(false),
};
WebSocketService.Instance.send(wsClient.getPosts(getPostsForm));
} else {
2020-12-24 01:58:27 +00:00
let getCommentsForm: GetComments = {
page: this.state.page,
limit: fetchLimit,
sort: this.state.sort,
type_: this.state.listingType,
2021-03-23 22:58:13 +00:00
saved_only: false,
auth: authField(false),
};
WebSocketService.Instance.send(wsClient.getComments(getCommentsForm));
}
}
2020-12-24 01:58:27 +00:00
parseMessage(msg: any) {
let op = wsUserOp(msg);
2021-04-07 15:54:38 +00:00
console.log(msg);
if (msg.error) {
toast(i18n.t(msg.error), "danger");
return;
} else if (msg.reconnect) {
WebSocketService.Instance.send(
wsClient.communityJoin({ community_id: 0 })
);
this.fetchData();
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.ListCommunities) {
let data = wsJsonToRes<ListCommunitiesResponse>(msg).data;
this.state.trendingCommunities = data.communities;
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.EditSite) {
let data = wsJsonToRes<SiteResponse>(msg).data;
this.state.siteRes.site_view = data.site_view;
this.state.showEditSite = false;
this.setState(this.state);
toast(i18n.t("site_saved"));
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.GetPosts) {
let data = wsJsonToRes<GetPostsResponse>(msg).data;
this.state.posts = data.posts;
this.state.loading = false;
this.setState(this.state);
restoreScrollPosition(this.context);
setupTippy();
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.CreatePost) {
let data = wsJsonToRes<PostResponse>(msg).data;
// NSFW check
let nsfw = data.post_view.post.nsfw || data.post_view.community.nsfw;
let nsfwCheck =
!nsfw ||
(nsfw &&
UserService.Instance.myUserInfo &&
UserService.Instance.myUserInfo.local_user_view.local_user.show_nsfw);
// Only push these if you're on the first page, and you pass the nsfw check
if (this.state.page == 1 && nsfwCheck) {
// If you're on subscribed, only push it if you're subscribed.
if (this.state.listingType == ListingType.Subscribed) {
if (
UserService.Instance.myUserInfo.follows
.map(c => c.community.id)
.includes(data.post_view.community.id)
) {
this.state.posts.unshift(data.post_view);
if (
UserService.Instance.myUserInfo?.local_user_view.local_user
.show_new_post_notifs
) {
notifyPost(data.post_view, this.context.router);
}
}
} else if (this.state.listingType == ListingType.Local) {
// If you're on the local view, only push it if its local
if (data.post_view.post.local) {
this.state.posts.unshift(data.post_view);
if (
UserService.Instance.myUserInfo?.local_user_view.local_user
.show_new_post_notifs
) {
notifyPost(data.post_view, this.context.router);
}
}
} else {
2020-12-24 01:58:27 +00:00
this.state.posts.unshift(data.post_view);
if (
UserService.Instance.myUserInfo?.local_user_view.local_user
.show_new_post_notifs
) {
notifyPost(data.post_view, this.context.router);
}
}
this.setState(this.state);
}
} else if (
2020-12-24 01:58:27 +00:00
op == UserOperation.EditPost ||
op == UserOperation.DeletePost ||
op == UserOperation.RemovePost ||
op == UserOperation.LockPost ||
op == UserOperation.StickyPost ||
op == UserOperation.SavePost
) {
2020-12-24 01:58:27 +00:00
let data = wsJsonToRes<PostResponse>(msg).data;
editPostFindRes(data.post_view, this.state.posts);
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.CreatePostLike) {
let data = wsJsonToRes<PostResponse>(msg).data;
createPostLikeFindRes(data.post_view, this.state.posts);
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.AddAdmin) {
let data = wsJsonToRes<AddAdminResponse>(msg).data;
this.state.siteRes.admins = data.admins;
this.setState(this.state);
2021-03-15 18:09:31 +00:00
} else if (op == UserOperation.BanPerson) {
let data = wsJsonToRes<BanPersonResponse>(msg).data;
2020-12-24 01:58:27 +00:00
let found = this.state.siteRes.banned.find(
2021-03-15 18:09:31 +00:00
p => (p.person.id = data.person_view.person.id)
2020-12-24 01:58:27 +00:00
);
// Remove the banned if its found in the list, and the action is an unban
if (found && !data.banned) {
this.state.siteRes.banned = this.state.siteRes.banned.filter(
2021-03-15 18:09:31 +00:00
i => i.person.id !== data.person_view.person.id
);
} else {
2021-03-15 18:09:31 +00:00
this.state.siteRes.banned.push(data.person_view);
}
this.state.posts
2021-03-15 18:09:31 +00:00
.filter(p => p.creator.id == data.person_view.person.id)
2020-12-24 01:58:27 +00:00
.forEach(p => (p.creator.banned = data.banned));
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.GetComments) {
let data = wsJsonToRes<GetCommentsResponse>(msg).data;
this.state.comments = data.comments;
this.state.loading = false;
this.setState(this.state);
} else if (
2020-12-24 01:58:27 +00:00
op == UserOperation.EditComment ||
op == UserOperation.DeleteComment ||
op == UserOperation.RemoveComment
) {
2020-12-24 01:58:27 +00:00
let data = wsJsonToRes<CommentResponse>(msg).data;
editCommentRes(data.comment_view, this.state.comments);
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.CreateComment) {
let data = wsJsonToRes<CommentResponse>(msg).data;
// Necessary since it might be a user reply
2021-01-07 18:55:09 +00:00
if (data.form_id) {
// If you're on subscribed, only push it if you're subscribed.
if (this.state.listingType == ListingType.Subscribed) {
if (
UserService.Instance.myUserInfo.follows
2020-12-24 01:58:27 +00:00
.map(c => c.community.id)
.includes(data.comment_view.community.id)
) {
2020-12-24 01:58:27 +00:00
this.state.comments.unshift(data.comment_view);
}
} else {
2020-12-24 01:58:27 +00:00
this.state.comments.unshift(data.comment_view);
}
this.setState(this.state);
}
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.SaveComment) {
let data = wsJsonToRes<CommentResponse>(msg).data;
saveCommentRes(data.comment_view, this.state.comments);
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.CreateCommentLike) {
let data = wsJsonToRes<CommentResponse>(msg).data;
createCommentLikeRes(data.comment_view, this.state.comments);
this.setState(this.state);
} else if (op == UserOperation.BlockPerson) {
let data = wsJsonToRes<BlockPersonResponse>(msg).data;
updatePersonBlock(data);
}
}
}