]> Untitled Git - lemmy-ui.git/blob - src/shared/components/post/post-listing.tsx
remove hook entirely
[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 modRemoveButton() {
956     const removed = this.postView.post.removed;
957     return (
958       <button
959         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
960         onClick={linkEvent(
961           this,
962           !removed ? this.handleModRemoveShow : this.handleModRemoveSubmit
963         )}
964       >
965         {/* TODO: Find an icon for this. */}
966         {this.state.removeLoading ? (
967           <Spinner />
968         ) : !removed ? (
969           I18NextService.i18n.t("remove")
970         ) : (
971           I18NextService.i18n.t("restore")
972         )}
973       </button>
974     );
975   }
976
977   /**
978    * Mod/Admin actions to be taken against the author.
979    */
980   userActionsLine() {
981     // TODO: make nicer
982     const post_view = this.postView;
983     return (
984       this.state.showAdvanced && (
985         <div className="mt-3">
986           {this.canMod_ && (
987             <>
988               {!this.creatorIsMod_ &&
989                 (!post_view.creator_banned_from_community ? (
990                   <button
991                     className="btn btn-link btn-animate text-muted py-0"
992                     onClick={linkEvent(
993                       this,
994                       this.handleModBanFromCommunityShow
995                     )}
996                     aria-label={I18NextService.i18n.t("ban_from_community")}
997                   >
998                     {I18NextService.i18n.t("ban_from_community")}
999                   </button>
1000                 ) : (
1001                   <button
1002                     className="btn btn-link btn-animate text-muted py-0"
1003                     onClick={linkEvent(
1004                       this,
1005                       this.handleModBanFromCommunitySubmit
1006                     )}
1007                     aria-label={I18NextService.i18n.t("unban")}
1008                   >
1009                     {this.state.banLoading ? (
1010                       <Spinner />
1011                     ) : (
1012                       I18NextService.i18n.t("unban")
1013                     )}
1014                   </button>
1015                 ))}
1016               {!post_view.creator_banned_from_community && (
1017                 <button
1018                   className="btn btn-link btn-animate text-muted py-0"
1019                   onClick={linkEvent(this, this.handleAddModToCommunity)}
1020                   aria-label={
1021                     this.creatorIsMod_
1022                       ? I18NextService.i18n.t("remove_as_mod")
1023                       : I18NextService.i18n.t("appoint_as_mod")
1024                   }
1025                 >
1026                   {this.state.addModLoading ? (
1027                     <Spinner />
1028                   ) : this.creatorIsMod_ ? (
1029                     I18NextService.i18n.t("remove_as_mod")
1030                   ) : (
1031                     I18NextService.i18n.t("appoint_as_mod")
1032                   )}
1033                 </button>
1034               )}
1035             </>
1036           )}
1037           {/* Community creators and admins can transfer community to another mod */}
1038           {(amCommunityCreator(post_view.creator.id, this.props.moderators) ||
1039             this.canAdmin_) &&
1040             this.creatorIsMod_ &&
1041             (!this.state.showConfirmTransferCommunity ? (
1042               <button
1043                 className="btn btn-link btn-animate text-muted py-0"
1044                 onClick={linkEvent(
1045                   this,
1046                   this.handleShowConfirmTransferCommunity
1047                 )}
1048                 aria-label={I18NextService.i18n.t("transfer_community")}
1049               >
1050                 {I18NextService.i18n.t("transfer_community")}
1051               </button>
1052             ) : (
1053               <>
1054                 <button
1055                   className="d-inline-block me-1 btn btn-link btn-animate text-muted py-0"
1056                   aria-label={I18NextService.i18n.t("are_you_sure")}
1057                 >
1058                   {I18NextService.i18n.t("are_you_sure")}
1059                 </button>
1060                 <button
1061                   className="btn btn-link btn-animate text-muted py-0 d-inline-block me-1"
1062                   aria-label={I18NextService.i18n.t("yes")}
1063                   onClick={linkEvent(this, this.handleTransferCommunity)}
1064                 >
1065                   {this.state.transferLoading ? (
1066                     <Spinner />
1067                   ) : (
1068                     I18NextService.i18n.t("yes")
1069                   )}
1070                 </button>
1071                 <button
1072                   className="btn btn-link btn-animate text-muted py-0 d-inline-block"
1073                   onClick={linkEvent(
1074                     this,
1075                     this.handleCancelShowConfirmTransferCommunity
1076                   )}
1077                   aria-label={I18NextService.i18n.t("no")}
1078                 >
1079                   {I18NextService.i18n.t("no")}
1080                 </button>
1081               </>
1082             ))}
1083           {/* Admins can ban from all, and appoint other admins */}
1084           {this.canAdmin_ && (
1085             <>
1086               {!this.creatorIsAdmin_ && (
1087                 <>
1088                   {!isBanned(post_view.creator) ? (
1089                     <button
1090                       className="btn btn-link btn-animate text-muted py-0"
1091                       onClick={linkEvent(this, this.handleModBanShow)}
1092                       aria-label={I18NextService.i18n.t("ban_from_site")}
1093                     >
1094                       {I18NextService.i18n.t("ban_from_site")}
1095                     </button>
1096                   ) : (
1097                     <button
1098                       className="btn btn-link btn-animate text-muted py-0"
1099                       onClick={linkEvent(this, this.handleModBanSubmit)}
1100                       aria-label={I18NextService.i18n.t("unban_from_site")}
1101                     >
1102                       {this.state.banLoading ? (
1103                         <Spinner />
1104                       ) : (
1105                         I18NextService.i18n.t("unban_from_site")
1106                       )}
1107                     </button>
1108                   )}
1109                   <button
1110                     className="btn btn-link btn-animate text-muted py-0"
1111                     onClick={linkEvent(this, this.handlePurgePersonShow)}
1112                     aria-label={I18NextService.i18n.t("purge_user")}
1113                   >
1114                     {I18NextService.i18n.t("purge_user")}
1115                   </button>
1116                   <button
1117                     className="btn btn-link btn-animate text-muted py-0"
1118                     onClick={linkEvent(this, this.handlePurgePostShow)}
1119                     aria-label={I18NextService.i18n.t("purge_post")}
1120                   >
1121                     {I18NextService.i18n.t("purge_post")}
1122                   </button>
1123                 </>
1124               )}
1125               {!isBanned(post_view.creator) && post_view.creator.local && (
1126                 <button
1127                   className="btn btn-link btn-animate text-muted py-0"
1128                   onClick={linkEvent(this, this.handleAddAdmin)}
1129                   aria-label={
1130                     this.creatorIsAdmin_
1131                       ? I18NextService.i18n.t("remove_as_admin")
1132                       : I18NextService.i18n.t("appoint_as_admin")
1133                   }
1134                 >
1135                   {this.state.addAdminLoading ? (
1136                     <Spinner />
1137                   ) : this.creatorIsAdmin_ ? (
1138                     I18NextService.i18n.t("remove_as_admin")
1139                   ) : (
1140                     I18NextService.i18n.t("appoint_as_admin")
1141                   )}
1142                 </button>
1143               )}
1144             </>
1145           )}
1146         </div>
1147       )
1148     );
1149   }
1150
1151   removeAndBanDialogs() {
1152     const post = this.postView;
1153     const purgeTypeText =
1154       this.state.purgeType == PurgeType.Post
1155         ? I18NextService.i18n.t("purge_post")
1156         : `${I18NextService.i18n.t("purge")} ${post.creator.name}`;
1157     return (
1158       <>
1159         {this.state.showRemoveDialog && (
1160           <form
1161             className="form-inline"
1162             onSubmit={linkEvent(this, this.handleModRemoveSubmit)}
1163           >
1164             <label
1165               className="visually-hidden"
1166               htmlFor="post-listing-remove-reason"
1167             >
1168               {I18NextService.i18n.t("reason")}
1169             </label>
1170             <input
1171               type="text"
1172               id="post-listing-remove-reason"
1173               className="form-control me-2"
1174               placeholder={I18NextService.i18n.t("reason")}
1175               value={this.state.removeReason}
1176               onInput={linkEvent(this, this.handleModRemoveReasonChange)}
1177             />
1178             <button
1179               type="submit"
1180               className="btn btn-secondary"
1181               aria-label={I18NextService.i18n.t("remove_post")}
1182             >
1183               {this.state.removeLoading ? (
1184                 <Spinner />
1185               ) : (
1186                 I18NextService.i18n.t("remove_post")
1187               )}
1188             </button>
1189           </form>
1190         )}
1191         {this.state.showBanDialog && (
1192           <form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
1193             <div className="mb-3 row col-12">
1194               <label
1195                 className="col-form-label"
1196                 htmlFor="post-listing-ban-reason"
1197               >
1198                 {I18NextService.i18n.t("reason")}
1199               </label>
1200               <input
1201                 type="text"
1202                 id="post-listing-ban-reason"
1203                 className="form-control me-2"
1204                 placeholder={I18NextService.i18n.t("reason")}
1205                 value={this.state.banReason}
1206                 onInput={linkEvent(this, this.handleModBanReasonChange)}
1207               />
1208               <label className="col-form-label" htmlFor="mod-ban-expires">
1209                 {I18NextService.i18n.t("expires")}
1210               </label>
1211               <input
1212                 type="number"
1213                 id="mod-ban-expires"
1214                 className="form-control me-2"
1215                 placeholder={I18NextService.i18n.t("number_of_days")}
1216                 value={this.state.banExpireDays}
1217                 onInput={linkEvent(this, this.handleModBanExpireDaysChange)}
1218               />
1219               <div className="input-group mb-3">
1220                 <div className="form-check">
1221                   <input
1222                     className="form-check-input"
1223                     id="mod-ban-remove-data"
1224                     type="checkbox"
1225                     checked={this.state.removeData}
1226                     onChange={linkEvent(this, this.handleModRemoveDataChange)}
1227                   />
1228                   <label
1229                     className="form-check-label"
1230                     htmlFor="mod-ban-remove-data"
1231                     title={I18NextService.i18n.t("remove_content_more")}
1232                   >
1233                     {I18NextService.i18n.t("remove_content")}
1234                   </label>
1235                 </div>
1236               </div>
1237             </div>
1238             {/* TODO hold off on expires until later */}
1239             {/* <div class="mb-3 row"> */}
1240             {/*   <label class="col-form-label">Expires</label> */}
1241             {/*   <input type="date" class="form-control me-2" placeholder={I18NextService.i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
1242             {/* </div> */}
1243             <div className="mb-3 row">
1244               <button
1245                 type="submit"
1246                 className="btn btn-secondary"
1247                 aria-label={I18NextService.i18n.t("ban")}
1248               >
1249                 {this.state.banLoading ? (
1250                   <Spinner />
1251                 ) : (
1252                   <span>
1253                     {I18NextService.i18n.t("ban")} {post.creator.name}
1254                   </span>
1255                 )}
1256               </button>
1257             </div>
1258           </form>
1259         )}
1260         {this.state.showReportDialog && (
1261           <form
1262             className="form-inline"
1263             onSubmit={linkEvent(this, this.handleReportSubmit)}
1264           >
1265             <label className="visually-hidden" htmlFor="post-report-reason">
1266               {I18NextService.i18n.t("reason")}
1267             </label>
1268             <input
1269               type="text"
1270               id="post-report-reason"
1271               className="form-control me-2"
1272               placeholder={I18NextService.i18n.t("reason")}
1273               required
1274               value={this.state.reportReason}
1275               onInput={linkEvent(this, this.handleReportReasonChange)}
1276             />
1277             <button
1278               type="submit"
1279               className="btn btn-secondary"
1280               aria-label={I18NextService.i18n.t("create_report")}
1281             >
1282               {this.state.reportLoading ? (
1283                 <Spinner />
1284               ) : (
1285                 I18NextService.i18n.t("create_report")
1286               )}
1287             </button>
1288           </form>
1289         )}
1290         {this.state.showPurgeDialog && (
1291           <form
1292             className="form-inline"
1293             onSubmit={linkEvent(this, this.handlePurgeSubmit)}
1294           >
1295             <PurgeWarning />
1296             <label className="visually-hidden" htmlFor="purge-reason">
1297               {I18NextService.i18n.t("reason")}
1298             </label>
1299             <input
1300               type="text"
1301               id="purge-reason"
1302               className="form-control me-2"
1303               placeholder={I18NextService.i18n.t("reason")}
1304               value={this.state.purgeReason}
1305               onInput={linkEvent(this, this.handlePurgeReasonChange)}
1306             />
1307             {this.state.purgeLoading ? (
1308               <Spinner />
1309             ) : (
1310               <button
1311                 type="submit"
1312                 className="btn btn-secondary"
1313                 aria-label={purgeTypeText}
1314               >
1315                 {this.state.purgeLoading ? <Spinner /> : { purgeTypeText }}
1316               </button>
1317             )}
1318           </form>
1319         )}
1320       </>
1321     );
1322   }
1323
1324   mobileThumbnail() {
1325     const post = this.postView.post;
1326     return post.thumbnail_url || (post.url && isImage(post.url)) ? (
1327       <div className="row">
1328         <div className={`${this.state.imageExpanded ? "col-12" : "col-8"}`}>
1329           {this.postTitleLine()}
1330         </div>
1331         <div className="col-4">
1332           {/* Post thumbnail */}
1333           {!this.state.imageExpanded && this.thumbnail()}
1334         </div>
1335       </div>
1336     ) : (
1337       this.postTitleLine()
1338     );
1339   }
1340
1341   listing() {
1342     return (
1343       <>
1344         {/* The mobile view*/}
1345         <div className="d-block d-sm-none">
1346           <article className="row post-container">
1347             <div className="col-12">
1348               {this.createdLine()}
1349
1350               {/* If it has a thumbnail, do a right aligned thumbnail */}
1351               {this.mobileThumbnail()}
1352
1353               {this.commentsLine(true)}
1354               {this.userActionsLine()}
1355               {this.duplicatesLine()}
1356               {this.removeAndBanDialogs()}
1357             </div>
1358           </article>
1359         </div>
1360
1361         {/* The larger view*/}
1362         <div className="d-none d-sm-block">
1363           <article className="row post-container">
1364             {!this.props.viewOnly && (
1365               <VoteButtons
1366                 voteContentType={VoteContentType.Post}
1367                 id={this.postView.post.id}
1368                 onVote={this.props.onPostVote}
1369                 enableDownvotes={this.props.enableDownvotes}
1370                 counts={this.postView.counts}
1371                 my_vote={this.postView.my_vote}
1372               />
1373             )}
1374             <div className="col-sm-2 pe-0 post-media">
1375               <div className="">{this.thumbnail()}</div>
1376             </div>
1377             <div className="col-12 col-sm-9">
1378               <div className="row">
1379                 <div className="col-12">
1380                   {this.postTitleLine()}
1381                   {this.createdLine()}
1382                   {this.commentsLine()}
1383                   {this.duplicatesLine()}
1384                   {this.userActionsLine()}
1385                   {this.removeAndBanDialogs()}
1386                 </div>
1387               </div>
1388             </div>
1389           </article>
1390         </div>
1391       </>
1392     );
1393   }
1394
1395   private get myPost(): boolean {
1396     return (
1397       this.postView.creator.id ==
1398       UserService.Instance.myUserInfo?.local_user_view.person.id
1399     );
1400   }
1401   handleEditClick(i: PostListing) {
1402     i.setState({ showEdit: true });
1403   }
1404
1405   handleEditCancel() {
1406     this.setState({ showEdit: false });
1407   }
1408
1409   // The actual editing is done in the receive for post
1410   handleEditPost(form: EditPost) {
1411     this.setState({ showEdit: false });
1412     this.props.onPostEdit(form);
1413   }
1414
1415   handleShare(i: PostListing) {
1416     const { name, body, id } = i.props.post_view.post;
1417     share({
1418       title: name,
1419       text: body?.slice(0, 50),
1420       url: `${getHttpBase()}/post/${id}`,
1421     });
1422   }
1423
1424   handleShowReportDialog(i: PostListing) {
1425     i.setState({ showReportDialog: !i.state.showReportDialog });
1426   }
1427
1428   handleReportReasonChange(i: PostListing, event: any) {
1429     i.setState({ reportReason: event.target.value });
1430   }
1431
1432   handleReportSubmit(i: PostListing, event: any) {
1433     event.preventDefault();
1434     i.setState({ reportLoading: true });
1435     i.props.onPostReport({
1436       post_id: i.postView.post.id,
1437       reason: i.state.reportReason ?? "",
1438       auth: myAuthRequired(),
1439     });
1440   }
1441
1442   handleBlockPersonClick(i: PostListing) {
1443     i.setState({ blockLoading: true });
1444     i.props.onBlockPerson({
1445       person_id: i.postView.creator.id,
1446       block: true,
1447       auth: myAuthRequired(),
1448     });
1449   }
1450
1451   handleDeleteClick(i: PostListing) {
1452     i.setState({ deleteLoading: true });
1453     i.props.onDeletePost({
1454       post_id: i.postView.post.id,
1455       deleted: !i.postView.post.deleted,
1456       auth: myAuthRequired(),
1457     });
1458   }
1459
1460   handleSavePostClick(i: PostListing) {
1461     i.setState({ saveLoading: true });
1462     i.props.onSavePost({
1463       post_id: i.postView.post.id,
1464       save: !i.postView.saved,
1465       auth: myAuthRequired(),
1466     });
1467   }
1468
1469   get crossPostParams(): PostFormParams {
1470     const queryParams: PostFormParams = {};
1471     const { name, url } = this.postView.post;
1472
1473     queryParams.name = name;
1474
1475     if (url) {
1476       queryParams.url = url;
1477     }
1478
1479     const crossPostBody = this.crossPostBody();
1480     if (crossPostBody) {
1481       queryParams.body = crossPostBody;
1482     }
1483
1484     return queryParams;
1485   }
1486
1487   crossPostBody(): string | undefined {
1488     const post = this.postView.post;
1489     const body = post.body;
1490
1491     return body
1492       ? `${I18NextService.i18n.t("cross_posted_from")} ${
1493           post.ap_id
1494         }\n\n${body.replace(/^/gm, "> ")}`
1495       : undefined;
1496   }
1497
1498   get showBody(): boolean {
1499     return this.props.showBody || this.state.showBody;
1500   }
1501
1502   handleModRemoveShow(i: PostListing) {
1503     i.setState({
1504       showRemoveDialog: !i.state.showRemoveDialog,
1505       showBanDialog: false,
1506     });
1507   }
1508
1509   handleModRemoveReasonChange(i: PostListing, event: any) {
1510     i.setState({ removeReason: event.target.value });
1511   }
1512
1513   handleModRemoveDataChange(i: PostListing, event: any) {
1514     i.setState({ removeData: event.target.checked });
1515   }
1516
1517   handleModRemoveSubmit(i: PostListing, event: any) {
1518     event.preventDefault();
1519     i.setState({ removeLoading: true });
1520     i.props.onRemovePost({
1521       post_id: i.postView.post.id,
1522       removed: !i.postView.post.removed,
1523       auth: myAuthRequired(),
1524     });
1525   }
1526
1527   handleModLock(i: PostListing) {
1528     i.setState({ lockLoading: true });
1529     i.props.onLockPost({
1530       post_id: i.postView.post.id,
1531       locked: !i.postView.post.locked,
1532       auth: myAuthRequired(),
1533     });
1534   }
1535
1536   handleModFeaturePostLocal(i: PostListing) {
1537     i.setState({ featureLocalLoading: true });
1538     i.props.onFeaturePost({
1539       post_id: i.postView.post.id,
1540       featured: !i.postView.post.featured_local,
1541       feature_type: "Local",
1542       auth: myAuthRequired(),
1543     });
1544   }
1545
1546   handleModFeaturePostCommunity(i: PostListing) {
1547     i.setState({ featureCommunityLoading: true });
1548     i.props.onFeaturePost({
1549       post_id: i.postView.post.id,
1550       featured: !i.postView.post.featured_community,
1551       feature_type: "Community",
1552       auth: myAuthRequired(),
1553     });
1554   }
1555
1556   handleModBanFromCommunityShow(i: PostListing) {
1557     i.setState({
1558       showBanDialog: true,
1559       banType: BanType.Community,
1560       showRemoveDialog: false,
1561     });
1562   }
1563
1564   handleModBanShow(i: PostListing) {
1565     i.setState({
1566       showBanDialog: true,
1567       banType: BanType.Site,
1568       showRemoveDialog: false,
1569     });
1570   }
1571
1572   handlePurgePersonShow(i: PostListing) {
1573     i.setState({
1574       showPurgeDialog: true,
1575       purgeType: PurgeType.Person,
1576       showRemoveDialog: false,
1577     });
1578   }
1579
1580   handlePurgePostShow(i: PostListing) {
1581     i.setState({
1582       showPurgeDialog: true,
1583       purgeType: PurgeType.Post,
1584       showRemoveDialog: false,
1585     });
1586   }
1587
1588   handlePurgeReasonChange(i: PostListing, event: any) {
1589     i.setState({ purgeReason: event.target.value });
1590   }
1591
1592   handlePurgeSubmit(i: PostListing, event: any) {
1593     event.preventDefault();
1594     i.setState({ purgeLoading: true });
1595     if (i.state.purgeType == PurgeType.Person) {
1596       i.props.onPurgePerson({
1597         person_id: i.postView.creator.id,
1598         reason: i.state.purgeReason,
1599         auth: myAuthRequired(),
1600       });
1601     } else if (i.state.purgeType == PurgeType.Post) {
1602       i.props.onPurgePost({
1603         post_id: i.postView.post.id,
1604         reason: i.state.purgeReason,
1605         auth: myAuthRequired(),
1606       });
1607     }
1608   }
1609
1610   handleModBanReasonChange(i: PostListing, event: any) {
1611     i.setState({ banReason: event.target.value });
1612   }
1613
1614   handleModBanExpireDaysChange(i: PostListing, event: any) {
1615     i.setState({ banExpireDays: event.target.value });
1616   }
1617
1618   handleModBanFromCommunitySubmit(i: PostListing, event: any) {
1619     i.setState({ banType: BanType.Community });
1620     i.handleModBanBothSubmit(i, event);
1621   }
1622
1623   handleModBanSubmit(i: PostListing, event: any) {
1624     i.setState({ banType: BanType.Site });
1625     i.handleModBanBothSubmit(i, event);
1626   }
1627
1628   handleModBanBothSubmit(i: PostListing, event: any) {
1629     event.preventDefault();
1630     i.setState({ banLoading: true });
1631
1632     const ban = !i.props.post_view.creator_banned_from_community;
1633     // If its an unban, restore all their data
1634     if (ban == false) {
1635       i.setState({ removeData: false });
1636     }
1637     const person_id = i.props.post_view.creator.id;
1638     const remove_data = i.state.removeData;
1639     const reason = i.state.banReason;
1640     const expires = futureDaysToUnixTime(i.state.banExpireDays);
1641
1642     if (i.state.banType == BanType.Community) {
1643       const community_id = i.postView.community.id;
1644       i.props.onBanPersonFromCommunity({
1645         community_id,
1646         person_id,
1647         ban,
1648         remove_data,
1649         reason,
1650         expires,
1651         auth: myAuthRequired(),
1652       });
1653     } else {
1654       i.props.onBanPerson({
1655         person_id,
1656         ban,
1657         remove_data,
1658         reason,
1659         expires,
1660         auth: myAuthRequired(),
1661       });
1662     }
1663   }
1664
1665   handleAddModToCommunity(i: PostListing) {
1666     i.setState({ addModLoading: true });
1667     i.props.onAddModToCommunity({
1668       community_id: i.postView.community.id,
1669       person_id: i.postView.creator.id,
1670       added: !i.creatorIsMod_,
1671       auth: myAuthRequired(),
1672     });
1673   }
1674
1675   handleAddAdmin(i: PostListing) {
1676     i.setState({ addAdminLoading: true });
1677     i.props.onAddAdmin({
1678       person_id: i.postView.creator.id,
1679       added: !i.creatorIsAdmin_,
1680       auth: myAuthRequired(),
1681     });
1682   }
1683
1684   handleShowConfirmTransferCommunity(i: PostListing) {
1685     i.setState({ showConfirmTransferCommunity: true });
1686   }
1687
1688   handleCancelShowConfirmTransferCommunity(i: PostListing) {
1689     i.setState({ showConfirmTransferCommunity: false });
1690   }
1691
1692   handleTransferCommunity(i: PostListing) {
1693     i.setState({ transferLoading: true });
1694     i.props.onTransferCommunity({
1695       community_id: i.postView.community.id,
1696       person_id: i.postView.creator.id,
1697       auth: myAuthRequired(),
1698     });
1699   }
1700
1701   handleShowConfirmTransferSite(i: PostListing) {
1702     i.setState({ showConfirmTransferSite: true });
1703   }
1704
1705   handleCancelShowConfirmTransferSite(i: PostListing) {
1706     i.setState({ showConfirmTransferSite: false });
1707   }
1708
1709   handleImageExpandClick(i: PostListing, event: any) {
1710     event.preventDefault();
1711     i.setState({ imageExpanded: !i.state.imageExpanded });
1712     setupTippy();
1713   }
1714
1715   handleViewSource(i: PostListing) {
1716     i.setState({ viewSource: !i.state.viewSource });
1717   }
1718
1719   handleShowAdvanced(i: PostListing) {
1720     i.setState({ showAdvanced: !i.state.showAdvanced });
1721     setupTippy();
1722   }
1723
1724   handleShowMoreMobile(i: PostListing) {
1725     i.setState({
1726       showMoreMobile: !i.state.showMoreMobile,
1727       showAdvanced: !i.state.showAdvanced,
1728     });
1729     setupTippy();
1730   }
1731
1732   handleShowBody(i: PostListing) {
1733     i.setState({ showBody: !i.state.showBody });
1734     setupTippy();
1735   }
1736
1737   get pointsTippy(): string {
1738     const points = I18NextService.i18n.t("number_of_points", {
1739       count: Number(this.postView.counts.score),
1740       formattedCount: Number(this.postView.counts.score),
1741     });
1742
1743     const upvotes = I18NextService.i18n.t("number_of_upvotes", {
1744       count: Number(this.postView.counts.upvotes),
1745       formattedCount: Number(this.postView.counts.upvotes),
1746     });
1747
1748     const downvotes = I18NextService.i18n.t("number_of_downvotes", {
1749       count: Number(this.postView.counts.downvotes),
1750       formattedCount: Number(this.postView.counts.downvotes),
1751     });
1752
1753     return `${points} • ${upvotes} • ${downvotes}`;
1754   }
1755
1756   get canModOnSelf_(): boolean {
1757     return canMod(
1758       this.postView.creator.id,
1759       this.props.moderators,
1760       this.props.admins,
1761       undefined,
1762       true
1763     );
1764   }
1765
1766   get canMod_(): boolean {
1767     return canMod(
1768       this.postView.creator.id,
1769       this.props.moderators,
1770       this.props.admins
1771     );
1772   }
1773
1774   get canAdmin_(): boolean {
1775     return canAdmin(this.postView.creator.id, this.props.admins);
1776   }
1777
1778   get creatorIsMod_(): boolean {
1779     return isMod(this.postView.creator.id, this.props.moderators);
1780   }
1781
1782   get creatorIsAdmin_(): boolean {
1783     return isAdmin(this.postView.creator.id, this.props.admins);
1784   }
1785 }