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