]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/community/community.tsx
component classes v2
[lemmy-ui.git] / src / shared / components / community / community.tsx
index 7ce6099988d9c9a866a3906532ea4e0fac3d88ba..b833ca9a3cfb7a5ca5dadcf7381424b31a6b2a07 100644 (file)
@@ -1,14 +1,33 @@
-import { None, Option, Some } from "@sniptt/monads";
 import { Component, linkEvent } from "inferno";
+import { RouteComponentProps } from "inferno-router/dist/Route";
 import {
+  AddAdmin,
+  AddModToCommunity,
   AddModToCommunityResponse,
+  BanFromCommunity,
   BanFromCommunityResponse,
-  BlockCommunityResponse,
-  BlockPersonResponse,
-  CommentReportResponse,
+  BanPerson,
+  BanPersonResponse,
+  BlockCommunity,
+  BlockPerson,
+  CommentId,
+  CommentReplyResponse,
   CommentResponse,
-  CommentView,
   CommunityResponse,
+  CreateComment,
+  CreateCommentLike,
+  CreateCommentReport,
+  CreatePostLike,
+  CreatePostReport,
+  DeleteComment,
+  DeleteCommunity,
+  DeletePost,
+  DistinguishComment,
+  EditComment,
+  EditCommunity,
+  EditPost,
+  FeaturePost,
+  FollowCommunity,
   GetComments,
   GetCommentsResponse,
   GetCommunity,
@@ -16,46 +35,52 @@ import {
   GetPosts,
   GetPostsResponse,
   GetSiteResponse,
-  ListingType,
-  PostReportResponse,
+  LockPost,
+  MarkCommentReplyAsRead,
+  MarkPersonMentionAsRead,
   PostResponse,
-  PostView,
+  PurgeComment,
+  PurgeCommunity,
   PurgeItemResponse,
+  PurgePerson,
+  PurgePost,
+  RemoveComment,
+  RemoveCommunity,
+  RemovePost,
+  SaveComment,
+  SavePost,
   SortType,
-  toOption,
-  UserOperation,
-  wsJsonToRes,
-  wsUserOp,
+  TransferCommunity,
 } from "lemmy-js-client";
-import { Subscription } from "rxjs";
 import { i18n } from "../../i18next";
 import {
   CommentViewType,
   DataType,
   InitialFetchRequest,
 } from "../../interfaces";
-import { UserService, WebSocketService } from "../../services";
+import { UserService } from "../../services";
+import { FirstLoadService } from "../../services/FirstLoadService";
+import { HttpService, RequestState } from "../../services/HttpService";
 import {
-  auth,
+  QueryParams,
+  RouteDataResponse,
   commentsToFlatNodes,
   communityRSSUrl,
-  createCommentLikeRes,
-  createPostLikeFindRes,
-  editCommentRes,
-  editPostFindRes,
+  editComment,
+  editPost,
+  editWith,
   enableDownvotes,
   enableNsfw,
   fetchLimit,
-  getDataTypeFromProps,
-  getPageFromProps,
-  getSortTypeFromProps,
-  isPostBlocked,
-  notifyPost,
-  nsfwCheck,
+  getCommentParentId,
+  getDataTypeString,
+  getPageFromString,
+  getQueryParams,
+  getQueryString,
+  myAuth,
   postToCommentSortType,
   relTags,
   restoreScrollPosition,
-  saveCommentRes,
   saveScrollPosition,
   setIsoData,
   setupTippy,
@@ -63,8 +88,6 @@ import {
   toast,
   updateCommunityBlock,
   updatePersonBlock,
-  wsClient,
-  wsSubscribe,
 } from "../../utils";
 import { CommentNodes } from "../comment/comment-nodes";
 import { BannerIconHeader } from "../common/banner-icon-header";
@@ -78,19 +101,20 @@ import { SiteSidebar } from "../home/site-sidebar";
 import { PostListings } from "../post/post-listings";
 import { CommunityLink } from "./community-link";
 
+type CommunityData = RouteDataResponse<{
+  communityRes: GetCommunityResponse;
+  postsRes: GetPostsResponse;
+  commentsRes: GetCommentsResponse;
+}>;
+
 interface State {
-  communityRes: Option<GetCommunityResponse>;
+  communityRes: RequestState<GetCommunityResponse>;
+  postsRes: RequestState<GetPostsResponse>;
+  commentsRes: RequestState<GetCommentsResponse>;
   siteRes: GetSiteResponse;
-  communityName: string;
-  communityLoading: boolean;
-  postsLoading: boolean;
-  commentsLoading: boolean;
-  posts: PostView[];
-  comments: CommentView[];
-  dataType: DataType;
-  sort: SortType;
-  page: number;
   showSidebarMobile: boolean;
+  finished: Map<CommentId, boolean | undefined>;
+  isIsomorphic: boolean;
 }
 
 interface CommunityProps {
@@ -99,387 +123,417 @@ interface CommunityProps {
   page: number;
 }
 
-interface UrlParams {
-  dataType?: string;
-  sort?: SortType;
-  page?: number;
+function getCommunityQueryParams() {
+  return getQueryParams<CommunityProps>({
+    dataType: getDataTypeFromQuery,
+    page: getPageFromString,
+    sort: getSortTypeFromQuery,
+  });
 }
 
-export class Community extends Component<any, State> {
-  private isoData = setIsoData(
-    this.context,
-    GetCommunityResponse,
-    GetPostsResponse,
-    GetCommentsResponse
-  );
-  private subscription: Subscription;
-  private emptyState: State = {
-    communityRes: None,
-    communityName: this.props.match.params.name,
-    communityLoading: true,
-    postsLoading: true,
-    commentsLoading: true,
-    posts: [],
-    comments: [],
-    dataType: getDataTypeFromProps(this.props),
-    sort: getSortTypeFromProps(this.props),
-    page: getPageFromProps(this.props),
+function getDataTypeFromQuery(type?: string): DataType {
+  return type ? DataType[type] : DataType.Post;
+}
+
+function getSortTypeFromQuery(type?: string): SortType {
+  const mySortType =
+    UserService.Instance.myUserInfo?.local_user_view.local_user
+      .default_sort_type;
+
+  return type ? (type as SortType) : mySortType ?? "Active";
+}
+
+export class Community extends Component<
+  RouteComponentProps<{ name: string }>,
+  State
+> {
+  private isoData = setIsoData<CommunityData>(this.context);
+  state: State = {
+    communityRes: { state: "empty" },
+    postsRes: { state: "empty" },
+    commentsRes: { state: "empty" },
     siteRes: this.isoData.site_res,
     showSidebarMobile: false,
+    finished: new Map(),
+    isIsomorphic: false,
   };
 
-  constructor(props: any, context: any) {
+  constructor(props: RouteComponentProps<{ name: string }>, context: any) {
     super(props, context);
 
-    this.state = this.emptyState;
     this.handleSortChange = this.handleSortChange.bind(this);
     this.handleDataTypeChange = this.handleDataTypeChange.bind(this);
     this.handlePageChange = this.handlePageChange.bind(this);
 
-    this.parseMessage = this.parseMessage.bind(this);
-    this.subscription = wsSubscribe(this.parseMessage);
+    // All of the action binds
+    this.handleDeleteCommunity = this.handleDeleteCommunity.bind(this);
+    this.handleEditCommunity = this.handleEditCommunity.bind(this);
+    this.handleFollow = this.handleFollow.bind(this);
+    this.handleRemoveCommunity = this.handleRemoveCommunity.bind(this);
+    this.handleCreateComment = this.handleCreateComment.bind(this);
+    this.handleEditComment = this.handleEditComment.bind(this);
+    this.handleSaveComment = this.handleSaveComment.bind(this);
+    this.handleBlockCommunity = this.handleBlockCommunity.bind(this);
+    this.handleBlockPerson = this.handleBlockPerson.bind(this);
+    this.handleDeleteComment = this.handleDeleteComment.bind(this);
+    this.handleRemoveComment = this.handleRemoveComment.bind(this);
+    this.handleCommentVote = this.handleCommentVote.bind(this);
+    this.handleAddModToCommunity = this.handleAddModToCommunity.bind(this);
+    this.handleAddAdmin = this.handleAddAdmin.bind(this);
+    this.handlePurgePerson = this.handlePurgePerson.bind(this);
+    this.handlePurgeComment = this.handlePurgeComment.bind(this);
+    this.handleCommentReport = this.handleCommentReport.bind(this);
+    this.handleDistinguishComment = this.handleDistinguishComment.bind(this);
+    this.handleTransferCommunity = this.handleTransferCommunity.bind(this);
+    this.handleCommentReplyRead = this.handleCommentReplyRead.bind(this);
+    this.handlePersonMentionRead = this.handlePersonMentionRead.bind(this);
+    this.handleBanFromCommunity = this.handleBanFromCommunity.bind(this);
+    this.handleBanPerson = this.handleBanPerson.bind(this);
+    this.handlePostVote = this.handlePostVote.bind(this);
+    this.handlePostEdit = this.handlePostEdit.bind(this);
+    this.handlePostReport = this.handlePostReport.bind(this);
+    this.handleLockPost = this.handleLockPost.bind(this);
+    this.handleDeletePost = this.handleDeletePost.bind(this);
+    this.handleRemovePost = this.handleRemovePost.bind(this);
+    this.handleSavePost = this.handleSavePost.bind(this);
+    this.handlePurgePost = this.handlePurgePost.bind(this);
+    this.handleFeaturePost = this.handleFeaturePost.bind(this);
 
     // Only fetch the data if coming from another route
-    if (this.isoData.path == this.context.router.route.match.url) {
-      this.state = {
-        ...this.state,
-        communityRes: Some(this.isoData.routeData[0] as GetCommunityResponse),
-      };
-      let postsRes = Some(this.isoData.routeData[1] as GetPostsResponse);
-      let commentsRes = Some(this.isoData.routeData[2] as GetCommentsResponse);
-
-      if (postsRes.isSome()) {
-        this.state = { ...this.state, posts: postsRes.unwrap().posts };
-      }
-
-      if (commentsRes.isSome()) {
-        this.state = { ...this.state, comments: commentsRes.unwrap().comments };
-      }
+    if (FirstLoadService.isFirstLoad) {
+      const { communityRes, commentsRes, postsRes } = this.isoData.routeData;
 
       this.state = {
         ...this.state,
-        communityLoading: false,
-        postsLoading: false,
-        commentsLoading: false,
+        isIsomorphic: true,
+        commentsRes,
+        communityRes,
+        postsRes,
       };
-    } else {
-      this.fetchCommunity();
-      this.fetchData();
     }
   }
 
-  fetchCommunity() {
-    let form = new GetCommunity({
-      name: Some(this.state.communityName),
-      id: None,
-      auth: auth(false).ok(),
+  async fetchCommunity() {
+    this.setState({ communityRes: { state: "loading" } });
+    this.setState({
+      communityRes: await HttpService.client.getCommunity({
+        name: this.props.match.params.name,
+        auth: myAuth(),
+      }),
     });
-    WebSocketService.Instance.send(wsClient.getCommunity(form));
   }
 
-  componentDidMount() {
+  async componentDidMount() {
+    if (!this.state.isIsomorphic) {
+      await Promise.all([this.fetchCommunity(), this.fetchData()]);
+    }
+
     setupTippy();
   }
 
   componentWillUnmount() {
     saveScrollPosition(this.context);
-    this.subscription.unsubscribe();
   }
 
-  static getDerivedStateFromProps(props: any): CommunityProps {
-    return {
-      dataType: getDataTypeFromProps(props),
-      sort: getSortTypeFromProps(props),
-      page: getPageFromProps(props),
+  static async fetchInitialData({
+    client,
+    path,
+    query: { dataType: urlDataType, page: urlPage, sort: urlSort },
+    auth,
+  }: InitialFetchRequest<QueryParams<CommunityProps>>): Promise<
+    Promise<CommunityData>
+  > {
+    const pathSplit = path.split("/");
+
+    const communityName = pathSplit[2];
+    const communityForm: GetCommunity = {
+      name: communityName,
+      auth,
     };
-  }
 
-  static fetchInitialData(req: InitialFetchRequest): Promise<any>[] {
-    let pathSplit = req.path.split("/");
-    let promises: Promise<any>[] = [];
+    const dataType = getDataTypeFromQuery(urlDataType);
 
-    let communityName = pathSplit[2];
-    let communityForm = new GetCommunity({
-      name: Some(communityName),
-      id: None,
-      auth: req.auth,
-    });
-    promises.push(req.client.getCommunity(communityForm));
-
-    let dataType: DataType = pathSplit[4]
-      ? DataType[pathSplit[4]]
-      : DataType.Post;
-
-    let sort: Option<SortType> = toOption(
-      pathSplit[6]
-        ? SortType[pathSplit[6]]
-        : UserService.Instance.myUserInfo.match({
-            some: mui =>
-              Object.values(SortType)[
-                mui.local_user_view.local_user.default_sort_type
-              ],
-            none: SortType.Active,
-          })
-    );
+    const sort = getSortTypeFromQuery(urlSort);
 
-    let page = toOption(pathSplit[8] ? Number(pathSplit[8]) : 1);
+    const page = getPageFromString(urlPage);
 
-    if (dataType == DataType.Post) {
-      let getPostsForm = new GetPosts({
-        community_name: Some(communityName),
-        community_id: None,
+    let postsResponse: RequestState<GetPostsResponse> = { state: "empty" };
+    let commentsResponse: RequestState<GetCommentsResponse> = {
+      state: "empty",
+    };
+
+    if (dataType === DataType.Post) {
+      const getPostsForm: GetPosts = {
+        community_name: communityName,
         page,
-        limit: Some(fetchLimit),
+        limit: fetchLimit,
         sort,
-        type_: Some(ListingType.All),
-        saved_only: Some(false),
-        auth: req.auth,
-      });
-      promises.push(req.client.getPosts(getPostsForm));
-      promises.push(Promise.resolve());
+        type_: "All",
+        saved_only: false,
+        auth,
+      };
+
+      postsResponse = await client.getPosts(getPostsForm);
     } else {
-      let getCommentsForm = new GetComments({
-        community_name: Some(communityName),
-        community_id: None,
+      const getCommentsForm: GetComments = {
+        community_name: communityName,
         page,
-        limit: Some(fetchLimit),
-        max_depth: None,
-        sort: sort.map(postToCommentSortType),
-        type_: Some(ListingType.All),
-        saved_only: Some(false),
-        post_id: None,
-        parent_id: None,
-        auth: req.auth,
-      });
-      promises.push(Promise.resolve());
-      promises.push(req.client.getComments(getCommentsForm));
-    }
-
-    return promises;
-  }
+        limit: fetchLimit,
+        sort: postToCommentSortType(sort),
+        type_: "All",
+        saved_only: false,
+        auth,
+      };
 
-  componentDidUpdate(_: any, lastState: State) {
-    if (
-      lastState.dataType !== this.state.dataType ||
-      lastState.sort !== this.state.sort ||
-      lastState.page !== this.state.page
-    ) {
-      this.setState({ postsLoading: true, commentsLoading: true });
-      this.fetchData();
+      commentsResponse = await client.getComments(getCommentsForm);
     }
+
+    return {
+      communityRes: await client.getCommunity(communityForm),
+      commentsRes: commentsResponse,
+      postsRes: postsResponse,
+    };
   }
 
   get documentTitle(): string {
-    return this.state.communityRes.match({
-      some: res =>
-        `${res.community_view.community.title} - ${this.state.siteRes.site_view.site.name}`,
-      none: "",
-    });
+    const cRes = this.state.communityRes;
+    return cRes.state == "success"
+      ? `${cRes.data.community_view.community.title} - ${this.isoData.site_res.site_view.site.name}`
+      : "";
   }
 
-  render() {
-    // For some reason, this returns an empty vec if it matches the site langs
-    let communityLangs = this.state.communityRes.map(r => {
-      let langs = r.discussion_languages;
-      if (langs.length == 0) {
-        return this.state.siteRes.all_languages.map(l => l.id);
-      } else {
-        return langs;
-      }
-    });
-
-    return (
-      <div className="container-lg">
-        {this.state.communityLoading ? (
+  renderCommunity() {
+    switch (this.state.communityRes.state) {
+      case "loading":
+        return (
           <h5>
             <Spinner large />
           </h5>
-        ) : (
-          this.state.communityRes.match({
-            some: res => (
-              <>
-                <HtmlTags
-                  title={this.documentTitle}
-                  path={this.context.router.route.match.url}
-                  description={res.community_view.community.description}
-                  image={res.community_view.community.icon}
-                />
-
-                <div className="row">
-                  <div className="col-12 col-md-8">
-                    {this.communityInfo()}
-                    <div className="d-block d-md-none">
-                      <button
-                        className="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.showSidebarMobile && (
-                        <>
-                          <Sidebar
-                            community_view={res.community_view}
-                            moderators={res.moderators}
-                            admins={this.state.siteRes.admins}
-                            online={res.online}
-                            enableNsfw={enableNsfw(this.state.siteRes)}
-                            editable
-                            allLanguages={this.state.siteRes.all_languages}
-                            siteLanguages={
-                              this.state.siteRes.discussion_languages
-                            }
-                            communityLanguages={communityLangs}
-                          />
-                          {!res.community_view.community.local &&
-                            res.site.match({
-                              some: site => (
-                                <SiteSidebar
-                                  site={site}
-                                  showLocal={showLocal(this.isoData)}
-                                  admins={None}
-                                  counts={None}
-                                  online={None}
-                                />
-                              ),
-                              none: <></>,
-                            })}
-                        </>
-                      )}
-                    </div>
-                    {this.selects()}
-                    {this.listings()}
-                    <Paginator
-                      page={this.state.page}
-                      onChange={this.handlePageChange}
-                    />
-                  </div>
-                  <div className="d-none d-md-block col-md-4">
-                    <Sidebar
-                      community_view={res.community_view}
-                      moderators={res.moderators}
-                      admins={this.state.siteRes.admins}
-                      online={res.online}
-                      enableNsfw={enableNsfw(this.state.siteRes)}
-                      editable
-                      allLanguages={this.state.siteRes.all_languages}
-                      siteLanguages={this.state.siteRes.discussion_languages}
-                      communityLanguages={communityLangs}
+        );
+      case "success": {
+        const res = this.state.communityRes.data;
+        const { page } = getCommunityQueryParams();
+
+        return (
+          <>
+            <HtmlTags
+              title={this.documentTitle}
+              path={this.context.router.route.match.url}
+              description={res.community_view.community.description}
+              image={res.community_view.community.icon}
+            />
+
+            <div className="row">
+              <div className="col-12 col-md-8">
+                {this.communityInfo(res)}
+                <div className="d-block d-md-none">
+                  <button
+                    className="btn btn-secondary d-inline-block mb-2 me-3"
+                    onClick={linkEvent(this, this.handleShowSidebarMobile)}
+                  >
+                    {i18n.t("sidebar")}{" "}
+                    <Icon
+                      icon={
+                        this.state.showSidebarMobile
+                          ? `minus-square`
+                          : `plus-square`
+                      }
+                      classes="icon-inline"
                     />
-                    {!res.community_view.community.local &&
-                      res.site.match({
-                        some: site => (
-                          <SiteSidebar
-                            site={site}
-                            showLocal={showLocal(this.isoData)}
-                            admins={None}
-                            counts={None}
-                            online={None}
-                          />
-                        ),
-                        none: <></>,
-                      })}
-                  </div>
+                  </button>
+                  {this.state.showSidebarMobile && this.sidebar(res)}
                 </div>
-              </>
-            ),
-            none: <></>,
-          })
-        )}
-      </div>
+                {this.selects(res)}
+                {this.listings(res)}
+                <Paginator page={page} onChange={this.handlePageChange} />
+              </div>
+              <div className="d-none d-md-block col-md-4">
+                {this.sidebar(res)}
+              </div>
+            </div>
+          </>
+        );
+      }
+    }
+  }
+
+  render() {
+    return (
+      <div className="community container-lg">{this.renderCommunity()}</div>
     );
   }
 
-  listings() {
-    return this.state.dataType == DataType.Post ? (
-      this.state.postsLoading ? (
-        <h5>
-          <Spinner large />
-        </h5>
-      ) : (
-        <PostListings
-          posts={this.state.posts}
-          removeDuplicates
-          enableDownvotes={enableDownvotes(this.state.siteRes)}
-          enableNsfw={enableNsfw(this.state.siteRes)}
-          allLanguages={this.state.siteRes.all_languages}
-          siteLanguages={this.state.siteRes.discussion_languages}
+  sidebar(res: GetCommunityResponse) {
+    const { site_res } = this.isoData;
+    // For some reason, this returns an empty vec if it matches the site langs
+    const communityLangs =
+      res.discussion_languages.length === 0
+        ? site_res.all_languages.map(({ id }) => id)
+        : res.discussion_languages;
+
+    return (
+      <>
+        <Sidebar
+          community_view={res.community_view}
+          moderators={res.moderators}
+          admins={site_res.admins}
+          enableNsfw={enableNsfw(site_res)}
+          editable
+          allLanguages={site_res.all_languages}
+          siteLanguages={site_res.discussion_languages}
+          communityLanguages={communityLangs}
+          onDeleteCommunity={this.handleDeleteCommunity}
+          onRemoveCommunity={this.handleRemoveCommunity}
+          onLeaveModTeam={this.handleAddModToCommunity}
+          onFollowCommunity={this.handleFollow}
+          onBlockCommunity={this.handleBlockCommunity}
+          onPurgeCommunity={this.handlePurgeCommunity}
+          onEditCommunity={this.handleEditCommunity}
         />
-      )
-    ) : this.state.commentsLoading ? (
-      <h5>
-        <Spinner large />
-      </h5>
-    ) : (
-      <CommentNodes
-        nodes={commentsToFlatNodes(this.state.comments)}
-        viewType={CommentViewType.Flat}
-        noIndent
-        showContext
-        enableDownvotes={enableDownvotes(this.state.siteRes)}
-        moderators={this.state.communityRes.map(r => r.moderators)}
-        admins={Some(this.state.siteRes.admins)}
-        maxCommentsShown={None}
-        allLanguages={this.state.siteRes.all_languages}
-        siteLanguages={this.state.siteRes.discussion_languages}
-      />
+        {!res.community_view.community.local && res.site && (
+          <SiteSidebar site={res.site} showLocal={showLocal(this.isoData)} />
+        )}
+      </>
     );
   }
 
-  communityInfo() {
-    return this.state.communityRes
-      .map(r => r.community_view.community)
-      .match({
-        some: community => (
-          <div className="mb-2">
-            <BannerIconHeader banner={community.banner} icon={community.icon} />
-            <h5 className="mb-0 overflow-wrap-anywhere">{community.title}</h5>
-            <CommunityLink
-              community={community}
-              realLink
-              useApubName
-              muted
-              hideAvatar
+  listings(communityRes: GetCommunityResponse) {
+    const { dataType } = getCommunityQueryParams();
+    const { site_res } = this.isoData;
+
+    if (dataType === DataType.Post) {
+      switch (this.state.postsRes.state) {
+        case "loading":
+          return (
+            <h5>
+              <Spinner large />
+            </h5>
+          );
+        case "success":
+          return (
+            <PostListings
+              posts={this.state.postsRes.data.posts}
+              removeDuplicates
+              enableDownvotes={enableDownvotes(site_res)}
+              enableNsfw={enableNsfw(site_res)}
+              allLanguages={site_res.all_languages}
+              siteLanguages={site_res.discussion_languages}
+              onBlockPerson={this.handleBlockPerson}
+              onPostEdit={this.handlePostEdit}
+              onPostVote={this.handlePostVote}
+              onPostReport={this.handlePostReport}
+              onLockPost={this.handleLockPost}
+              onDeletePost={this.handleDeletePost}
+              onRemovePost={this.handleRemovePost}
+              onSavePost={this.handleSavePost}
+              onPurgePerson={this.handlePurgePerson}
+              onPurgePost={this.handlePurgePost}
+              onBanPerson={this.handleBanPerson}
+              onBanPersonFromCommunity={this.handleBanFromCommunity}
+              onAddModToCommunity={this.handleAddModToCommunity}
+              onAddAdmin={this.handleAddAdmin}
+              onTransferCommunity={this.handleTransferCommunity}
+              onFeaturePost={this.handleFeaturePost}
             />
-          </div>
-        ),
-        none: <></>,
-      });
+          );
+      }
+    } else {
+      switch (this.state.commentsRes.state) {
+        case "loading":
+          return (
+            <h5>
+              <Spinner large />
+            </h5>
+          );
+        case "success":
+          return (
+            <CommentNodes
+              nodes={commentsToFlatNodes(this.state.commentsRes.data.comments)}
+              viewType={CommentViewType.Flat}
+              finished={this.state.finished}
+              noIndent
+              showContext
+              enableDownvotes={enableDownvotes(site_res)}
+              moderators={communityRes.moderators}
+              admins={site_res.admins}
+              allLanguages={site_res.all_languages}
+              siteLanguages={site_res.discussion_languages}
+              onSaveComment={this.handleSaveComment}
+              onBlockPerson={this.handleBlockPerson}
+              onDeleteComment={this.handleDeleteComment}
+              onRemoveComment={this.handleRemoveComment}
+              onCommentVote={this.handleCommentVote}
+              onCommentReport={this.handleCommentReport}
+              onDistinguishComment={this.handleDistinguishComment}
+              onAddModToCommunity={this.handleAddModToCommunity}
+              onAddAdmin={this.handleAddAdmin}
+              onTransferCommunity={this.handleTransferCommunity}
+              onPurgeComment={this.handlePurgeComment}
+              onPurgePerson={this.handlePurgePerson}
+              onCommentReplyRead={this.handleCommentReplyRead}
+              onPersonMentionRead={this.handlePersonMentionRead}
+              onBanPersonFromCommunity={this.handleBanFromCommunity}
+              onBanPerson={this.handleBanPerson}
+              onCreateComment={this.handleCreateComment}
+              onEditComment={this.handleEditComment}
+            />
+          );
+      }
+    }
   }
 
-  selects() {
-    let communityRss = this.state.communityRes.map(r =>
-      communityRSSUrl(r.community_view.community.actor_id, this.state.sort)
+  communityInfo(res: GetCommunityResponse) {
+    const community = res.community_view.community;
+
+    return (
+      community && (
+        <div className="mb-2">
+          <BannerIconHeader banner={community.banner} icon={community.icon} />
+          <h5 className="mb-0 overflow-wrap-anywhere">{community.title}</h5>
+          <CommunityLink
+            community={community}
+            realLink
+            useApubName
+            muted
+            hideAvatar
+          />
+        </div>
+      )
     );
+  }
+
+  selects(res: GetCommunityResponse) {
+    // let communityRss = this.state.communityRes.map(r =>
+    //   communityRSSUrl(r.community_view.community.actor_id, this.state.sort)
+    // );
+    const { dataType, sort } = getCommunityQueryParams();
+    const communityRss = res
+      ? communityRSSUrl(res.community_view.community.actor_id, sort)
+      : undefined;
+
     return (
       <div className="mb-3">
-        <span className="mr-3">
+        <span className="me-3">
           <DataTypeSelect
-            type_={this.state.dataType}
+            type_={dataType}
             onChange={this.handleDataTypeChange}
           />
         </span>
-        <span className="mr-2">
-          <SortSelect sort={this.state.sort} onChange={this.handleSortChange} />
+        <span className="me-2">
+          <SortSelect sort={sort} onChange={this.handleSortChange} />
         </span>
-        {communityRss.match({
-          some: rss => (
-            <>
-              <a href={rss} title="RSS" rel={relTags}>
-                <Icon icon="rss" classes="text-muted small" />
-              </a>
-              <link rel="alternate" type="application/atom+xml" href={rss} />
-            </>
-          ),
-          none: <></>,
-        })}
+        {communityRss && (
+          <>
+            <a href={communityRss} title="RSS" rel={relTags}>
+              <Icon icon="rss" classes="text-muted small" />
+            </a>
+            <link
+              rel="alternate"
+              type="application/atom+xml"
+              href={communityRss}
+            />
+          </>
+        )}
       </div>
     );
   }
@@ -489,235 +543,407 @@ export class Community extends Component<any, State> {
     window.scrollTo(0, 0);
   }
 
-  handleSortChange(val: SortType) {
-    this.updateUrl({ sort: val, page: 1 });
+  handleSortChange(sort: SortType) {
+    this.updateUrl({ sort, page: 1 });
     window.scrollTo(0, 0);
   }
 
-  handleDataTypeChange(val: DataType) {
-    this.updateUrl({ dataType: DataType[val], page: 1 });
+  handleDataTypeChange(dataType: DataType) {
+    this.updateUrl({ dataType, page: 1 });
     window.scrollTo(0, 0);
   }
 
   handleShowSidebarMobile(i: Community) {
-    i.setState({ showSidebarMobile: !i.state.showSidebarMobile });
+    i.setState(({ showSidebarMobile }) => ({
+      showSidebarMobile: !showSidebarMobile,
+    }));
   }
 
-  updateUrl(paramUpdates: UrlParams) {
-    const dataTypeStr = paramUpdates.dataType || DataType[this.state.dataType];
-    const sortStr = paramUpdates.sort || this.state.sort;
-    const page = paramUpdates.page || this.state.page;
-
-    let typeView = `/c/${this.state.communityName}`;
+  async updateUrl({ dataType, page, sort }: Partial<CommunityProps>) {
+    const {
+      dataType: urlDataType,
+      page: urlPage,
+      sort: urlSort,
+    } = getCommunityQueryParams();
+
+    const queryParams: QueryParams<CommunityProps> = {
+      dataType: getDataTypeString(dataType ?? urlDataType),
+      page: (page ?? urlPage).toString(),
+      sort: sort ?? urlSort,
+    };
 
     this.props.history.push(
-      `${typeView}/data_type/${dataTypeStr}/sort/${sortStr}/page/${page}`
+      `/c/${this.props.match.params.name}${getQueryString(queryParams)}`
     );
+
+    await this.fetchData();
   }
 
-  fetchData() {
-    if (this.state.dataType == DataType.Post) {
-      let form = new GetPosts({
-        page: Some(this.state.page),
-        limit: Some(fetchLimit),
-        sort: Some(this.state.sort),
-        type_: Some(ListingType.All),
-        community_name: Some(this.state.communityName),
-        community_id: None,
-        saved_only: Some(false),
-        auth: auth(false).ok(),
+  async fetchData() {
+    const { dataType, page, sort } = getCommunityQueryParams();
+    const { name } = this.props.match.params;
+
+    if (dataType === DataType.Post) {
+      this.setState({ postsRes: { state: "loading" } });
+      this.setState({
+        postsRes: await HttpService.client.getPosts({
+          page,
+          limit: fetchLimit,
+          sort,
+          type_: "All",
+          community_name: name,
+          saved_only: false,
+          auth: myAuth(),
+        }),
       });
-      WebSocketService.Instance.send(wsClient.getPosts(form));
     } else {
-      let form = new GetComments({
-        page: Some(this.state.page),
-        limit: Some(fetchLimit),
-        max_depth: None,
-        sort: Some(postToCommentSortType(this.state.sort)),
-        type_: Some(ListingType.All),
-        community_name: Some(this.state.communityName),
-        community_id: None,
-        saved_only: Some(false),
-        post_id: None,
-        parent_id: None,
-        auth: auth(false).ok(),
+      this.setState({ commentsRes: { state: "loading" } });
+      this.setState({
+        commentsRes: await HttpService.client.getComments({
+          page,
+          limit: fetchLimit,
+          sort: postToCommentSortType(sort),
+          type_: "All",
+          community_name: name,
+          saved_only: false,
+          auth: myAuth(),
+        }),
       });
-      WebSocketService.Instance.send(wsClient.getComments(form));
     }
+
+    restoreScrollPosition(this.context);
+    setupTippy();
   }
 
-  parseMessage(msg: any) {
-    let op = wsUserOp(msg);
-    console.log(msg);
-    if (msg.error) {
-      toast(i18n.t(msg.error), "danger");
-      this.context.router.history.push("/");
-      return;
-    } else if (msg.reconnect) {
-      this.state.communityRes.match({
-        some: res => {
-          WebSocketService.Instance.send(
-            wsClient.communityJoin({
-              community_id: res.community_view.community.id,
-            })
-          );
-        },
-        none: void 0,
-      });
-      this.fetchData();
-    } else if (op == UserOperation.GetCommunity) {
-      let data = wsJsonToRes<GetCommunityResponse>(msg, GetCommunityResponse);
-      this.setState({ communityRes: Some(data), communityLoading: false });
-      // TODO why is there no auth in this form?
-      WebSocketService.Instance.send(
-        wsClient.communityJoin({
-          community_id: data.community_view.community.id,
-        })
-      );
-    } else if (
-      op == UserOperation.EditCommunity ||
-      op == UserOperation.DeleteCommunity ||
-      op == UserOperation.RemoveCommunity
-    ) {
-      let data = wsJsonToRes<CommunityResponse>(msg, CommunityResponse);
-      this.state.communityRes.match({
-        some: res => {
-          res.community_view = data.community_view;
-          res.discussion_languages = data.discussion_languages;
-        },
-        none: void 0,
+  async handleDeleteCommunity(form: DeleteCommunity) {
+    const deleteCommunityRes = await HttpService.client.deleteCommunity(form);
+    this.updateCommunity(deleteCommunityRes);
+  }
+
+  async handleAddModToCommunity(form: AddModToCommunity) {
+    const addModRes = await HttpService.client.addModToCommunity(form);
+    this.updateModerators(addModRes);
+  }
+
+  async handleFollow(form: FollowCommunity) {
+    const followCommunityRes = await HttpService.client.followCommunity(form);
+    this.updateCommunity(followCommunityRes);
+
+    // Update myUserInfo
+    if (followCommunityRes.state == "success") {
+      const communityId = followCommunityRes.data.community_view.community.id;
+      const mui = UserService.Instance.myUserInfo;
+      if (mui) {
+        mui.follows = mui.follows.filter(i => i.community.id != communityId);
+      }
+    }
+  }
+
+  async handlePurgeCommunity(form: PurgeCommunity) {
+    const purgeCommunityRes = await HttpService.client.purgeCommunity(form);
+    this.purgeItem(purgeCommunityRes);
+  }
+
+  async handlePurgePerson(form: PurgePerson) {
+    const purgePersonRes = await HttpService.client.purgePerson(form);
+    this.purgeItem(purgePersonRes);
+  }
+
+  async handlePurgeComment(form: PurgeComment) {
+    const purgeCommentRes = await HttpService.client.purgeComment(form);
+    this.purgeItem(purgeCommentRes);
+  }
+
+  async handlePurgePost(form: PurgePost) {
+    const purgeRes = await HttpService.client.purgePost(form);
+    this.purgeItem(purgeRes);
+  }
+
+  async handleBlockCommunity(form: BlockCommunity) {
+    const blockCommunityRes = await HttpService.client.blockCommunity(form);
+    if (blockCommunityRes.state == "success") {
+      updateCommunityBlock(blockCommunityRes.data);
+      this.setState(s => {
+        if (s.communityRes.state == "success") {
+          s.communityRes.data.community_view.blocked =
+            blockCommunityRes.data.blocked;
+        }
       });
-      this.setState(this.state);
-    } else if (op == UserOperation.FollowCommunity) {
-      let data = wsJsonToRes<CommunityResponse>(msg, CommunityResponse);
-      this.state.communityRes.match({
-        some: res => {
-          res.community_view.subscribed = data.community_view.subscribed;
-          res.community_view.counts.subscribers =
-            data.community_view.counts.subscribers;
-        },
-        none: void 0,
+    }
+  }
+
+  async handleBlockPerson(form: BlockPerson) {
+    const blockPersonRes = await HttpService.client.blockPerson(form);
+    if (blockPersonRes.state == "success") {
+      updatePersonBlock(blockPersonRes.data);
+    }
+  }
+
+  async handleRemoveCommunity(form: RemoveCommunity) {
+    const removeCommunityRes = await HttpService.client.removeCommunity(form);
+    this.updateCommunity(removeCommunityRes);
+  }
+
+  async handleEditCommunity(form: EditCommunity) {
+    const res = await HttpService.client.editCommunity(form);
+    this.updateCommunity(res);
+
+    return res;
+  }
+
+  async handleCreateComment(form: CreateComment) {
+    const createCommentRes = await HttpService.client.createComment(form);
+    this.createAndUpdateComments(createCommentRes);
+
+    return createCommentRes;
+  }
+
+  async handleEditComment(form: EditComment) {
+    const editCommentRes = await HttpService.client.editComment(form);
+    this.findAndUpdateComment(editCommentRes);
+
+    return editCommentRes;
+  }
+
+  async handleDeleteComment(form: DeleteComment) {
+    const deleteCommentRes = await HttpService.client.deleteComment(form);
+    this.findAndUpdateComment(deleteCommentRes);
+  }
+
+  async handleDeletePost(form: DeletePost) {
+    const deleteRes = await HttpService.client.deletePost(form);
+    this.findAndUpdatePost(deleteRes);
+  }
+
+  async handleRemovePost(form: RemovePost) {
+    const removeRes = await HttpService.client.removePost(form);
+    this.findAndUpdatePost(removeRes);
+  }
+
+  async handleRemoveComment(form: RemoveComment) {
+    const removeCommentRes = await HttpService.client.removeComment(form);
+    this.findAndUpdateComment(removeCommentRes);
+  }
+
+  async handleSaveComment(form: SaveComment) {
+    const saveCommentRes = await HttpService.client.saveComment(form);
+    this.findAndUpdateComment(saveCommentRes);
+  }
+
+  async handleSavePost(form: SavePost) {
+    const saveRes = await HttpService.client.savePost(form);
+    this.findAndUpdatePost(saveRes);
+  }
+
+  async handleFeaturePost(form: FeaturePost) {
+    const featureRes = await HttpService.client.featurePost(form);
+    this.findAndUpdatePost(featureRes);
+  }
+
+  async handleCommentVote(form: CreateCommentLike) {
+    const voteRes = await HttpService.client.likeComment(form);
+    this.findAndUpdateComment(voteRes);
+  }
+
+  async handlePostEdit(form: EditPost) {
+    const res = await HttpService.client.editPost(form);
+    this.findAndUpdatePost(res);
+  }
+
+  async handlePostVote(form: CreatePostLike) {
+    const voteRes = await HttpService.client.likePost(form);
+    this.findAndUpdatePost(voteRes);
+  }
+
+  async handleCommentReport(form: CreateCommentReport) {
+    const reportRes = await HttpService.client.createCommentReport(form);
+    if (reportRes.state == "success") {
+      toast(i18n.t("report_created"));
+    }
+  }
+
+  async handlePostReport(form: CreatePostReport) {
+    const reportRes = await HttpService.client.createPostReport(form);
+    if (reportRes.state == "success") {
+      toast(i18n.t("report_created"));
+    }
+  }
+
+  async handleLockPost(form: LockPost) {
+    const lockRes = await HttpService.client.lockPost(form);
+    this.findAndUpdatePost(lockRes);
+  }
+
+  async handleDistinguishComment(form: DistinguishComment) {
+    const distinguishRes = await HttpService.client.distinguishComment(form);
+    this.findAndUpdateComment(distinguishRes);
+  }
+
+  async handleAddAdmin(form: AddAdmin) {
+    const addAdminRes = await HttpService.client.addAdmin(form);
+
+    if (addAdminRes.state == "success") {
+      this.setState(s => ((s.siteRes.admins = addAdminRes.data.admins), s));
+    }
+  }
+
+  async handleTransferCommunity(form: TransferCommunity) {
+    const transferCommunityRes = await HttpService.client.transferCommunity(
+      form
+    );
+    toast(i18n.t("transfer_community"));
+    this.updateCommunityFull(transferCommunityRes);
+  }
+
+  async handleCommentReplyRead(form: MarkCommentReplyAsRead) {
+    const readRes = await HttpService.client.markCommentReplyAsRead(form);
+    this.findAndUpdateCommentReply(readRes);
+  }
+
+  async handlePersonMentionRead(form: MarkPersonMentionAsRead) {
+    // TODO not sure what to do here. Maybe it is actually optional, because post doesn't need it.
+    await HttpService.client.markPersonMentionAsRead(form);
+  }
+
+  async handleBanFromCommunity(form: BanFromCommunity) {
+    const banRes = await HttpService.client.banFromCommunity(form);
+    this.updateBanFromCommunity(banRes);
+  }
+
+  async handleBanPerson(form: BanPerson) {
+    const banRes = await HttpService.client.banPerson(form);
+    this.updateBan(banRes);
+  }
+
+  updateBanFromCommunity(banRes: RequestState<BanFromCommunityResponse>) {
+    // Maybe not necessary
+    if (banRes.state == "success") {
+      this.setState(s => {
+        if (s.postsRes.state == "success") {
+          s.postsRes.data.posts
+            .filter(c => c.creator.id == banRes.data.person_view.person.id)
+            .forEach(
+              c => (c.creator_banned_from_community = banRes.data.banned)
+            );
+        }
+        if (s.commentsRes.state == "success") {
+          s.commentsRes.data.comments
+            .filter(c => c.creator.id == banRes.data.person_view.person.id)
+            .forEach(
+              c => (c.creator_banned_from_community = banRes.data.banned)
+            );
+        }
+        return s;
       });
-      this.setState(this.state);
-    } else if (op == UserOperation.GetPosts) {
-      let data = wsJsonToRes<GetPostsResponse>(msg, GetPostsResponse);
-      this.setState({ posts: data.posts, postsLoading: false });
-      restoreScrollPosition(this.context);
-      setupTippy();
-    } else if (
-      op == UserOperation.EditPost ||
-      op == UserOperation.DeletePost ||
-      op == UserOperation.RemovePost ||
-      op == UserOperation.LockPost ||
-      op == UserOperation.FeaturePost ||
-      op == UserOperation.SavePost
-    ) {
-      let data = wsJsonToRes<PostResponse>(msg, PostResponse);
-      editPostFindRes(data.post_view, this.state.posts);
-      this.setState(this.state);
-    } else if (op == UserOperation.CreatePost) {
-      let data = wsJsonToRes<PostResponse>(msg, PostResponse);
-
-      let showPostNotifs = UserService.Instance.myUserInfo
-        .map(m => m.local_user_view.local_user.show_new_post_notifs)
-        .unwrapOr(false);
-
-      // Only push these if you're on the first page, you pass the nsfw check, and it isn't blocked
-      //
-      if (
-        this.state.page == 1 &&
-        nsfwCheck(data.post_view) &&
-        !isPostBlocked(data.post_view)
-      ) {
-        this.state.posts.unshift(data.post_view);
-        if (showPostNotifs) {
-          notifyPost(data.post_view, this.context.router);
+    }
+  }
+
+  updateBan(banRes: RequestState<BanPersonResponse>) {
+    // Maybe not necessary
+    if (banRes.state == "success") {
+      this.setState(s => {
+        if (s.postsRes.state == "success") {
+          s.postsRes.data.posts
+            .filter(c => c.creator.id == banRes.data.person_view.person.id)
+            .forEach(c => (c.creator.banned = banRes.data.banned));
         }
-        this.setState(this.state);
-      }
-    } else if (op == UserOperation.CreatePostLike) {
-      let data = wsJsonToRes<PostResponse>(msg, PostResponse);
-      createPostLikeFindRes(data.post_view, this.state.posts);
-      this.setState(this.state);
-    } else if (op == UserOperation.AddModToCommunity) {
-      let data = wsJsonToRes<AddModToCommunityResponse>(
-        msg,
-        AddModToCommunityResponse
-      );
-      this.state.communityRes.match({
-        some: res => (res.moderators = data.moderators),
-        none: void 0,
+        if (s.commentsRes.state == "success") {
+          s.commentsRes.data.comments
+            .filter(c => c.creator.id == banRes.data.person_view.person.id)
+            .forEach(c => (c.creator.banned = banRes.data.banned));
+        }
+        return s;
       });
-      this.setState(this.state);
-    } else if (op == UserOperation.BanFromCommunity) {
-      let data = wsJsonToRes<BanFromCommunityResponse>(
-        msg,
-        BanFromCommunityResponse
-      );
-
-      // TODO this might be incorrect
-      this.state.posts
-        .filter(p => p.creator.id == data.person_view.person.id)
-        .forEach(p => (p.creator_banned_from_community = data.banned));
-
-      this.setState(this.state);
-    } else if (op == UserOperation.GetComments) {
-      let data = wsJsonToRes<GetCommentsResponse>(msg, GetCommentsResponse);
-      this.setState({ comments: data.comments, commentsLoading: false });
-    } else if (
-      op == UserOperation.EditComment ||
-      op == UserOperation.DeleteComment ||
-      op == UserOperation.RemoveComment
-    ) {
-      let data = wsJsonToRes<CommentResponse>(msg, CommentResponse);
-      editCommentRes(data.comment_view, this.state.comments);
-      this.setState(this.state);
-    } else if (op == UserOperation.CreateComment) {
-      let data = wsJsonToRes<CommentResponse>(msg, CommentResponse);
-
-      // Necessary since it might be a user reply
-      if (data.form_id) {
-        this.state.comments.unshift(data.comment_view);
-        this.setState(this.state);
+    }
+  }
+
+  updateCommunity(res: RequestState<CommunityResponse>) {
+    this.setState(s => {
+      if (s.communityRes.state == "success" && res.state == "success") {
+        s.communityRes.data.community_view = res.data.community_view;
+        s.communityRes.data.discussion_languages =
+          res.data.discussion_languages;
+      }
+      return s;
+    });
+  }
+
+  updateCommunityFull(res: RequestState<GetCommunityResponse>) {
+    this.setState(s => {
+      if (s.communityRes.state == "success" && res.state == "success") {
+        s.communityRes.data.community_view = res.data.community_view;
+        s.communityRes.data.moderators = res.data.moderators;
       }
-    } else if (op == UserOperation.SaveComment) {
-      let data = wsJsonToRes<CommentResponse>(msg, CommentResponse);
-      saveCommentRes(data.comment_view, this.state.comments);
-      this.setState(this.state);
-    } else if (op == UserOperation.CreateCommentLike) {
-      let data = wsJsonToRes<CommentResponse>(msg, CommentResponse);
-      createCommentLikeRes(data.comment_view, this.state.comments);
-      this.setState(this.state);
-    } else if (op == UserOperation.BlockPerson) {
-      let data = wsJsonToRes<BlockPersonResponse>(msg, BlockPersonResponse);
-      updatePersonBlock(data);
-    } else if (op == UserOperation.CreatePostReport) {
-      let data = wsJsonToRes<PostReportResponse>(msg, PostReportResponse);
-      if (data) {
-        toast(i18n.t("report_created"));
+      return s;
+    });
+  }
+
+  purgeItem(purgeRes: RequestState<PurgeItemResponse>) {
+    if (purgeRes.state == "success") {
+      toast(i18n.t("purge_success"));
+      this.context.router.history.push(`/`);
+    }
+  }
+
+  findAndUpdateComment(res: RequestState<CommentResponse>) {
+    this.setState(s => {
+      if (s.commentsRes.state == "success" && res.state == "success") {
+        s.commentsRes.data.comments = editComment(
+          res.data.comment_view,
+          s.commentsRes.data.comments
+        );
+        s.finished.set(res.data.comment_view.comment.id, true);
       }
-    } else if (op == UserOperation.CreateCommentReport) {
-      let data = wsJsonToRes<CommentReportResponse>(msg, CommentReportResponse);
-      if (data) {
-        toast(i18n.t("report_created"));
+      return s;
+    });
+  }
+
+  createAndUpdateComments(res: RequestState<CommentResponse>) {
+    this.setState(s => {
+      if (s.commentsRes.state == "success" && res.state == "success") {
+        s.commentsRes.data.comments.unshift(res.data.comment_view);
+
+        // Set finished for the parent
+        s.finished.set(
+          getCommentParentId(res.data.comment_view.comment) ?? 0,
+          true
+        );
       }
-    } else if (op == UserOperation.PurgeCommunity) {
-      let data = wsJsonToRes<PurgeItemResponse>(msg, PurgeItemResponse);
-      if (data.success) {
-        toast(i18n.t("purge_success"));
-        this.context.router.history.push(`/`);
+      return s;
+    });
+  }
+
+  findAndUpdateCommentReply(res: RequestState<CommentReplyResponse>) {
+    this.setState(s => {
+      if (s.commentsRes.state == "success" && res.state == "success") {
+        s.commentsRes.data.comments = editWith(
+          res.data.comment_reply_view,
+          s.commentsRes.data.comments
+        );
       }
-    } else if (op == UserOperation.BlockCommunity) {
-      let data = wsJsonToRes<BlockCommunityResponse>(
-        msg,
-        BlockCommunityResponse
-      );
-      this.state.communityRes.match({
-        some: res => (res.community_view.blocked = data.blocked),
-        none: void 0,
-      });
-      updateCommunityBlock(data);
-      this.setState(this.state);
-    }
+      return s;
+    });
+  }
+
+  findAndUpdatePost(res: RequestState<PostResponse>) {
+    this.setState(s => {
+      if (s.postsRes.state == "success" && res.state == "success") {
+        s.postsRes.data.posts = editPost(
+          res.data.post_view,
+          s.postsRes.data.posts
+        );
+      }
+      return s;
+    });
+  }
+
+  updateModerators(res: RequestState<AddModToCommunityResponse>) {
+    // Update the moderators
+    this.setState(s => {
+      if (s.communityRes.state == "success" && res.state == "success") {
+        s.communityRes.data.moderators = res.data.moderators;
+      }
+      return s;
+    });
   }
 }