]> Untitled Git - lemmy-ui.git/blob - src/shared/components/post/post-listing.tsx
fix: Remove unnecessary class
[lemmy-ui.git] / src / shared / components / post / post-listing.tsx
1 import { myAuthRequired } from "@utils/app";
2 import { canShare, share } from "@utils/browser";
3 import { getExternalHost, getHttpBase } from "@utils/env";
4 import {
5   capitalizeFirstLetter,
6   futureDaysToUnixTime,
7   hostname,
8 } from "@utils/helpers";
9 import { isImage, isVideo } from "@utils/media";
10 import {
11   amAdmin,
12   amCommunityCreator,
13   amMod,
14   canAdmin,
15   canMod,
16   isAdmin,
17   isBanned,
18   isMod,
19 } from "@utils/roles";
20 import classNames from "classnames";
21 import { Component, linkEvent } from "inferno";
22 import { Link } from "inferno-router";
23 import {
24   AddAdmin,
25   AddModToCommunity,
26   BanFromCommunity,
27   BanPerson,
28   BlockPerson,
29   CommunityModeratorView,
30   CreatePostLike,
31   CreatePostReport,
32   DeletePost,
33   EditPost,
34   FeaturePost,
35   Language,
36   LockPost,
37   PersonView,
38   PostView,
39   PurgePerson,
40   PurgePost,
41   RemovePost,
42   SavePost,
43   TransferCommunity,
44 } from "lemmy-js-client";
45 import { relTags } from "../../config";
46 import {
47   BanType,
48   PostFormParams,
49   PurgeType,
50   VoteContentType,
51 } from "../../interfaces";
52 import { mdNoImages, mdToHtml, mdToHtmlInline } from "../../markdown";
53 import { I18NextService, UserService } from "../../services";
54 import { setupTippy } from "../../tippy";
55 import { Icon, PurgeWarning, Spinner } from "../common/icon";
56 import { MomentTime } from "../common/moment-time";
57 import { PictrsImage } from "../common/pictrs-image";
58 import { VoteButtons, VoteButtonsCompact } from "../common/vote-buttons";
59 import { CommunityLink } from "../community/community-link";
60 import { PersonListing } from "../person/person-listing";
61 import { MetadataCard } from "./metadata-card";
62 import { PostForm } from "./post-form";
63
64 interface PostListingState {
65   showEdit: boolean;
66   showRemoveDialog: boolean;
67   showPurgeDialog: boolean;
68   purgeReason?: string;
69   purgeType?: PurgeType;
70   purgeLoading: boolean;
71   removeReason?: string;
72   showBanDialog: boolean;
73   banReason?: string;
74   banExpireDays?: number;
75   banType?: BanType;
76   removeData?: boolean;
77   showConfirmTransferSite: boolean;
78   showConfirmTransferCommunity: boolean;
79   imageExpanded: boolean;
80   viewSource: boolean;
81   showAdvanced: boolean;
82   showMoreMobile: boolean;
83   showBody: boolean;
84   showReportDialog: boolean;
85   reportReason?: string;
86   reportLoading: boolean;
87   blockLoading: boolean;
88   lockLoading: boolean;
89   deleteLoading: boolean;
90   removeLoading: boolean;
91   saveLoading: boolean;
92   featureCommunityLoading: boolean;
93   featureLocalLoading: boolean;
94   banLoading: boolean;
95   addModLoading: boolean;
96   addAdminLoading: boolean;
97   transferLoading: boolean;
98 }
99
100 interface PostListingProps {
101   post_view: PostView;
102   crossPosts?: PostView[];
103   moderators?: CommunityModeratorView[];
104   admins?: PersonView[];
105   allLanguages: Language[];
106   siteLanguages: number[];
107   showCommunity?: boolean;
108   showBody?: boolean;
109   hideImage?: boolean;
110   enableDownvotes?: boolean;
111   enableNsfw?: boolean;
112   viewOnly?: boolean;
113   onPostEdit(form: EditPost): void;
114   onPostVote(form: CreatePostLike): void;
115   onPostReport(form: CreatePostReport): void;
116   onBlockPerson(form: BlockPerson): void;
117   onLockPost(form: LockPost): void;
118   onDeletePost(form: DeletePost): void;
119   onRemovePost(form: RemovePost): void;
120   onSavePost(form: SavePost): void;
121   onFeaturePost(form: FeaturePost): void;
122   onPurgePerson(form: PurgePerson): void;
123   onPurgePost(form: PurgePost): void;
124   onBanPersonFromCommunity(form: BanFromCommunity): void;
125   onBanPerson(form: BanPerson): void;
126   onAddModToCommunity(form: AddModToCommunity): void;
127   onAddAdmin(form: AddAdmin): void;
128   onTransferCommunity(form: TransferCommunity): void;
129 }
130
131 export class PostListing extends Component<PostListingProps, PostListingState> {
132   state: PostListingState = {
133     showEdit: false,
134     showRemoveDialog: false,
135     showPurgeDialog: false,
136     purgeType: PurgeType.Person,
137     showBanDialog: false,
138     banType: BanType.Community,
139     removeData: false,
140     showConfirmTransferSite: false,
141     showConfirmTransferCommunity: false,
142     imageExpanded: false,
143     viewSource: false,
144     showAdvanced: false,
145     showMoreMobile: false,
146     showBody: false,
147     showReportDialog: false,
148     purgeLoading: false,
149     reportLoading: false,
150     blockLoading: false,
151     lockLoading: false,
152     deleteLoading: false,
153     removeLoading: false,
154     saveLoading: false,
155     featureCommunityLoading: false,
156     featureLocalLoading: false,
157     banLoading: false,
158     addModLoading: false,
159     addAdminLoading: false,
160     transferLoading: false,
161   };
162
163   constructor(props: any, context: any) {
164     super(props, context);
165
166     this.handleEditPost = this.handleEditPost.bind(this);
167     this.handleEditCancel = this.handleEditCancel.bind(this);
168   }
169
170   get postView(): PostView {
171     return this.props.post_view;
172   }
173
174   render() {
175     const post = this.postView.post;
176
177     return (
178       <div className="post-listing mt-2">
179         {!this.state.showEdit ? (
180           <>
181             {this.listing()}
182             {this.state.imageExpanded && !this.props.hideImage && this.img}
183             {post.url && this.state.showBody && post.embed_title && (
184               <MetadataCard post={post} />
185             )}
186             {this.showBody && this.body()}
187           </>
188         ) : (
189           <PostForm
190             post_view={this.postView}
191             crossPosts={this.props.crossPosts}
192             onEdit={this.handleEditPost}
193             onCancel={this.handleEditCancel}
194             enableNsfw={this.props.enableNsfw}
195             enableDownvotes={this.props.enableDownvotes}
196             allLanguages={this.props.allLanguages}
197             siteLanguages={this.props.siteLanguages}
198           />
199         )}
200       </div>
201     );
202   }
203
204   body() {
205     const body = this.postView.post.body;
206     return body ? (
207       <article id="postContent" className="col-12 card my-2 p-2">
208         {this.state.viewSource ? (
209           <pre>{body}</pre>
210         ) : (
211           <div className="md-div" dangerouslySetInnerHTML={mdToHtml(body)} />
212         )}
213       </article>
214     ) : (
215       <></>
216     );
217   }
218
219   get img() {
220     if (this.imageSrc) {
221       return (
222         <>
223           <div className="offset-sm-3 my-2 d-none d-sm-block">
224             <a href={this.imageSrc} className="d-inline-block">
225               <PictrsImage src={this.imageSrc} />
226             </a>
227           </div>
228           <div className="my-2 d-block d-sm-none">
229             <button
230               type="button"
231               className="p-0 border-0 bg-transparent d-inline-block"
232               onClick={linkEvent(this, this.handleImageExpandClick)}
233             >
234               <PictrsImage src={this.imageSrc} />
235             </button>
236           </div>
237         </>
238       );
239     }
240
241     const { post } = this.postView;
242     const { url } = post;
243
244     // if direct video link
245     if (url && isVideo(url)) {
246       return (
247         <div className="embed-responsive mt-3">
248           <video muted controls className="embed-responsive-item col-12">
249             <source src={url} type="video/mp4" />
250           </video>
251         </div>
252       );
253     }
254
255     // if embedded video link
256     if (url && post.embed_video_url) {
257       return (
258         <div className="ratio ratio-16x9">
259           <iframe
260             allowFullScreen
261             className="post-metadata-iframe"
262             src={post.embed_video_url}
263             title={post.embed_title}
264           ></iframe>
265         </div>
266       );
267     }
268
269     return <></>;
270   }
271
272   imgThumb(src: string) {
273     const post_view = this.postView;
274     return (
275       <PictrsImage
276         src={src}
277         thumbnail
278         alt=""
279         nsfw={post_view.post.nsfw || post_view.community.nsfw}
280       />
281     );
282   }
283
284   get imageSrc(): string | undefined {
285     const post = this.postView.post;
286     const url = post.url;
287     const thumbnail = post.thumbnail_url;
288
289     if (url && isImage(url)) {
290       if (url.includes("pictrs")) {
291         return url;
292       } else if (thumbnail) {
293         return thumbnail;
294       } else {
295         return url;
296       }
297     } else if (thumbnail) {
298       return thumbnail;
299     } else {
300       return undefined;
301     }
302   }
303
304   thumbnail() {
305     const post = this.postView.post;
306     const url = post.url;
307     const thumbnail = post.thumbnail_url;
308
309     if (!this.props.hideImage && url && isImage(url) && this.imageSrc) {
310       return (
311         <a
312           href={this.imageSrc}
313           className="text-body d-inline-block position-relative mb-2"
314           data-tippy-content={I18NextService.i18n.t("expand_here")}
315           onClick={linkEvent(this, this.handleImageExpandClick)}
316           aria-label={I18NextService.i18n.t("expand_here")}
317         >
318           {this.imgThumb(this.imageSrc)}
319           <Icon icon="image" classes="mini-overlay" />
320         </a>
321       );
322     } else if (!this.props.hideImage && url && thumbnail && this.imageSrc) {
323       return (
324         <a
325           className="text-body d-inline-block position-relative mb-2"
326           href={url}
327           rel={relTags}
328           title={url}
329         >
330           {this.imgThumb(this.imageSrc)}
331           <Icon icon="external-link" classes="mini-overlay" />
332         </a>
333       );
334     } else if (url) {
335       if ((!this.props.hideImage && isVideo(url)) || post.embed_video_url) {
336         return (
337           <a
338             className="text-body"
339             href={url}
340             title={url}
341             rel={relTags}
342             data-tippy-content={I18NextService.i18n.t("expand_here")}
343             onClick={linkEvent(this, this.handleImageExpandClick)}
344             aria-label={I18NextService.i18n.t("expand_here")}
345           >
346             <div className="thumbnail rounded bg-light d-flex justify-content-center">
347               <Icon icon="play" classes="d-flex align-items-center" />
348             </div>
349           </a>
350         );
351       } else {
352         return (
353           <a className="text-body" href={url} title={url} rel={relTags}>
354             <div className="thumbnail rounded bg-light d-flex justify-content-center">
355               <Icon icon="external-link" classes="d-flex align-items-center" />
356             </div>
357           </a>
358         );
359       }
360     } else {
361       return (
362         <Link
363           className="text-body"
364           to={`/post/${post.id}`}
365           title={I18NextService.i18n.t("comments")}
366         >
367           <div className="thumbnail rounded bg-light d-flex justify-content-center">
368             <Icon icon="message-square" classes="d-flex align-items-center" />
369           </div>
370         </Link>
371       );
372     }
373   }
374
375   createdLine() {
376     const post_view = this.postView;
377     return (
378       <span className="small">
379         <PersonListing person={post_view.creator} muted={true} />
380         {this.creatorIsMod_ && (
381           <span className="mx-1 badge text-bg-light">
382             {I18NextService.i18n.t("mod")}
383           </span>
384         )}
385         {this.creatorIsAdmin_ && (
386           <span className="mx-1 badge text-bg-light">
387             {I18NextService.i18n.t("admin")}
388           </span>
389         )}
390         {post_view.creator.bot_account && (
391           <span className="mx-1 badge text-bg-light">
392             {I18NextService.i18n.t("bot_account").toLowerCase()}
393           </span>
394         )}
395         {this.props.showCommunity && (
396           <>
397             {" "}
398             {I18NextService.i18n.t("to")}{" "}
399             <CommunityLink community={post_view.community} />
400           </>
401         )}
402         {post_view.post.language_id !== 0 && (
403           <span className="mx-1 badge text-bg-light">
404             {
405               this.props.allLanguages.find(
406                 lang => lang.id === post_view.post.language_id
407               )?.name
408             }
409           </span>
410         )}{" "}
411         •{" "}
412         <MomentTime
413           published={post_view.post.published}
414           updated={post_view.post.updated}
415         />
416       </span>
417     );
418   }
419
420   get postLink() {
421     const post = this.postView.post;
422     return (
423       <Link
424         className={`d-inline ${
425           !post.featured_community && !post.featured_local
426             ? "link-dark"
427             : "link-primary"
428         }`}
429         to={`/post/${post.id}`}
430         title={I18NextService.i18n.t("comments")}
431       >
432         <span
433           className="d-inline"
434           dangerouslySetInnerHTML={mdToHtmlInline(post.name)}
435         />
436       </Link>
437     );
438   }
439
440   postTitleLine() {
441     const post = this.postView.post;
442     const url = post.url;
443
444     return (
445       <>
446         <div className="post-title overflow-hidden">
447           <h5 className="d-inline">
448             {url && this.props.showBody ? (
449               <a
450                 className={
451                   !post.featured_community && !post.featured_local
452                     ? "link-dark"
453                     : "link-primary"
454                 }
455                 href={url}
456                 title={url}
457                 rel={relTags}
458                 dangerouslySetInnerHTML={mdToHtmlInline(post.name)}
459               ></a>
460             ) : (
461               this.postLink
462             )}
463           </h5>
464           {(url && isImage(url)) ||
465             (post.thumbnail_url && (
466               <button
467                 className="btn btn-sm text-monospace text-muted d-inline-block"
468                 data-tippy-content={I18NextService.i18n.t("expand_here")}
469                 onClick={linkEvent(this, this.handleImageExpandClick)}
470               >
471                 <Icon
472                   icon={
473                     !this.state.imageExpanded ? "plus-square" : "minus-square"
474                   }
475                   classes="icon-inline"
476                 />
477               </button>
478             ))}
479
480           {/**
481            * If there is a URL, or if the post has a body and we were told not to
482            * show the body, show the MetadataCard/body toggle.
483            */}
484           {(post.url || (post.body && !this.props.showBody)) && (
485             <button
486               className="btn btn-sm btn-link link-dark link-opacity-75 link-opacity-100-hover py-0 align-baseline"
487               data-tippy-content={post.body && mdNoImages.render(post.body)}
488               data-tippy-allowHtml={true}
489               onClick={linkEvent(this, this.handleShowBody)}
490             >
491               <Icon
492                 icon={!this.state.showBody ? "plus-square" : "minus-square"}
493                 classes="icon-inline"
494               />
495             </button>
496           )}
497
498           {post.removed && (
499             <small className="ms-2 badge text-bg-secondary">
500               {I18NextService.i18n.t("removed")}
501             </small>
502           )}
503           {post.deleted && (
504             <small
505               className="unselectable pointer ms-2 text-muted fst-italic"
506               data-tippy-content={I18NextService.i18n.t("deleted")}
507             >
508               <Icon icon="trash" classes="icon-inline text-danger" />
509             </small>
510           )}
511           {post.locked && (
512             <small
513               className="unselectable pointer ms-2 text-muted fst-italic"
514               data-tippy-content={I18NextService.i18n.t("locked")}
515             >
516               <Icon icon="lock" classes="icon-inline text-danger" />
517             </small>
518           )}
519           {post.featured_community && (
520             <small
521               className="unselectable pointer ms-2 text-muted fst-italic"
522               data-tippy-content={I18NextService.i18n.t(
523                 "featured_in_community"
524               )}
525               aria-label={I18NextService.i18n.t("featured_in_community")}
526             >
527               <Icon icon="pin" classes="icon-inline text-primary" />
528             </small>
529           )}
530           {post.featured_local && (
531             <small
532               className="unselectable pointer ms-2 text-muted fst-italic"
533               data-tippy-content={I18NextService.i18n.t("featured_in_local")}
534               aria-label={I18NextService.i18n.t("featured_in_local")}
535             >
536               <Icon icon="pin" classes="icon-inline text-secondary" />
537             </small>
538           )}
539           {post.nsfw && (
540             <small className="ms-2 badge text-bg-danger">
541               {I18NextService.i18n.t("nsfw")}
542             </small>
543           )}
544         </div>
545         {url && this.urlLine()}
546       </>
547     );
548   }
549
550   urlLine() {
551     const post = this.postView.post;
552     const url = post.url;
553
554     return (
555       <p className="small m-0">
556         {url && !(hostname(url) === getExternalHost()) && (
557           <a
558             className="fst-italic link-dark link-opacity-75 link-opacity-100-hover"
559             href={url}
560             title={url}
561             rel={relTags}
562           >
563             {hostname(url)}
564           </a>
565         )}
566       </p>
567     );
568   }
569
570   duplicatesLine() {
571     const dupes = this.props.crossPosts;
572     return dupes && dupes.length > 0 ? (
573       <ul className="list-inline mb-1 small text-muted">
574         <>
575           <li className="list-inline-item me-2">
576             {I18NextService.i18n.t("cross_posted_to")}
577           </li>
578           {dupes.map(pv => (
579             <li key={pv.post.id} className="list-inline-item me-2">
580               <Link to={`/post/${pv.post.id}`}>
581                 {pv.community.local
582                   ? pv.community.name
583                   : `${pv.community.name}@${hostname(pv.community.actor_id)}`}
584               </Link>
585             </li>
586           ))}
587         </>
588       </ul>
589     ) : (
590       <></>
591     );
592   }
593
594   commentsLine(mobile = false) {
595     const post = this.postView.post;
596
597     return (
598       <div className="d-flex align-items-center justify-content-start flex-wrap text-muted">
599         {this.commentsButton}
600         {canShare() && (
601           <button
602             className="btn btn-sm btn-animate text-muted py-0"
603             onClick={linkEvent(this, this.handleShare)}
604             type="button"
605           >
606             <Icon icon="share" inline />
607           </button>
608         )}
609         {!post.local && (
610           <a
611             className="btn btn-sm btn-animate text-muted py-0"
612             title={I18NextService.i18n.t("link")}
613             href={post.ap_id}
614           >
615             <Icon icon="fedilink" inline />
616           </a>
617         )}
618         {mobile && !this.props.viewOnly && (
619           <VoteButtonsCompact
620             voteContentType={VoteContentType.Post}
621             id={this.postView.post.id}
622             onVote={this.props.onPostVote}
623             enableDownvotes={this.props.enableDownvotes}
624             counts={this.postView.counts}
625             my_vote={this.postView.my_vote}
626           />
627         )}
628         {UserService.Instance.myUserInfo &&
629           !this.props.viewOnly &&
630           this.postActions()}
631       </div>
632     );
633   }
634
635   postActions() {
636     // Possible enhancement: Priority+ pattern instead of just hard coding which get hidden behind the show more button.
637     // Possible enhancement: Make each button a component.
638     const post_view = this.postView;
639     const post = post_view.post;
640
641     return (
642       <>
643         {this.saveButton}
644         {this.crossPostButton}
645
646         {this.props.showBody && post_view.post.body && this.viewSourceButton}
647
648         <div className="dropdown">
649           <button
650             className="btn btn-sm btn-animate text-muted py-0 dropdown-toggle"
651             onClick={linkEvent(this, this.handleShowAdvanced)}
652             data-tippy-content={I18NextService.i18n.t("more")}
653             data-bs-toggle="dropdown"
654             aria-expanded="false"
655             aria-controls={`advancedButtonsDropdown${post.id}`}
656             aria-label={I18NextService.i18n.t("more")}
657           >
658             <Icon icon="more-vertical" inline />
659           </button>
660
661           <ul
662             className="dropdown-menu"
663             id={`advancedButtonsDropdown${post.id}`}
664           >
665             {!this.myPost ? (
666               <>
667                 <li>{this.reportButton}</li>
668                 <li>{this.blockButton}</li>
669               </>
670             ) : (
671               <>
672                 <li>{this.editButton}</li>
673                 <li>{this.deleteButton}</li>
674               </>
675             )}
676
677             {/* Any mod can do these, not limited to hierarchy*/}
678             {(amMod(this.props.moderators) || amAdmin()) && (
679               <>
680                 <li>
681                   <hr className="dropdown-divider" />
682                 </li>
683                 <li>{this.lockButton}</li>
684                 {this.featureButtons}
685               </>
686             )}
687
688             {(this.canMod_ || this.canAdmin_) && (
689               <li>{this.modRemoveButton}</li>
690             )}
691           </ul>
692         </div>
693       </>
694     );
695   }
696
697   get commentsButton() {
698     const post_view = this.postView;
699     const title = I18NextService.i18n.t("number_of_comments", {
700       count: Number(post_view.counts.comments),
701       formattedCount: Number(post_view.counts.comments),
702     });
703
704     return (
705       <Link
706         className="btn btn-link btn-sm text-muted ps-0"
707         title={title}
708         to={`/post/${post_view.post.id}?scrollToComments=true`}
709         data-tippy-content={title}
710       >
711         <Icon icon="message-square" classes="me-1" inline />
712         {post_view.counts.comments}
713         {this.unreadCount && (
714           <>
715             {" "}
716             <span className="fst-italic">
717               ({this.unreadCount} {I18NextService.i18n.t("new")})
718             </span>
719           </>
720         )}
721       </Link>
722     );
723   }
724
725   get unreadCount(): number | undefined {
726     const pv = this.postView;
727     return pv.unread_comments == pv.counts.comments || pv.unread_comments == 0
728       ? undefined
729       : pv.unread_comments;
730   }
731
732   get saveButton() {
733     const saved = this.postView.saved;
734     const label = saved
735       ? I18NextService.i18n.t("unsave")
736       : I18NextService.i18n.t("save");
737     return (
738       <button
739         className="btn btn-sm btn-animate text-muted py-0"
740         onClick={linkEvent(this, this.handleSavePostClick)}
741         data-tippy-content={label}
742         aria-label={label}
743       >
744         {this.state.saveLoading ? (
745           <Spinner />
746         ) : (
747           <Icon
748             icon="star"
749             classes={classNames({ "text-warning": saved })}
750             inline
751           />
752         )}
753       </button>
754     );
755   }
756
757   get crossPostButton() {
758     return (
759       <Link
760         className="btn btn-sm btn-animate text-muted py-0"
761         to={{
762           /* Empty string properties are required to satisfy type*/
763           pathname: "/create_post",
764           state: { ...this.crossPostParams },
765           hash: "",
766           key: "",
767           search: "",
768         }}
769         title={I18NextService.i18n.t("cross_post")}
770         data-tippy-content={I18NextService.i18n.t("cross_post")}
771         aria-label={I18NextService.i18n.t("cross_post")}
772       >
773         <Icon icon="copy" inline />
774       </Link>
775     );
776   }
777
778   get reportButton() {
779     return (
780       <button
781         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
782         onClick={linkEvent(this, this.handleShowReportDialog)}
783         aria-label={I18NextService.i18n.t("show_report_dialog")}
784       >
785         <Icon classes="me-1" icon="flag" inline />
786         {I18NextService.i18n.t("create_report")}
787       </button>
788     );
789   }
790
791   get blockButton() {
792     return (
793       <button
794         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
795         onClick={linkEvent(this, this.handleBlockPersonClick)}
796         aria-label={I18NextService.i18n.t("block_user")}
797       >
798         {this.state.blockLoading ? (
799           <Spinner />
800         ) : (
801           <Icon classes="me-1" icon="slash" inline />
802         )}
803         {I18NextService.i18n.t("block_user")}
804       </button>
805     );
806   }
807
808   get editButton() {
809     return (
810       <button
811         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
812         onClick={linkEvent(this, this.handleEditClick)}
813         aria-label={I18NextService.i18n.t("edit")}
814       >
815         <Icon classes="me-1" icon="edit" inline />
816         {I18NextService.i18n.t("edit")}
817       </button>
818     );
819   }
820
821   get deleteButton() {
822     const deleted = this.postView.post.deleted;
823     const label = !deleted
824       ? I18NextService.i18n.t("delete")
825       : I18NextService.i18n.t("restore");
826     return (
827       <button
828         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
829         onClick={linkEvent(this, this.handleDeleteClick)}
830       >
831         {this.state.deleteLoading ? (
832           <Spinner />
833         ) : (
834           <>
835             <Icon
836               icon="trash"
837               classes={classNames("me-1", { "text-danger": deleted })}
838               inline
839             />
840             {label}
841           </>
842         )}
843       </button>
844     );
845   }
846
847   get viewSourceButton() {
848     return (
849       <button
850         className="btn btn-sm btn-animate text-muted py-0"
851         onClick={linkEvent(this, this.handleViewSource)}
852         data-tippy-content={I18NextService.i18n.t("view_source")}
853         aria-label={I18NextService.i18n.t("view_source")}
854       >
855         <Icon
856           icon="file-text"
857           classes={classNames({ "text-success": this.state.viewSource })}
858           inline
859         />
860       </button>
861     );
862   }
863
864   get lockButton() {
865     const locked = this.postView.post.locked;
866     const label = locked
867       ? I18NextService.i18n.t("unlock")
868       : I18NextService.i18n.t("lock");
869     return (
870       <button
871         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
872         onClick={linkEvent(this, this.handleModLock)}
873         aria-label={label}
874       >
875         {this.state.lockLoading ? (
876           <Spinner />
877         ) : (
878           <>
879             <Icon
880               icon="lock"
881               classes={classNames("me-1", { "text-danger": locked })}
882               inline
883             />
884             {capitalizeFirstLetter(label)}
885           </>
886         )}
887       </button>
888     );
889   }
890
891   get featureButtons() {
892     const featuredCommunity = this.postView.post.featured_community;
893     const labelCommunity = featuredCommunity
894       ? I18NextService.i18n.t("unfeature_from_community")
895       : I18NextService.i18n.t("feature_in_community");
896
897     const featuredLocal = this.postView.post.featured_local;
898     const labelLocal = featuredLocal
899       ? I18NextService.i18n.t("unfeature_from_local")
900       : I18NextService.i18n.t("feature_in_local");
901     return (
902       <>
903         <li>
904           <button
905             className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
906             onClick={linkEvent(this, this.handleModFeaturePostCommunity)}
907             data-tippy-content={labelCommunity}
908             aria-label={labelCommunity}
909           >
910             {this.state.featureCommunityLoading ? (
911               <Spinner />
912             ) : (
913               <>
914                 <Icon
915                   icon="pin"
916                   classes={classNames("me-1", {
917                     "text-success": featuredCommunity,
918                   })}
919                   inline
920                 />
921                 {I18NextService.i18n.t("community")}
922               </>
923             )}
924           </button>
925         </li>
926         <li>
927           {amAdmin() && (
928             <button
929               className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
930               onClick={linkEvent(this, this.handleModFeaturePostLocal)}
931               data-tippy-content={labelLocal}
932               aria-label={labelLocal}
933             >
934               {this.state.featureLocalLoading ? (
935                 <Spinner />
936               ) : (
937                 <>
938                   <Icon
939                     icon="pin"
940                     classes={classNames("me-1", {
941                       "text-success": featuredLocal,
942                     })}
943                     inline
944                   />
945                   {I18NextService.i18n.t("local")}
946                 </>
947               )}
948             </button>
949           )}
950         </li>
951       </>
952     );
953   }
954
955   get modBanFromCommunityButton() {
956     return (
957       <button
958         className="btn btn-link btn-animate text-muted py-0"
959         onClick={linkEvent(this, this.handleModBanFromCommunityShow)}
960         aria-label={I18NextService.i18n.t("ban_from_community")}
961       >
962         {I18NextService.i18n.t("ban_from_community")}
963       </button>
964     );
965   }
966
967   get modUnbanFromCommunityButton() {
968     return (
969       <button
970         className="btn btn-link btn-animate text-muted py-0"
971         onClick={linkEvent(this, this.handleModBanFromCommunitySubmit)}
972         aria-label={I18NextService.i18n.t("unban")}
973       >
974         {this.state.banLoading ? <Spinner /> : I18NextService.i18n.t("unban")}
975       </button>
976     );
977   }
978
979   get addModToCommunityButton() {
980     return (
981       <button
982         className="btn btn-link btn-animate text-muted py-0"
983         onClick={linkEvent(this, this.handleAddModToCommunity)}
984         aria-label={
985           this.creatorIsMod_
986             ? I18NextService.i18n.t("remove_as_mod")
987             : I18NextService.i18n.t("appoint_as_mod")
988         }
989       >
990         {this.state.addModLoading ? (
991           <Spinner />
992         ) : this.creatorIsMod_ ? (
993           I18NextService.i18n.t("remove_as_mod")
994         ) : (
995           I18NextService.i18n.t("appoint_as_mod")
996         )}
997       </button>
998     );
999   }
1000
1001   get modBanButton() {
1002     return (
1003       <button
1004         className="btn btn-link btn-animate text-muted py-0"
1005         onClick={linkEvent(this, this.handleModBanShow)}
1006         aria-label={I18NextService.i18n.t("ban_from_site")}
1007       >
1008         {I18NextService.i18n.t("ban_from_site")}
1009       </button>
1010     );
1011   }
1012
1013   get modUnbanButton() {
1014     return (
1015       <button
1016         className="btn btn-link btn-animate text-muted py-0"
1017         onClick={linkEvent(this, this.handleModBanSubmit)}
1018         aria-label={I18NextService.i18n.t("unban_from_site")}
1019       >
1020         {this.state.banLoading ? (
1021           <Spinner />
1022         ) : (
1023           I18NextService.i18n.t("unban_from_site")
1024         )}
1025       </button>
1026     );
1027   }
1028
1029   get purgePersonButton() {
1030     return (
1031       <button
1032         className="btn btn-link btn-animate text-muted py-0"
1033         onClick={linkEvent(this, this.handlePurgePersonShow)}
1034         aria-label={I18NextService.i18n.t("purge_user")}
1035       >
1036         {I18NextService.i18n.t("purge_user")}
1037       </button>
1038     );
1039   }
1040
1041   get purgePostButton() {
1042     return (
1043       <button
1044         className="btn btn-link btn-animate text-muted py-0"
1045         onClick={linkEvent(this, this.handlePurgePostShow)}
1046         aria-label={I18NextService.i18n.t("purge_post")}
1047       >
1048         {I18NextService.i18n.t("purge_post")}
1049       </button>
1050     );
1051   }
1052
1053   get toggleAdminButton() {
1054     return (
1055       <button
1056         className="btn btn-link btn-animate text-muted py-0"
1057         onClick={linkEvent(this, this.handleAddAdmin)}
1058       >
1059         {this.state.addAdminLoading ? (
1060           <Spinner />
1061         ) : this.creatorIsAdmin_ ? (
1062           I18NextService.i18n.t("remove_as_admin")
1063         ) : (
1064           I18NextService.i18n.t("appoint_as_admin")
1065         )}
1066       </button>
1067     );
1068   }
1069
1070   get modRemoveButton() {
1071     const removed = this.postView.post.removed;
1072     return (
1073       <button
1074         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
1075         onClick={linkEvent(
1076           this,
1077           !removed ? this.handleModRemoveShow : this.handleModRemoveSubmit
1078         )}
1079       >
1080         {/* TODO: Find an icon for this. */}
1081         {this.state.removeLoading ? (
1082           <Spinner />
1083         ) : !removed ? (
1084           I18NextService.i18n.t("remove")
1085         ) : (
1086           I18NextService.i18n.t("restore")
1087         )}
1088       </button>
1089     );
1090   }
1091
1092   /**
1093    * Mod/Admin actions to be taken against the author.
1094    */
1095   userActionsLine() {
1096     // TODO: make nicer
1097     const post_view = this.postView;
1098     return (
1099       this.state.showAdvanced && (
1100         <div className="mt-3">
1101           {this.canMod_ && (
1102             <>
1103               {!this.creatorIsMod_ &&
1104                 (!post_view.creator_banned_from_community
1105                   ? this.modBanFromCommunityButton
1106                   : this.modUnbanFromCommunityButton)}
1107               {!post_view.creator_banned_from_community &&
1108                 this.addModToCommunityButton}
1109             </>
1110           )}
1111
1112           {/* Community creators and admins can transfer community to another mod */}
1113           {(amCommunityCreator(post_view.creator.id, this.props.moderators) ||
1114             this.canAdmin_) &&
1115             this.creatorIsMod_ &&
1116             (!this.state.showConfirmTransferCommunity ? (
1117               <button
1118                 className="btn btn-link btn-animate text-muted py-0"
1119                 onClick={linkEvent(
1120                   this,
1121                   this.handleShowConfirmTransferCommunity
1122                 )}
1123                 aria-label={I18NextService.i18n.t("transfer_community")}
1124               >
1125                 {I18NextService.i18n.t("transfer_community")}
1126               </button>
1127             ) : (
1128               <>
1129                 <button
1130                   className="d-inline-block me-1 btn btn-link btn-animate text-muted py-0"
1131                   aria-label={I18NextService.i18n.t("are_you_sure")}
1132                 >
1133                   {I18NextService.i18n.t("are_you_sure")}
1134                 </button>
1135                 <button
1136                   className="btn btn-link btn-animate text-muted py-0 d-inline-block me-1"
1137                   aria-label={I18NextService.i18n.t("yes")}
1138                   onClick={linkEvent(this, this.handleTransferCommunity)}
1139                 >
1140                   {this.state.transferLoading ? (
1141                     <Spinner />
1142                   ) : (
1143                     I18NextService.i18n.t("yes")
1144                   )}
1145                 </button>
1146                 <button
1147                   className="btn btn-link btn-animate text-muted py-0 d-inline-block"
1148                   onClick={linkEvent(
1149                     this,
1150                     this.handleCancelShowConfirmTransferCommunity
1151                   )}
1152                   aria-label={I18NextService.i18n.t("no")}
1153                 >
1154                   {I18NextService.i18n.t("no")}
1155                 </button>
1156               </>
1157             ))}
1158           {/* Admins can ban from all, and appoint other admins */}
1159           {this.canAdmin_ && (
1160             <>
1161               {!this.creatorIsAdmin_ && (
1162                 <>
1163                   {!isBanned(post_view.creator)
1164                     ? this.modBanButton
1165                     : this.modUnbanButton}
1166                   {this.purgePersonButton}
1167                   {this.purgePostButton}
1168                 </>
1169               )}
1170               {!isBanned(post_view.creator) &&
1171                 post_view.creator.local &&
1172                 this.toggleAdminButton}
1173             </>
1174           )}
1175         </div>
1176       )
1177     );
1178   }
1179
1180   removeAndBanDialogs() {
1181     const post = this.postView;
1182     const purgeTypeText =
1183       this.state.purgeType == PurgeType.Post
1184         ? I18NextService.i18n.t("purge_post")
1185         : `${I18NextService.i18n.t("purge")} ${post.creator.name}`;
1186     return (
1187       <>
1188         {this.state.showRemoveDialog && (
1189           <form
1190             className="form-inline"
1191             onSubmit={linkEvent(this, this.handleModRemoveSubmit)}
1192           >
1193             <label
1194               className="visually-hidden"
1195               htmlFor="post-listing-remove-reason"
1196             >
1197               {I18NextService.i18n.t("reason")}
1198             </label>
1199             <input
1200               type="text"
1201               id="post-listing-remove-reason"
1202               className="form-control me-2"
1203               placeholder={I18NextService.i18n.t("reason")}
1204               value={this.state.removeReason}
1205               onInput={linkEvent(this, this.handleModRemoveReasonChange)}
1206             />
1207             <button
1208               type="submit"
1209               className="btn btn-secondary"
1210               aria-label={I18NextService.i18n.t("remove_post")}
1211             >
1212               {this.state.removeLoading ? (
1213                 <Spinner />
1214               ) : (
1215                 I18NextService.i18n.t("remove_post")
1216               )}
1217             </button>
1218           </form>
1219         )}
1220         {this.state.showBanDialog && (
1221           <form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
1222             <div className="mb-3 row col-12">
1223               <label
1224                 className="col-form-label"
1225                 htmlFor="post-listing-ban-reason"
1226               >
1227                 {I18NextService.i18n.t("reason")}
1228               </label>
1229               <input
1230                 type="text"
1231                 id="post-listing-ban-reason"
1232                 className="form-control me-2"
1233                 placeholder={I18NextService.i18n.t("reason")}
1234                 value={this.state.banReason}
1235                 onInput={linkEvent(this, this.handleModBanReasonChange)}
1236               />
1237               <label className="col-form-label" htmlFor="mod-ban-expires">
1238                 {I18NextService.i18n.t("expires")}
1239               </label>
1240               <input
1241                 type="number"
1242                 id="mod-ban-expires"
1243                 className="form-control me-2"
1244                 placeholder={I18NextService.i18n.t("number_of_days")}
1245                 value={this.state.banExpireDays}
1246                 onInput={linkEvent(this, this.handleModBanExpireDaysChange)}
1247               />
1248               <div className="input-group mb-3">
1249                 <div className="form-check">
1250                   <input
1251                     className="form-check-input"
1252                     id="mod-ban-remove-data"
1253                     type="checkbox"
1254                     checked={this.state.removeData}
1255                     onChange={linkEvent(this, this.handleModRemoveDataChange)}
1256                   />
1257                   <label
1258                     className="form-check-label"
1259                     htmlFor="mod-ban-remove-data"
1260                     title={I18NextService.i18n.t("remove_content_more")}
1261                   >
1262                     {I18NextService.i18n.t("remove_content")}
1263                   </label>
1264                 </div>
1265               </div>
1266             </div>
1267             {/* TODO hold off on expires until later */}
1268             {/* <div class="mb-3 row"> */}
1269             {/*   <label class="col-form-label">Expires</label> */}
1270             {/*   <input type="date" class="form-control me-2" placeholder={I18NextService.i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
1271             {/* </div> */}
1272             <div className="mb-3 row">
1273               <button
1274                 type="submit"
1275                 className="btn btn-secondary"
1276                 aria-label={I18NextService.i18n.t("ban")}
1277               >
1278                 {this.state.banLoading ? (
1279                   <Spinner />
1280                 ) : (
1281                   <span>
1282                     {I18NextService.i18n.t("ban")} {post.creator.name}
1283                   </span>
1284                 )}
1285               </button>
1286             </div>
1287           </form>
1288         )}
1289         {this.state.showReportDialog && (
1290           <form
1291             className="form-inline"
1292             onSubmit={linkEvent(this, this.handleReportSubmit)}
1293           >
1294             <label className="visually-hidden" htmlFor="post-report-reason">
1295               {I18NextService.i18n.t("reason")}
1296             </label>
1297             <input
1298               type="text"
1299               id="post-report-reason"
1300               className="form-control me-2"
1301               placeholder={I18NextService.i18n.t("reason")}
1302               required
1303               value={this.state.reportReason}
1304               onInput={linkEvent(this, this.handleReportReasonChange)}
1305             />
1306             <button
1307               type="submit"
1308               className="btn btn-secondary"
1309               aria-label={I18NextService.i18n.t("create_report")}
1310             >
1311               {this.state.reportLoading ? (
1312                 <Spinner />
1313               ) : (
1314                 I18NextService.i18n.t("create_report")
1315               )}
1316             </button>
1317           </form>
1318         )}
1319         {this.state.showPurgeDialog && (
1320           <form
1321             className="form-inline"
1322             onSubmit={linkEvent(this, this.handlePurgeSubmit)}
1323           >
1324             <PurgeWarning />
1325             <label className="visually-hidden" htmlFor="purge-reason">
1326               {I18NextService.i18n.t("reason")}
1327             </label>
1328             <input
1329               type="text"
1330               id="purge-reason"
1331               className="form-control me-2"
1332               placeholder={I18NextService.i18n.t("reason")}
1333               value={this.state.purgeReason}
1334               onInput={linkEvent(this, this.handlePurgeReasonChange)}
1335             />
1336             {this.state.purgeLoading ? (
1337               <Spinner />
1338             ) : (
1339               <button
1340                 type="submit"
1341                 className="btn btn-secondary"
1342                 aria-label={purgeTypeText}
1343               >
1344                 {this.state.purgeLoading ? <Spinner /> : { purgeTypeText }}
1345               </button>
1346             )}
1347           </form>
1348         )}
1349       </>
1350     );
1351   }
1352
1353   mobileThumbnail() {
1354     const post = this.postView.post;
1355     return post.thumbnail_url || (post.url && isImage(post.url)) ? (
1356       <div className="row">
1357         <div className={`${this.state.imageExpanded ? "col-12" : "col-8"}`}>
1358           {this.postTitleLine()}
1359         </div>
1360         <div className="col-4">
1361           {/* Post thumbnail */}
1362           {!this.state.imageExpanded && this.thumbnail()}
1363         </div>
1364       </div>
1365     ) : (
1366       this.postTitleLine()
1367     );
1368   }
1369
1370   listing() {
1371     return (
1372       <>
1373         {/* The mobile view*/}
1374         <div className="d-block d-sm-none">
1375           <article className="row post-container">
1376             <div className="col-12">
1377               {this.createdLine()}
1378
1379               {/* If it has a thumbnail, do a right aligned thumbnail */}
1380               {this.mobileThumbnail()}
1381
1382               {this.commentsLine(true)}
1383               {this.userActionsLine()}
1384               {this.duplicatesLine()}
1385               {this.removeAndBanDialogs()}
1386             </div>
1387           </article>
1388         </div>
1389
1390         {/* The larger view*/}
1391         <div className="d-none d-sm-block">
1392           <article className="row post-container">
1393             {!this.props.viewOnly && (
1394               <VoteButtons
1395                 voteContentType={VoteContentType.Post}
1396                 id={this.postView.post.id}
1397                 onVote={this.props.onPostVote}
1398                 enableDownvotes={this.props.enableDownvotes}
1399                 counts={this.postView.counts}
1400                 my_vote={this.postView.my_vote}
1401               />
1402             )}
1403             <div className="col-sm-2 pe-0 post-media">
1404               <div className="">{this.thumbnail()}</div>
1405             </div>
1406             <div className="col-12 col-sm-9">
1407               <div className="row">
1408                 <div className="col-12">
1409                   {this.postTitleLine()}
1410                   {this.createdLine()}
1411                   {this.commentsLine()}
1412                   {this.duplicatesLine()}
1413                   {this.userActionsLine()}
1414                   {this.removeAndBanDialogs()}
1415                 </div>
1416               </div>
1417             </div>
1418           </article>
1419         </div>
1420       </>
1421     );
1422   }
1423
1424   private get myPost(): boolean {
1425     return (
1426       this.postView.creator.id ==
1427       UserService.Instance.myUserInfo?.local_user_view.person.id
1428     );
1429   }
1430   handleEditClick(i: PostListing) {
1431     i.setState({ showEdit: true });
1432   }
1433
1434   handleEditCancel() {
1435     this.setState({ showEdit: false });
1436   }
1437
1438   // The actual editing is done in the receive for post
1439   handleEditPost(form: EditPost) {
1440     this.setState({ showEdit: false });
1441     this.props.onPostEdit(form);
1442   }
1443
1444   handleShare(i: PostListing) {
1445     const { name, body, id } = i.props.post_view.post;
1446     share({
1447       title: name,
1448       text: body?.slice(0, 50),
1449       url: `${getHttpBase()}/post/${id}`,
1450     });
1451   }
1452
1453   handleShowReportDialog(i: PostListing) {
1454     i.setState({ showReportDialog: !i.state.showReportDialog });
1455   }
1456
1457   handleReportReasonChange(i: PostListing, event: any) {
1458     i.setState({ reportReason: event.target.value });
1459   }
1460
1461   handleReportSubmit(i: PostListing, event: any) {
1462     event.preventDefault();
1463     i.setState({ reportLoading: true });
1464     i.props.onPostReport({
1465       post_id: i.postView.post.id,
1466       reason: i.state.reportReason ?? "",
1467       auth: myAuthRequired(),
1468     });
1469   }
1470
1471   handleBlockPersonClick(i: PostListing) {
1472     i.setState({ blockLoading: true });
1473     i.props.onBlockPerson({
1474       person_id: i.postView.creator.id,
1475       block: true,
1476       auth: myAuthRequired(),
1477     });
1478   }
1479
1480   handleDeleteClick(i: PostListing) {
1481     i.setState({ deleteLoading: true });
1482     i.props.onDeletePost({
1483       post_id: i.postView.post.id,
1484       deleted: !i.postView.post.deleted,
1485       auth: myAuthRequired(),
1486     });
1487   }
1488
1489   handleSavePostClick(i: PostListing) {
1490     i.setState({ saveLoading: true });
1491     i.props.onSavePost({
1492       post_id: i.postView.post.id,
1493       save: !i.postView.saved,
1494       auth: myAuthRequired(),
1495     });
1496   }
1497
1498   get crossPostParams(): PostFormParams {
1499     const queryParams: PostFormParams = {};
1500     const { name, url } = this.postView.post;
1501
1502     queryParams.name = name;
1503
1504     if (url) {
1505       queryParams.url = url;
1506     }
1507
1508     const crossPostBody = this.crossPostBody();
1509     if (crossPostBody) {
1510       queryParams.body = crossPostBody;
1511     }
1512
1513     return queryParams;
1514   }
1515
1516   crossPostBody(): string | undefined {
1517     const post = this.postView.post;
1518     const body = post.body;
1519
1520     return body
1521       ? `${I18NextService.i18n.t("cross_posted_from")} ${
1522           post.ap_id
1523         }\n\n${body.replace(/^/gm, "> ")}`
1524       : undefined;
1525   }
1526
1527   get showBody(): boolean {
1528     return this.props.showBody || this.state.showBody;
1529   }
1530
1531   handleModRemoveShow(i: PostListing) {
1532     i.setState({
1533       showRemoveDialog: !i.state.showRemoveDialog,
1534       showBanDialog: false,
1535     });
1536   }
1537
1538   handleModRemoveReasonChange(i: PostListing, event: any) {
1539     i.setState({ removeReason: event.target.value });
1540   }
1541
1542   handleModRemoveDataChange(i: PostListing, event: any) {
1543     i.setState({ removeData: event.target.checked });
1544   }
1545
1546   handleModRemoveSubmit(i: PostListing, event: any) {
1547     event.preventDefault();
1548     i.setState({ removeLoading: true });
1549     i.props.onRemovePost({
1550       post_id: i.postView.post.id,
1551       removed: !i.postView.post.removed,
1552       auth: myAuthRequired(),
1553     });
1554   }
1555
1556   handleModLock(i: PostListing) {
1557     i.setState({ lockLoading: true });
1558     i.props.onLockPost({
1559       post_id: i.postView.post.id,
1560       locked: !i.postView.post.locked,
1561       auth: myAuthRequired(),
1562     });
1563   }
1564
1565   handleModFeaturePostLocal(i: PostListing) {
1566     i.setState({ featureLocalLoading: true });
1567     i.props.onFeaturePost({
1568       post_id: i.postView.post.id,
1569       featured: !i.postView.post.featured_local,
1570       feature_type: "Local",
1571       auth: myAuthRequired(),
1572     });
1573   }
1574
1575   handleModFeaturePostCommunity(i: PostListing) {
1576     i.setState({ featureCommunityLoading: true });
1577     i.props.onFeaturePost({
1578       post_id: i.postView.post.id,
1579       featured: !i.postView.post.featured_community,
1580       feature_type: "Community",
1581       auth: myAuthRequired(),
1582     });
1583   }
1584
1585   handleModBanFromCommunityShow(i: PostListing) {
1586     i.setState({
1587       showBanDialog: true,
1588       banType: BanType.Community,
1589       showRemoveDialog: false,
1590     });
1591   }
1592
1593   handleModBanShow(i: PostListing) {
1594     i.setState({
1595       showBanDialog: true,
1596       banType: BanType.Site,
1597       showRemoveDialog: false,
1598     });
1599   }
1600
1601   handlePurgePersonShow(i: PostListing) {
1602     i.setState({
1603       showPurgeDialog: true,
1604       purgeType: PurgeType.Person,
1605       showRemoveDialog: false,
1606     });
1607   }
1608
1609   handlePurgePostShow(i: PostListing) {
1610     i.setState({
1611       showPurgeDialog: true,
1612       purgeType: PurgeType.Post,
1613       showRemoveDialog: false,
1614     });
1615   }
1616
1617   handlePurgeReasonChange(i: PostListing, event: any) {
1618     i.setState({ purgeReason: event.target.value });
1619   }
1620
1621   handlePurgeSubmit(i: PostListing, event: any) {
1622     event.preventDefault();
1623     i.setState({ purgeLoading: true });
1624     if (i.state.purgeType == PurgeType.Person) {
1625       i.props.onPurgePerson({
1626         person_id: i.postView.creator.id,
1627         reason: i.state.purgeReason,
1628         auth: myAuthRequired(),
1629       });
1630     } else if (i.state.purgeType == PurgeType.Post) {
1631       i.props.onPurgePost({
1632         post_id: i.postView.post.id,
1633         reason: i.state.purgeReason,
1634         auth: myAuthRequired(),
1635       });
1636     }
1637   }
1638
1639   handleModBanReasonChange(i: PostListing, event: any) {
1640     i.setState({ banReason: event.target.value });
1641   }
1642
1643   handleModBanExpireDaysChange(i: PostListing, event: any) {
1644     i.setState({ banExpireDays: event.target.value });
1645   }
1646
1647   handleModBanFromCommunitySubmit(i: PostListing, event: any) {
1648     i.setState({ banType: BanType.Community });
1649     i.handleModBanBothSubmit(i, event);
1650   }
1651
1652   handleModBanSubmit(i: PostListing, event: any) {
1653     i.setState({ banType: BanType.Site });
1654     i.handleModBanBothSubmit(i, event);
1655   }
1656
1657   handleModBanBothSubmit(i: PostListing, event: any) {
1658     event.preventDefault();
1659     i.setState({ banLoading: true });
1660
1661     const ban = !i.props.post_view.creator_banned_from_community;
1662     // If its an unban, restore all their data
1663     if (ban == false) {
1664       i.setState({ removeData: false });
1665     }
1666     const person_id = i.props.post_view.creator.id;
1667     const remove_data = i.state.removeData;
1668     const reason = i.state.banReason;
1669     const expires = futureDaysToUnixTime(i.state.banExpireDays);
1670
1671     if (i.state.banType == BanType.Community) {
1672       const community_id = i.postView.community.id;
1673       i.props.onBanPersonFromCommunity({
1674         community_id,
1675         person_id,
1676         ban,
1677         remove_data,
1678         reason,
1679         expires,
1680         auth: myAuthRequired(),
1681       });
1682     } else {
1683       i.props.onBanPerson({
1684         person_id,
1685         ban,
1686         remove_data,
1687         reason,
1688         expires,
1689         auth: myAuthRequired(),
1690       });
1691     }
1692   }
1693
1694   handleAddModToCommunity(i: PostListing) {
1695     i.setState({ addModLoading: true });
1696     i.props.onAddModToCommunity({
1697       community_id: i.postView.community.id,
1698       person_id: i.postView.creator.id,
1699       added: !i.creatorIsMod_,
1700       auth: myAuthRequired(),
1701     });
1702   }
1703
1704   handleAddAdmin(i: PostListing) {
1705     i.setState({ addAdminLoading: true });
1706     i.props.onAddAdmin({
1707       person_id: i.postView.creator.id,
1708       added: !i.creatorIsAdmin_,
1709       auth: myAuthRequired(),
1710     });
1711   }
1712
1713   handleShowConfirmTransferCommunity(i: PostListing) {
1714     i.setState({ showConfirmTransferCommunity: true });
1715   }
1716
1717   handleCancelShowConfirmTransferCommunity(i: PostListing) {
1718     i.setState({ showConfirmTransferCommunity: false });
1719   }
1720
1721   handleTransferCommunity(i: PostListing) {
1722     i.setState({ transferLoading: true });
1723     i.props.onTransferCommunity({
1724       community_id: i.postView.community.id,
1725       person_id: i.postView.creator.id,
1726       auth: myAuthRequired(),
1727     });
1728   }
1729
1730   handleShowConfirmTransferSite(i: PostListing) {
1731     i.setState({ showConfirmTransferSite: true });
1732   }
1733
1734   handleCancelShowConfirmTransferSite(i: PostListing) {
1735     i.setState({ showConfirmTransferSite: false });
1736   }
1737
1738   handleImageExpandClick(i: PostListing, event: any) {
1739     event.preventDefault();
1740     i.setState({ imageExpanded: !i.state.imageExpanded });
1741     setupTippy();
1742   }
1743
1744   handleViewSource(i: PostListing) {
1745     i.setState({ viewSource: !i.state.viewSource });
1746   }
1747
1748   handleShowAdvanced(i: PostListing) {
1749     i.setState({ showAdvanced: !i.state.showAdvanced });
1750     setupTippy();
1751   }
1752
1753   handleShowMoreMobile(i: PostListing) {
1754     i.setState({
1755       showMoreMobile: !i.state.showMoreMobile,
1756       showAdvanced: !i.state.showAdvanced,
1757     });
1758     setupTippy();
1759   }
1760
1761   handleShowBody(i: PostListing) {
1762     i.setState({ showBody: !i.state.showBody });
1763     setupTippy();
1764   }
1765
1766   get pointsTippy(): string {
1767     const points = I18NextService.i18n.t("number_of_points", {
1768       count: Number(this.postView.counts.score),
1769       formattedCount: Number(this.postView.counts.score),
1770     });
1771
1772     const upvotes = I18NextService.i18n.t("number_of_upvotes", {
1773       count: Number(this.postView.counts.upvotes),
1774       formattedCount: Number(this.postView.counts.upvotes),
1775     });
1776
1777     const downvotes = I18NextService.i18n.t("number_of_downvotes", {
1778       count: Number(this.postView.counts.downvotes),
1779       formattedCount: Number(this.postView.counts.downvotes),
1780     });
1781
1782     return `${points} • ${upvotes} • ${downvotes}`;
1783   }
1784
1785   get canModOnSelf_(): boolean {
1786     return canMod(
1787       this.postView.creator.id,
1788       this.props.moderators,
1789       this.props.admins,
1790       undefined,
1791       true
1792     );
1793   }
1794
1795   get canMod_(): boolean {
1796     return canMod(
1797       this.postView.creator.id,
1798       this.props.moderators,
1799       this.props.admins
1800     );
1801   }
1802
1803   get canAdmin_(): boolean {
1804     return canAdmin(this.postView.creator.id, this.props.admins);
1805   }
1806
1807   get creatorIsMod_(): boolean {
1808     return isMod(this.postView.creator.id, this.props.moderators);
1809   }
1810
1811   get creatorIsAdmin_(): boolean {
1812     return isAdmin(this.postView.creator.id, this.props.admins);
1813   }
1814 }