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