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