]> Untitled Git - lemmy-ui.git/blob - src/shared/components/person/profile.tsx
Merge branch 'main' into breakout-role-utils
[lemmy-ui.git] / src / shared / components / person / profile.tsx
1 import { getQueryParams, getQueryString } from "@utils/helpers";
2 import { canMod, isAdmin, isBanned } from "@utils/roles";
3 import type { QueryParams } from "@utils/types";
4 import classNames from "classnames";
5 import { NoOptionI18nKeys } from "i18next";
6 import { Component, linkEvent } from "inferno";
7 import { Link } from "inferno-router";
8 import { RouteComponentProps } from "inferno-router/dist/Route";
9 import {
10   AddAdmin,
11   AddModToCommunity,
12   BanFromCommunity,
13   BanFromCommunityResponse,
14   BanPerson,
15   BanPersonResponse,
16   BlockPerson,
17   CommentId,
18   CommentReplyResponse,
19   CommentResponse,
20   Community,
21   CommunityModeratorView,
22   CreateComment,
23   CreateCommentLike,
24   CreateCommentReport,
25   CreatePostLike,
26   CreatePostReport,
27   DeleteComment,
28   DeletePost,
29   DistinguishComment,
30   EditComment,
31   EditPost,
32   FeaturePost,
33   GetPersonDetails,
34   GetPersonDetailsResponse,
35   GetSiteResponse,
36   LockPost,
37   MarkCommentReplyAsRead,
38   MarkPersonMentionAsRead,
39   PersonView,
40   PostResponse,
41   PurgeComment,
42   PurgeItemResponse,
43   PurgePerson,
44   PurgePost,
45   RemoveComment,
46   RemovePost,
47   SaveComment,
48   SavePost,
49   SortType,
50   TransferCommunity,
51 } from "lemmy-js-client";
52 import moment from "moment";
53 import { i18n } from "../../i18next";
54 import { InitialFetchRequest, PersonDetailsView } from "../../interfaces";
55 import { UserService } from "../../services";
56 import { FirstLoadService } from "../../services/FirstLoadService";
57 import { HttpService, RequestState } from "../../services/HttpService";
58 import {
59   RouteDataResponse,
60   capitalizeFirstLetter,
61   editComment,
62   editPost,
63   editWith,
64   enableDownvotes,
65   enableNsfw,
66   fetchLimit,
67   futureDaysToUnixTime,
68   getCommentParentId,
69   getPageFromString,
70   mdToHtml,
71   myAuth,
72   myAuthRequired,
73   numToSI,
74   relTags,
75   restoreScrollPosition,
76   saveScrollPosition,
77   setIsoData,
78   setupTippy,
79   toast,
80   updatePersonBlock,
81 } from "../../utils";
82 import { BannerIconHeader } from "../common/banner-icon-header";
83 import { HtmlTags } from "../common/html-tags";
84 import { Icon, Spinner } from "../common/icon";
85 import { MomentTime } from "../common/moment-time";
86 import { SortSelect } from "../common/sort-select";
87 import { CommunityLink } from "../community/community-link";
88 import { PersonDetails } from "./person-details";
89 import { PersonListing } from "./person-listing";
90
91 type ProfileData = RouteDataResponse<{
92   personResponse: GetPersonDetailsResponse;
93 }>;
94
95 interface ProfileState {
96   personRes: RequestState<GetPersonDetailsResponse>;
97   personBlocked: boolean;
98   banReason?: string;
99   banExpireDays?: number;
100   showBanDialog: boolean;
101   removeData: boolean;
102   siteRes: GetSiteResponse;
103   finished: Map<CommentId, boolean | undefined>;
104   isIsomorphic: boolean;
105 }
106
107 interface ProfileProps {
108   view: PersonDetailsView;
109   sort: SortType;
110   page: number;
111 }
112
113 function getProfileQueryParams() {
114   return getQueryParams<ProfileProps>({
115     view: getViewFromProps,
116     page: getPageFromString,
117     sort: getSortTypeFromQuery,
118   });
119 }
120
121 function getSortTypeFromQuery(sort?: string): SortType {
122   return sort ? (sort as SortType) : "New";
123 }
124
125 function getViewFromProps(view?: string): PersonDetailsView {
126   return view
127     ? PersonDetailsView[view] ?? PersonDetailsView.Overview
128     : PersonDetailsView.Overview;
129 }
130
131 const getCommunitiesListing = (
132   translationKey: NoOptionI18nKeys,
133   communityViews?: { community: Community }[]
134 ) =>
135   communityViews &&
136   communityViews.length > 0 && (
137     <div className="card border-secondary mb-3">
138       <div className="card-body">
139         <h5>{i18n.t(translationKey)}</h5>
140         <ul className="list-unstyled mb-0">
141           {communityViews.map(({ community }) => (
142             <li key={community.id}>
143               <CommunityLink community={community} />
144             </li>
145           ))}
146         </ul>
147       </div>
148     </div>
149   );
150
151 const Moderates = ({ moderates }: { moderates?: CommunityModeratorView[] }) =>
152   getCommunitiesListing("moderates", moderates);
153
154 const Follows = () =>
155   getCommunitiesListing("subscribed", UserService.Instance.myUserInfo?.follows);
156
157 export class Profile extends Component<
158   RouteComponentProps<{ username: string }>,
159   ProfileState
160 > {
161   private isoData = setIsoData<ProfileData>(this.context);
162   state: ProfileState = {
163     personRes: { state: "empty" },
164     personBlocked: false,
165     siteRes: this.isoData.site_res,
166     showBanDialog: false,
167     removeData: false,
168     finished: new Map(),
169     isIsomorphic: false,
170   };
171
172   constructor(props: RouteComponentProps<{ username: string }>, context: any) {
173     super(props, context);
174
175     this.handleSortChange = this.handleSortChange.bind(this);
176     this.handlePageChange = this.handlePageChange.bind(this);
177
178     this.handleBlockPerson = this.handleBlockPerson.bind(this);
179     this.handleUnblockPerson = this.handleUnblockPerson.bind(this);
180
181     this.handleCreateComment = this.handleCreateComment.bind(this);
182     this.handleEditComment = this.handleEditComment.bind(this);
183     this.handleSaveComment = this.handleSaveComment.bind(this);
184     this.handleBlockPersonAlt = this.handleBlockPersonAlt.bind(this);
185     this.handleDeleteComment = this.handleDeleteComment.bind(this);
186     this.handleRemoveComment = this.handleRemoveComment.bind(this);
187     this.handleCommentVote = this.handleCommentVote.bind(this);
188     this.handleAddModToCommunity = this.handleAddModToCommunity.bind(this);
189     this.handleAddAdmin = this.handleAddAdmin.bind(this);
190     this.handlePurgePerson = this.handlePurgePerson.bind(this);
191     this.handlePurgeComment = this.handlePurgeComment.bind(this);
192     this.handleCommentReport = this.handleCommentReport.bind(this);
193     this.handleDistinguishComment = this.handleDistinguishComment.bind(this);
194     this.handleTransferCommunity = this.handleTransferCommunity.bind(this);
195     this.handleCommentReplyRead = this.handleCommentReplyRead.bind(this);
196     this.handlePersonMentionRead = this.handlePersonMentionRead.bind(this);
197     this.handleBanFromCommunity = this.handleBanFromCommunity.bind(this);
198     this.handleBanPerson = this.handleBanPerson.bind(this);
199     this.handlePostVote = this.handlePostVote.bind(this);
200     this.handlePostEdit = this.handlePostEdit.bind(this);
201     this.handlePostReport = this.handlePostReport.bind(this);
202     this.handleLockPost = this.handleLockPost.bind(this);
203     this.handleDeletePost = this.handleDeletePost.bind(this);
204     this.handleRemovePost = this.handleRemovePost.bind(this);
205     this.handleSavePost = this.handleSavePost.bind(this);
206     this.handlePurgePost = this.handlePurgePost.bind(this);
207     this.handleFeaturePost = this.handleFeaturePost.bind(this);
208
209     // Only fetch the data if coming from another route
210     if (FirstLoadService.isFirstLoad) {
211       this.state = {
212         ...this.state,
213         personRes: this.isoData.routeData.personResponse,
214         isIsomorphic: true,
215       };
216     }
217   }
218
219   async componentDidMount() {
220     if (!this.state.isIsomorphic) {
221       await this.fetchUserData();
222     }
223     setupTippy();
224   }
225
226   componentWillUnmount() {
227     saveScrollPosition(this.context);
228   }
229
230   async fetchUserData() {
231     const { page, sort, view } = getProfileQueryParams();
232
233     this.setState({ personRes: { state: "empty" } });
234     this.setState({
235       personRes: await HttpService.client.getPersonDetails({
236         username: this.props.match.params.username,
237         sort,
238         saved_only: view === PersonDetailsView.Saved,
239         page,
240         limit: fetchLimit,
241         auth: myAuth(),
242       }),
243     });
244     restoreScrollPosition(this.context);
245     this.setPersonBlock();
246   }
247
248   get amCurrentUser() {
249     if (this.state.personRes.state === "success") {
250       return (
251         UserService.Instance.myUserInfo?.local_user_view.person.id ===
252         this.state.personRes.data.person_view.person.id
253       );
254     } else {
255       return false;
256     }
257   }
258
259   setPersonBlock() {
260     const mui = UserService.Instance.myUserInfo;
261     const res = this.state.personRes;
262
263     if (mui && res.state === "success") {
264       this.setState({
265         personBlocked: mui.person_blocks.some(
266           ({ target: { id } }) => id === res.data.person_view.person.id
267         ),
268       });
269     }
270   }
271
272   static async fetchInitialData({
273     client,
274     path,
275     query: { page, sort, view: urlView },
276     auth,
277   }: InitialFetchRequest<QueryParams<ProfileProps>>): Promise<ProfileData> {
278     const pathSplit = path.split("/");
279
280     const username = pathSplit[2];
281     const view = getViewFromProps(urlView);
282
283     const form: GetPersonDetails = {
284       username: username,
285       sort: getSortTypeFromQuery(sort),
286       saved_only: view === PersonDetailsView.Saved,
287       page: getPageFromString(page),
288       limit: fetchLimit,
289       auth,
290     };
291
292     return {
293       personResponse: await client.getPersonDetails(form),
294     };
295   }
296
297   get documentTitle(): string {
298     const siteName = this.state.siteRes.site_view.site.name;
299     const res = this.state.personRes;
300     return res.state == "success"
301       ? `@${res.data.person_view.person.name} - ${siteName}`
302       : siteName;
303   }
304
305   renderPersonRes() {
306     switch (this.state.personRes.state) {
307       case "loading":
308         return (
309           <h5>
310             <Spinner large />
311           </h5>
312         );
313       case "success": {
314         const siteRes = this.state.siteRes;
315         const personRes = this.state.personRes.data;
316         const { page, sort, view } = getProfileQueryParams();
317
318         return (
319           <div className="row">
320             <div className="col-12 col-md-8">
321               <HtmlTags
322                 title={this.documentTitle}
323                 path={this.context.router.route.match.url}
324                 description={personRes.person_view.person.bio}
325                 image={personRes.person_view.person.avatar}
326               />
327
328               {this.userInfo(personRes.person_view)}
329
330               <hr />
331
332               {this.selects}
333
334               <PersonDetails
335                 personRes={personRes}
336                 admins={siteRes.admins}
337                 sort={sort}
338                 page={page}
339                 limit={fetchLimit}
340                 finished={this.state.finished}
341                 enableDownvotes={enableDownvotes(siteRes)}
342                 enableNsfw={enableNsfw(siteRes)}
343                 view={view}
344                 onPageChange={this.handlePageChange}
345                 allLanguages={siteRes.all_languages}
346                 siteLanguages={siteRes.discussion_languages}
347                 // TODO all the forms here
348                 onSaveComment={this.handleSaveComment}
349                 onBlockPerson={this.handleBlockPersonAlt}
350                 onDeleteComment={this.handleDeleteComment}
351                 onRemoveComment={this.handleRemoveComment}
352                 onCommentVote={this.handleCommentVote}
353                 onCommentReport={this.handleCommentReport}
354                 onDistinguishComment={this.handleDistinguishComment}
355                 onAddModToCommunity={this.handleAddModToCommunity}
356                 onAddAdmin={this.handleAddAdmin}
357                 onTransferCommunity={this.handleTransferCommunity}
358                 onPurgeComment={this.handlePurgeComment}
359                 onPurgePerson={this.handlePurgePerson}
360                 onCommentReplyRead={this.handleCommentReplyRead}
361                 onPersonMentionRead={this.handlePersonMentionRead}
362                 onBanPersonFromCommunity={this.handleBanFromCommunity}
363                 onBanPerson={this.handleBanPerson}
364                 onCreateComment={this.handleCreateComment}
365                 onEditComment={this.handleEditComment}
366                 onPostEdit={this.handlePostEdit}
367                 onPostVote={this.handlePostVote}
368                 onPostReport={this.handlePostReport}
369                 onLockPost={this.handleLockPost}
370                 onDeletePost={this.handleDeletePost}
371                 onRemovePost={this.handleRemovePost}
372                 onSavePost={this.handleSavePost}
373                 onPurgePost={this.handlePurgePost}
374                 onFeaturePost={this.handleFeaturePost}
375               />
376             </div>
377
378             <div className="col-12 col-md-4">
379               <Moderates moderates={personRes.moderates} />
380               {this.amCurrentUser && <Follows />}
381             </div>
382           </div>
383         );
384       }
385     }
386   }
387
388   render() {
389     return (
390       <div className="person-profile container-lg">
391         {this.renderPersonRes()}
392       </div>
393     );
394   }
395
396   get viewRadios() {
397     return (
398       <div className="btn-group btn-group-toggle flex-wrap mb-2">
399         {this.getRadio(PersonDetailsView.Overview)}
400         {this.getRadio(PersonDetailsView.Comments)}
401         {this.getRadio(PersonDetailsView.Posts)}
402         {this.amCurrentUser && this.getRadio(PersonDetailsView.Saved)}
403       </div>
404     );
405   }
406
407   getRadio(view: PersonDetailsView) {
408     const { view: urlView } = getProfileQueryParams();
409     const active = view === urlView;
410
411     return (
412       <label
413         className={classNames("btn btn-outline-secondary pointer", {
414           active,
415         })}
416       >
417         <input
418           type="radio"
419           className="btn-check"
420           value={view}
421           checked={active}
422           onChange={linkEvent(this, this.handleViewChange)}
423         />
424         {i18n.t(view.toLowerCase() as NoOptionI18nKeys)}
425       </label>
426     );
427   }
428
429   get selects() {
430     const { sort } = getProfileQueryParams();
431     const { username } = this.props.match.params;
432
433     const profileRss = `/feeds/u/${username}.xml?sort=${sort}`;
434
435     return (
436       <div className="mb-2">
437         <span className="me-3">{this.viewRadios}</span>
438         <SortSelect
439           sort={sort}
440           onChange={this.handleSortChange}
441           hideHot
442           hideMostComments
443         />
444         <a href={profileRss} rel={relTags} title="RSS">
445           <Icon icon="rss" classes="text-muted small mx-2" />
446         </a>
447         <link rel="alternate" type="application/atom+xml" href={profileRss} />
448       </div>
449     );
450   }
451
452   userInfo(pv: PersonView) {
453     const {
454       personBlocked,
455       siteRes: { admins },
456       showBanDialog,
457     } = this.state;
458
459     return (
460       pv && (
461         <div>
462           {!isBanned(pv.person) && (
463             <BannerIconHeader
464               banner={pv.person.banner}
465               icon={pv.person.avatar}
466             />
467           )}
468           <div className="mb-3">
469             <div className="">
470               <div className="mb-0 d-flex flex-wrap">
471                 <div>
472                   {pv.person.display_name && (
473                     <h5 className="mb-0">{pv.person.display_name}</h5>
474                   )}
475                   <ul className="list-inline mb-2">
476                     <li className="list-inline-item">
477                       <PersonListing
478                         person={pv.person}
479                         realLink
480                         useApubName
481                         muted
482                         hideAvatar
483                       />
484                     </li>
485                     {isBanned(pv.person) && (
486                       <li className="list-inline-item badge text-bg-danger">
487                         {i18n.t("banned")}
488                       </li>
489                     )}
490                     {pv.person.deleted && (
491                       <li className="list-inline-item badge text-bg-danger">
492                         {i18n.t("deleted")}
493                       </li>
494                     )}
495                     {pv.person.admin && (
496                       <li className="list-inline-item badge text-bg-light">
497                         {i18n.t("admin")}
498                       </li>
499                     )}
500                     {pv.person.bot_account && (
501                       <li className="list-inline-item badge text-bg-light">
502                         {i18n.t("bot_account").toLowerCase()}
503                       </li>
504                     )}
505                   </ul>
506                 </div>
507                 {this.banDialog(pv)}
508                 <div className="flex-grow-1 unselectable pointer mx-2"></div>
509                 {!this.amCurrentUser && UserService.Instance.myUserInfo && (
510                   <>
511                     <a
512                       className={`d-flex align-self-start btn btn-secondary me-2 ${
513                         !pv.person.matrix_user_id && "invisible"
514                       }`}
515                       rel={relTags}
516                       href={`https://matrix.to/#/${pv.person.matrix_user_id}`}
517                     >
518                       {i18n.t("send_secure_message")}
519                     </a>
520                     <Link
521                       className={
522                         "d-flex align-self-start btn btn-secondary me-2"
523                       }
524                       to={`/create_private_message/${pv.person.id}`}
525                     >
526                       {i18n.t("send_message")}
527                     </Link>
528                     {personBlocked ? (
529                       <button
530                         className={
531                           "d-flex align-self-start btn btn-secondary me-2"
532                         }
533                         onClick={linkEvent(
534                           pv.person.id,
535                           this.handleUnblockPerson
536                         )}
537                       >
538                         {i18n.t("unblock_user")}
539                       </button>
540                     ) : (
541                       <button
542                         className={
543                           "d-flex align-self-start btn btn-secondary me-2"
544                         }
545                         onClick={linkEvent(
546                           pv.person.id,
547                           this.handleBlockPerson
548                         )}
549                       >
550                         {i18n.t("block_user")}
551                       </button>
552                     )}
553                   </>
554                 )}
555
556                 {canMod(pv.person.id, undefined, admins) &&
557                   !isAdmin(pv.person.id, admins) &&
558                   !showBanDialog &&
559                   (!isBanned(pv.person) ? (
560                     <button
561                       className={
562                         "d-flex align-self-start btn btn-secondary me-2"
563                       }
564                       onClick={linkEvent(this, this.handleModBanShow)}
565                       aria-label={i18n.t("ban")}
566                     >
567                       {capitalizeFirstLetter(i18n.t("ban"))}
568                     </button>
569                   ) : (
570                     <button
571                       className={
572                         "d-flex align-self-start btn btn-secondary me-2"
573                       }
574                       onClick={linkEvent(this, this.handleModBanSubmit)}
575                       aria-label={i18n.t("unban")}
576                     >
577                       {capitalizeFirstLetter(i18n.t("unban"))}
578                     </button>
579                   ))}
580               </div>
581               {pv.person.bio && (
582                 <div className="d-flex align-items-center mb-2">
583                   <div
584                     className="md-div"
585                     dangerouslySetInnerHTML={mdToHtml(pv.person.bio)}
586                   />
587                 </div>
588               )}
589               <div>
590                 <ul className="list-inline mb-2">
591                   <li className="list-inline-item badge text-bg-light">
592                     {i18n.t("number_of_posts", {
593                       count: Number(pv.counts.post_count),
594                       formattedCount: numToSI(pv.counts.post_count),
595                     })}
596                   </li>
597                   <li className="list-inline-item badge text-bg-light">
598                     {i18n.t("number_of_comments", {
599                       count: Number(pv.counts.comment_count),
600                       formattedCount: numToSI(pv.counts.comment_count),
601                     })}
602                   </li>
603                 </ul>
604               </div>
605               <div className="text-muted">
606                 {i18n.t("joined")}{" "}
607                 <MomentTime
608                   published={pv.person.published}
609                   showAgo
610                   ignoreUpdated
611                 />
612               </div>
613               <div className="d-flex align-items-center text-muted mb-2">
614                 <Icon icon="cake" />
615                 <span className="ms-2">
616                   {i18n.t("cake_day_title")}{" "}
617                   {moment
618                     .utc(pv.person.published)
619                     .local()
620                     .format("MMM DD, YYYY")}
621                 </span>
622               </div>
623               {!UserService.Instance.myUserInfo && (
624                 <div className="alert alert-info" role="alert">
625                   {i18n.t("profile_not_logged_in_alert")}
626                 </div>
627               )}
628             </div>
629           </div>
630         </div>
631       )
632     );
633   }
634
635   banDialog(pv: PersonView) {
636     const { showBanDialog } = this.state;
637
638     return (
639       showBanDialog && (
640         <form onSubmit={linkEvent(this, this.handleModBanSubmit)}>
641           <div className="mb-3 row col-12">
642             <label className="col-form-label" htmlFor="profile-ban-reason">
643               {i18n.t("reason")}
644             </label>
645             <input
646               type="text"
647               id="profile-ban-reason"
648               className="form-control me-2"
649               placeholder={i18n.t("reason")}
650               value={this.state.banReason}
651               onInput={linkEvent(this, this.handleModBanReasonChange)}
652             />
653             <label className="col-form-label" htmlFor={`mod-ban-expires`}>
654               {i18n.t("expires")}
655             </label>
656             <input
657               type="number"
658               id={`mod-ban-expires`}
659               className="form-control me-2"
660               placeholder={i18n.t("number_of_days")}
661               value={this.state.banExpireDays}
662               onInput={linkEvent(this, this.handleModBanExpireDaysChange)}
663             />
664             <div className="input-group mb-3">
665               <div className="form-check">
666                 <input
667                   className="form-check-input"
668                   id="mod-ban-remove-data"
669                   type="checkbox"
670                   checked={this.state.removeData}
671                   onChange={linkEvent(this, this.handleModRemoveDataChange)}
672                 />
673                 <label
674                   className="form-check-label"
675                   htmlFor="mod-ban-remove-data"
676                   title={i18n.t("remove_content_more")}
677                 >
678                   {i18n.t("remove_content")}
679                 </label>
680               </div>
681             </div>
682           </div>
683           {/* TODO hold off on expires until later */}
684           {/* <div class="mb-3 row"> */}
685           {/*   <label class="col-form-label">Expires</label> */}
686           {/*   <input type="date" class="form-control me-2" placeholder={i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
687           {/* </div> */}
688           <div className="mb-3 row">
689             <button
690               type="reset"
691               className="btn btn-secondary me-2"
692               aria-label={i18n.t("cancel")}
693               onClick={linkEvent(this, this.handleModBanSubmitCancel)}
694             >
695               {i18n.t("cancel")}
696             </button>
697             <button
698               type="submit"
699               className="btn btn-secondary"
700               aria-label={i18n.t("ban")}
701             >
702               {i18n.t("ban")} {pv.person.name}
703             </button>
704           </div>
705         </form>
706       )
707     );
708   }
709
710   async updateUrl({ page, sort, view }: Partial<ProfileProps>) {
711     const {
712       page: urlPage,
713       sort: urlSort,
714       view: urlView,
715     } = getProfileQueryParams();
716
717     const queryParams: QueryParams<ProfileProps> = {
718       page: (page ?? urlPage).toString(),
719       sort: sort ?? urlSort,
720       view: view ?? urlView,
721     };
722
723     const { username } = this.props.match.params;
724
725     this.props.history.push(`/u/${username}${getQueryString(queryParams)}`);
726     await this.fetchUserData();
727   }
728
729   handlePageChange(page: number) {
730     this.updateUrl({ page });
731   }
732
733   handleSortChange(sort: SortType) {
734     this.updateUrl({ sort, page: 1 });
735   }
736
737   handleViewChange(i: Profile, event: any) {
738     i.updateUrl({
739       view: PersonDetailsView[event.target.value],
740       page: 1,
741     });
742   }
743
744   handleModBanShow(i: Profile) {
745     i.setState({ showBanDialog: true });
746   }
747
748   handleModBanReasonChange(i: Profile, event: any) {
749     i.setState({ banReason: event.target.value });
750   }
751
752   handleModBanExpireDaysChange(i: Profile, event: any) {
753     i.setState({ banExpireDays: event.target.value });
754   }
755
756   handleModRemoveDataChange(i: Profile, event: any) {
757     i.setState({ removeData: event.target.checked });
758   }
759
760   handleModBanSubmitCancel(i: Profile) {
761     i.setState({ showBanDialog: false });
762   }
763
764   async handleModBanSubmit(i: Profile, event: any) {
765     event.preventDefault();
766     const { removeData, banReason, banExpireDays } = i.state;
767
768     const personRes = i.state.personRes;
769
770     if (personRes.state == "success") {
771       const person = personRes.data.person_view.person;
772       const ban = !person.banned;
773
774       // If its an unban, restore all their data
775       if (!ban) {
776         i.setState({ removeData: false });
777       }
778
779       const res = await HttpService.client.banPerson({
780         person_id: person.id,
781         ban,
782         remove_data: removeData,
783         reason: banReason,
784         expires: futureDaysToUnixTime(banExpireDays),
785         auth: myAuthRequired(),
786       });
787       // TODO
788       this.updateBan(res);
789       i.setState({ showBanDialog: false });
790     }
791   }
792
793   async toggleBlockPerson(recipientId: number, block: boolean) {
794     const res = await HttpService.client.blockPerson({
795       person_id: recipientId,
796       block,
797       auth: myAuthRequired(),
798     });
799     if (res.state == "success") {
800       updatePersonBlock(res.data);
801     }
802   }
803
804   handleUnblockPerson(personId: number) {
805     this.toggleBlockPerson(personId, false);
806   }
807
808   handleBlockPerson(personId: number) {
809     this.toggleBlockPerson(personId, true);
810   }
811
812   async handleAddModToCommunity(form: AddModToCommunity) {
813     // TODO not sure what to do here
814     await HttpService.client.addModToCommunity(form);
815   }
816
817   async handlePurgePerson(form: PurgePerson) {
818     const purgePersonRes = await HttpService.client.purgePerson(form);
819     this.purgeItem(purgePersonRes);
820   }
821
822   async handlePurgeComment(form: PurgeComment) {
823     const purgeCommentRes = await HttpService.client.purgeComment(form);
824     this.purgeItem(purgeCommentRes);
825   }
826
827   async handlePurgePost(form: PurgePost) {
828     const purgeRes = await HttpService.client.purgePost(form);
829     this.purgeItem(purgeRes);
830   }
831
832   async handleBlockPersonAlt(form: BlockPerson) {
833     const blockPersonRes = await HttpService.client.blockPerson(form);
834     if (blockPersonRes.state === "success") {
835       updatePersonBlock(blockPersonRes.data);
836     }
837   }
838
839   async handleCreateComment(form: CreateComment) {
840     const createCommentRes = await HttpService.client.createComment(form);
841     this.createAndUpdateComments(createCommentRes);
842
843     return createCommentRes;
844   }
845
846   async handleEditComment(form: EditComment) {
847     const editCommentRes = await HttpService.client.editComment(form);
848     this.findAndUpdateComment(editCommentRes);
849
850     return editCommentRes;
851   }
852
853   async handleDeleteComment(form: DeleteComment) {
854     const deleteCommentRes = await HttpService.client.deleteComment(form);
855     this.findAndUpdateComment(deleteCommentRes);
856   }
857
858   async handleDeletePost(form: DeletePost) {
859     const deleteRes = await HttpService.client.deletePost(form);
860     this.findAndUpdatePost(deleteRes);
861   }
862
863   async handleRemovePost(form: RemovePost) {
864     const removeRes = await HttpService.client.removePost(form);
865     this.findAndUpdatePost(removeRes);
866   }
867
868   async handleRemoveComment(form: RemoveComment) {
869     const removeCommentRes = await HttpService.client.removeComment(form);
870     this.findAndUpdateComment(removeCommentRes);
871   }
872
873   async handleSaveComment(form: SaveComment) {
874     const saveCommentRes = await HttpService.client.saveComment(form);
875     this.findAndUpdateComment(saveCommentRes);
876   }
877
878   async handleSavePost(form: SavePost) {
879     const saveRes = await HttpService.client.savePost(form);
880     this.findAndUpdatePost(saveRes);
881   }
882
883   async handleFeaturePost(form: FeaturePost) {
884     const featureRes = await HttpService.client.featurePost(form);
885     this.findAndUpdatePost(featureRes);
886   }
887
888   async handleCommentVote(form: CreateCommentLike) {
889     const voteRes = await HttpService.client.likeComment(form);
890     this.findAndUpdateComment(voteRes);
891   }
892
893   async handlePostVote(form: CreatePostLike) {
894     const voteRes = await HttpService.client.likePost(form);
895     this.findAndUpdatePost(voteRes);
896   }
897
898   async handlePostEdit(form: EditPost) {
899     const res = await HttpService.client.editPost(form);
900     this.findAndUpdatePost(res);
901   }
902
903   async handleCommentReport(form: CreateCommentReport) {
904     const reportRes = await HttpService.client.createCommentReport(form);
905     if (reportRes.state === "success") {
906       toast(i18n.t("report_created"));
907     }
908   }
909
910   async handlePostReport(form: CreatePostReport) {
911     const reportRes = await HttpService.client.createPostReport(form);
912     if (reportRes.state === "success") {
913       toast(i18n.t("report_created"));
914     }
915   }
916
917   async handleLockPost(form: LockPost) {
918     const lockRes = await HttpService.client.lockPost(form);
919     this.findAndUpdatePost(lockRes);
920   }
921
922   async handleDistinguishComment(form: DistinguishComment) {
923     const distinguishRes = await HttpService.client.distinguishComment(form);
924     this.findAndUpdateComment(distinguishRes);
925   }
926
927   async handleAddAdmin(form: AddAdmin) {
928     const addAdminRes = await HttpService.client.addAdmin(form);
929
930     if (addAdminRes.state == "success") {
931       this.setState(s => ((s.siteRes.admins = addAdminRes.data.admins), s));
932     }
933   }
934
935   async handleTransferCommunity(form: TransferCommunity) {
936     await HttpService.client.transferCommunity(form);
937     toast(i18n.t("transfer_community"));
938   }
939
940   async handleCommentReplyRead(form: MarkCommentReplyAsRead) {
941     const readRes = await HttpService.client.markCommentReplyAsRead(form);
942     this.findAndUpdateCommentReply(readRes);
943   }
944
945   async handlePersonMentionRead(form: MarkPersonMentionAsRead) {
946     // TODO not sure what to do here. Maybe it is actually optional, because post doesn't need it.
947     await HttpService.client.markPersonMentionAsRead(form);
948   }
949
950   async handleBanFromCommunity(form: BanFromCommunity) {
951     const banRes = await HttpService.client.banFromCommunity(form);
952     this.updateBanFromCommunity(banRes);
953   }
954
955   async handleBanPerson(form: BanPerson) {
956     const banRes = await HttpService.client.banPerson(form);
957     this.updateBan(banRes);
958   }
959
960   updateBanFromCommunity(banRes: RequestState<BanFromCommunityResponse>) {
961     // Maybe not necessary
962     if (banRes.state === "success") {
963       this.setState(s => {
964         if (s.personRes.state == "success") {
965           s.personRes.data.posts
966             .filter(c => c.creator.id === banRes.data.person_view.person.id)
967             .forEach(
968               c => (c.creator_banned_from_community = banRes.data.banned)
969             );
970
971           s.personRes.data.comments
972             .filter(c => c.creator.id === banRes.data.person_view.person.id)
973             .forEach(
974               c => (c.creator_banned_from_community = banRes.data.banned)
975             );
976         }
977         return s;
978       });
979     }
980   }
981
982   updateBan(banRes: RequestState<BanPersonResponse>) {
983     // Maybe not necessary
984     if (banRes.state == "success") {
985       this.setState(s => {
986         if (s.personRes.state == "success") {
987           s.personRes.data.posts
988             .filter(c => c.creator.id == banRes.data.person_view.person.id)
989             .forEach(c => (c.creator.banned = banRes.data.banned));
990           s.personRes.data.comments
991             .filter(c => c.creator.id == banRes.data.person_view.person.id)
992             .forEach(c => (c.creator.banned = banRes.data.banned));
993         }
994         return s;
995       });
996     }
997   }
998
999   purgeItem(purgeRes: RequestState<PurgeItemResponse>) {
1000     if (purgeRes.state == "success") {
1001       toast(i18n.t("purge_success"));
1002       this.context.router.history.push(`/`);
1003     }
1004   }
1005
1006   findAndUpdateComment(res: RequestState<CommentResponse>) {
1007     this.setState(s => {
1008       if (s.personRes.state == "success" && res.state == "success") {
1009         s.personRes.data.comments = editComment(
1010           res.data.comment_view,
1011           s.personRes.data.comments
1012         );
1013         s.finished.set(res.data.comment_view.comment.id, true);
1014       }
1015       return s;
1016     });
1017   }
1018
1019   createAndUpdateComments(res: RequestState<CommentResponse>) {
1020     this.setState(s => {
1021       if (s.personRes.state == "success" && res.state == "success") {
1022         s.personRes.data.comments.unshift(res.data.comment_view);
1023         // Set finished for the parent
1024         s.finished.set(
1025           getCommentParentId(res.data.comment_view.comment) ?? 0,
1026           true
1027         );
1028       }
1029       return s;
1030     });
1031   }
1032
1033   findAndUpdateCommentReply(res: RequestState<CommentReplyResponse>) {
1034     this.setState(s => {
1035       if (s.personRes.state == "success" && res.state == "success") {
1036         s.personRes.data.comments = editWith(
1037           res.data.comment_reply_view,
1038           s.personRes.data.comments
1039         );
1040       }
1041       return s;
1042     });
1043   }
1044
1045   findAndUpdatePost(res: RequestState<PostResponse>) {
1046     this.setState(s => {
1047       if (s.personRes.state == "success" && res.state == "success") {
1048         s.personRes.data.posts = editPost(
1049           res.data.post_view,
1050           s.personRes.data.posts
1051         );
1052       }
1053       return s;
1054     });
1055   }
1056 }