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