]> Untitled Git - lemmy-ui.git/blob - src/shared/components/post/post-listing.tsx
Merge branch 'main' into issue-template-checkboxes
[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       <div 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       </div>
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`}
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 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(mobile)}
658       </div>
659     );
660   }
661
662   postActions(mobile = false) {
663     // Possible enhancement: Priority+ pattern instead of just hard coding which get hidden behind the show more button.
664     // Possible enhancement: Make each button a component.
665     const post_view = this.postView;
666     return (
667       <>
668         {this.saveButton}
669         {this.crossPostButton}
670         {mobile && this.showMoreButton}
671         {(!mobile || this.state.showAdvanced) && (
672           <>
673             {!this.myPost && (
674               <>
675                 {this.reportButton}
676                 {this.blockButton}
677               </>
678             )}
679             {this.myPost && (this.showBody || this.state.showAdvanced) && (
680               <>
681                 {this.editButton}
682                 {this.deleteButton}
683               </>
684             )}
685           </>
686         )}
687         {this.state.showAdvanced && (
688           <>
689             {this.showBody && post_view.post.body && this.viewSourceButton}
690             {/* Any mod can do these, not limited to hierarchy*/}
691             {(amMod(this.props.moderators) || amAdmin()) && (
692               <>
693                 {this.lockButton}
694                 {this.featureButton}
695               </>
696             )}
697             {(this.canMod_ || this.canAdmin_) && <>{this.modRemoveButton}</>}
698           </>
699         )}
700         {!mobile && this.showMoreButton}
701       </>
702     );
703   }
704
705   get commentsButton() {
706     const post_view = this.postView;
707     return (
708       <Link
709         className="btn btn-link text-muted py-0 pl-0 text-muted"
710         title={i18n.t("number_of_comments", {
711           count: Number(post_view.counts.comments),
712           formattedCount: Number(post_view.counts.comments),
713         })}
714         to={`/post/${post_view.post.id}?scrollToComments=true`}
715       >
716         <Icon icon="message-square" classes="mr-1" inline />
717         <span className="mr-2">
718           {i18n.t("number_of_comments", {
719             count: Number(post_view.counts.comments),
720             formattedCount: numToSI(post_view.counts.comments),
721           })}
722         </span>
723         {this.unreadCount && (
724           <span className="small text-warning">
725             ({this.unreadCount} {i18n.t("new")})
726           </span>
727         )}
728       </Link>
729     );
730   }
731
732   get unreadCount(): number | undefined {
733     const pv = this.postView;
734     return pv.unread_comments == pv.counts.comments || pv.unread_comments == 0
735       ? undefined
736       : pv.unread_comments;
737   }
738
739   get mobileVotes() {
740     // TODO: make nicer
741     const tippy = showScores()
742       ? { "data-tippy-content": this.pointsTippy }
743       : {};
744     return (
745       <>
746         <div>
747           <button
748             className={`btn-animate btn py-0 px-1 ${
749               this.postView.my_vote === 1 ? "text-info" : "text-muted"
750             }`}
751             {...tippy}
752             onClick={linkEvent(this, this.handleUpvote)}
753             aria-label={i18n.t("upvote")}
754             aria-pressed={this.postView.my_vote === 1}
755           >
756             {this.state.upvoteLoading ? (
757               <Spinner />
758             ) : (
759               <>
760                 <Icon icon="arrow-up1" classes="icon-inline small" />
761                 {showScores() && (
762                   <span className="ml-2">
763                     {numToSI(this.postView.counts.upvotes)}
764                   </span>
765                 )}
766               </>
767             )}
768           </button>
769           {this.props.enableDownvotes && (
770             <button
771               className={`ml-2 btn-animate btn py-0 px-1 ${
772                 this.postView.my_vote === -1 ? "text-danger" : "text-muted"
773               }`}
774               onClick={linkEvent(this, this.handleDownvote)}
775               {...tippy}
776               aria-label={i18n.t("downvote")}
777               aria-pressed={this.postView.my_vote === -1}
778             >
779               {this.state.downvoteLoading ? (
780                 <Spinner />
781               ) : (
782                 <>
783                   <Icon icon="arrow-down1" classes="icon-inline small" />
784                   {showScores() && (
785                     <span
786                       className={classNames("ml-2", {
787                         invisible: this.postView.counts.downvotes === 0,
788                       })}
789                     >
790                       {numToSI(this.postView.counts.downvotes)}
791                     </span>
792                   )}
793                 </>
794               )}
795             </button>
796           )}
797         </div>
798       </>
799     );
800   }
801
802   get saveButton() {
803     const saved = this.postView.saved;
804     const label = saved ? i18n.t("unsave") : i18n.t("save");
805     return (
806       <button
807         className="btn btn-link btn-animate text-muted py-0"
808         onClick={linkEvent(this, this.handleSavePostClick)}
809         data-tippy-content={label}
810         aria-label={label}
811       >
812         {this.state.saveLoading ? (
813           <Spinner />
814         ) : (
815           <Icon
816             icon="star"
817             classes={classNames({ "text-warning": saved })}
818             inline
819           />
820         )}
821       </button>
822     );
823   }
824
825   get crossPostButton() {
826     return (
827       <Link
828         className="btn btn-link btn-animate text-muted py-0"
829         to={{
830           /* Empty string properties are required to satisfy type*/
831           pathname: "/create_post",
832           state: { ...this.crossPostParams },
833           hash: "",
834           key: "",
835           search: "",
836         }}
837         title={i18n.t("cross_post")}
838       >
839         <Icon icon="copy" inline />
840       </Link>
841     );
842   }
843
844   get reportButton() {
845     return (
846       <button
847         className="btn btn-link btn-animate text-muted py-0"
848         onClick={linkEvent(this, this.handleShowReportDialog)}
849         data-tippy-content={i18n.t("show_report_dialog")}
850         aria-label={i18n.t("show_report_dialog")}
851       >
852         <Icon icon="flag" inline />
853       </button>
854     );
855   }
856
857   get blockButton() {
858     return (
859       <button
860         className="btn btn-link btn-animate text-muted py-0"
861         onClick={linkEvent(this, this.handleBlockPersonClick)}
862         data-tippy-content={i18n.t("block_user")}
863         aria-label={i18n.t("block_user")}
864       >
865         {this.state.blockLoading ? <Spinner /> : <Icon icon="slash" inline />}
866       </button>
867     );
868   }
869
870   get editButton() {
871     return (
872       <button
873         className="btn btn-link btn-animate text-muted py-0"
874         onClick={linkEvent(this, this.handleEditClick)}
875         data-tippy-content={i18n.t("edit")}
876         aria-label={i18n.t("edit")}
877       >
878         <Icon icon="edit" inline />
879       </button>
880     );
881   }
882
883   get deleteButton() {
884     const deleted = this.postView.post.deleted;
885     const label = !deleted ? i18n.t("delete") : i18n.t("restore");
886     return (
887       <button
888         className="btn btn-link btn-animate text-muted py-0"
889         onClick={linkEvent(this, this.handleDeleteClick)}
890         data-tippy-content={label}
891         aria-label={label}
892       >
893         {this.state.deleteLoading ? (
894           <Spinner />
895         ) : (
896           <Icon
897             icon="trash"
898             classes={classNames({ "text-danger": deleted })}
899             inline
900           />
901         )}
902       </button>
903     );
904   }
905
906   get showMoreButton() {
907     return (
908       <button
909         className="btn btn-link btn-animate text-muted py-0"
910         onClick={linkEvent(this, this.handleShowAdvanced)}
911         data-tippy-content={i18n.t("more")}
912         aria-label={i18n.t("more")}
913       >
914         <Icon icon="more-vertical" inline />
915       </button>
916     );
917   }
918
919   get viewSourceButton() {
920     return (
921       <button
922         className="btn btn-link btn-animate text-muted py-0"
923         onClick={linkEvent(this, this.handleViewSource)}
924         data-tippy-content={i18n.t("view_source")}
925         aria-label={i18n.t("view_source")}
926       >
927         <Icon
928           icon="file-text"
929           classes={classNames({ "text-success": this.state.viewSource })}
930           inline
931         />
932       </button>
933     );
934   }
935
936   get lockButton() {
937     const locked = this.postView.post.locked;
938     const label = locked ? i18n.t("unlock") : i18n.t("lock");
939     return (
940       <button
941         className="btn btn-link btn-animate text-muted py-0"
942         onClick={linkEvent(this, this.handleModLock)}
943         data-tippy-content={label}
944         aria-label={label}
945       >
946         {this.state.lockLoading ? (
947           <Spinner />
948         ) : (
949           <Icon
950             icon="lock"
951             classes={classNames({ "text-danger": locked })}
952             inline
953           />
954         )}
955       </button>
956     );
957   }
958
959   get featureButton() {
960     const featuredCommunity = this.postView.post.featured_community;
961     const labelCommunity = featuredCommunity
962       ? i18n.t("unfeature_from_community")
963       : i18n.t("feature_in_community");
964
965     const featuredLocal = this.postView.post.featured_local;
966     const labelLocal = featuredLocal
967       ? i18n.t("unfeature_from_local")
968       : i18n.t("feature_in_local");
969     return (
970       <span>
971         <button
972           className="btn btn-link btn-animate text-muted py-0 pl-0"
973           onClick={linkEvent(this, this.handleModFeaturePostCommunity)}
974           data-tippy-content={labelCommunity}
975           aria-label={labelCommunity}
976         >
977           {this.state.featureCommunityLoading ? (
978             <Spinner />
979           ) : (
980             <span>
981               <Icon
982                 icon="pin"
983                 classes={classNames({ "text-success": featuredCommunity })}
984                 inline
985               />
986               {i18n.t("community")}
987             </span>
988           )}
989         </button>
990         {amAdmin() && (
991           <button
992             className="btn btn-link btn-animate text-muted py-0"
993             onClick={linkEvent(this, this.handleModFeaturePostLocal)}
994             data-tippy-content={labelLocal}
995             aria-label={labelLocal}
996           >
997             {this.state.featureLocalLoading ? (
998               <Spinner />
999             ) : (
1000               <span>
1001                 <Icon
1002                   icon="pin"
1003                   classes={classNames({ "text-success": featuredLocal })}
1004                   inline
1005                 />
1006                 {i18n.t("local")}
1007               </span>
1008             )}
1009           </button>
1010         )}
1011       </span>
1012     );
1013   }
1014
1015   get modRemoveButton() {
1016     const removed = this.postView.post.removed;
1017     return (
1018       <button
1019         className="btn btn-link btn-animate text-muted py-0"
1020         onClick={linkEvent(
1021           this,
1022           !removed ? this.handleModRemoveShow : this.handleModRemoveSubmit
1023         )}
1024       >
1025         {/* TODO: Find an icon for this. */}
1026         {this.state.removeLoading ? (
1027           <Spinner />
1028         ) : !removed ? (
1029           i18n.t("remove")
1030         ) : (
1031           i18n.t("restore")
1032         )}
1033       </button>
1034     );
1035   }
1036
1037   /**
1038    * Mod/Admin actions to be taken against the author.
1039    */
1040   userActionsLine() {
1041     // TODO: make nicer
1042     const post_view = this.postView;
1043     return (
1044       this.state.showAdvanced && (
1045         <>
1046           {this.canMod_ && (
1047             <>
1048               {!this.creatorIsMod_ &&
1049                 (!post_view.creator_banned_from_community ? (
1050                   <button
1051                     className="btn btn-link btn-animate text-muted py-0"
1052                     onClick={linkEvent(
1053                       this,
1054                       this.handleModBanFromCommunityShow
1055                     )}
1056                     aria-label={i18n.t("ban_from_community")}
1057                   >
1058                     {i18n.t("ban_from_community")}
1059                   </button>
1060                 ) : (
1061                   <button
1062                     className="btn btn-link btn-animate text-muted py-0"
1063                     onClick={linkEvent(
1064                       this,
1065                       this.handleModBanFromCommunitySubmit
1066                     )}
1067                     aria-label={i18n.t("unban")}
1068                   >
1069                     {this.state.banLoading ? <Spinner /> : i18n.t("unban")}
1070                   </button>
1071                 ))}
1072               {!post_view.creator_banned_from_community && (
1073                 <button
1074                   className="btn btn-link btn-animate text-muted py-0"
1075                   onClick={linkEvent(this, this.handleAddModToCommunity)}
1076                   aria-label={
1077                     this.creatorIsMod_
1078                       ? i18n.t("remove_as_mod")
1079                       : i18n.t("appoint_as_mod")
1080                   }
1081                 >
1082                   {this.state.addModLoading ? (
1083                     <Spinner />
1084                   ) : this.creatorIsMod_ ? (
1085                     i18n.t("remove_as_mod")
1086                   ) : (
1087                     i18n.t("appoint_as_mod")
1088                   )}
1089                 </button>
1090               )}
1091             </>
1092           )}
1093           {/* Community creators and admins can transfer community to another mod */}
1094           {(amCommunityCreator(post_view.creator.id, this.props.moderators) ||
1095             this.canAdmin_) &&
1096             this.creatorIsMod_ &&
1097             (!this.state.showConfirmTransferCommunity ? (
1098               <button
1099                 className="btn btn-link btn-animate text-muted py-0"
1100                 onClick={linkEvent(
1101                   this,
1102                   this.handleShowConfirmTransferCommunity
1103                 )}
1104                 aria-label={i18n.t("transfer_community")}
1105               >
1106                 {i18n.t("transfer_community")}
1107               </button>
1108             ) : (
1109               <>
1110                 <button
1111                   className="d-inline-block mr-1 btn btn-link btn-animate text-muted py-0"
1112                   aria-label={i18n.t("are_you_sure")}
1113                 >
1114                   {i18n.t("are_you_sure")}
1115                 </button>
1116                 <button
1117                   className="btn btn-link btn-animate text-muted py-0 d-inline-block mr-1"
1118                   aria-label={i18n.t("yes")}
1119                   onClick={linkEvent(this, this.handleTransferCommunity)}
1120                 >
1121                   {this.state.transferLoading ? <Spinner /> : i18n.t("yes")}
1122                 </button>
1123                 <button
1124                   className="btn btn-link btn-animate text-muted py-0 d-inline-block"
1125                   onClick={linkEvent(
1126                     this,
1127                     this.handleCancelShowConfirmTransferCommunity
1128                   )}
1129                   aria-label={i18n.t("no")}
1130                 >
1131                   {i18n.t("no")}
1132                 </button>
1133               </>
1134             ))}
1135           {/* Admins can ban from all, and appoint other admins */}
1136           {this.canAdmin_ && (
1137             <>
1138               {!this.creatorIsAdmin_ && (
1139                 <>
1140                   {!isBanned(post_view.creator) ? (
1141                     <button
1142                       className="btn btn-link btn-animate text-muted py-0"
1143                       onClick={linkEvent(this, this.handleModBanShow)}
1144                       aria-label={i18n.t("ban_from_site")}
1145                     >
1146                       {i18n.t("ban_from_site")}
1147                     </button>
1148                   ) : (
1149                     <button
1150                       className="btn btn-link btn-animate text-muted py-0"
1151                       onClick={linkEvent(this, this.handleModBanSubmit)}
1152                       aria-label={i18n.t("unban_from_site")}
1153                     >
1154                       {this.state.banLoading ? (
1155                         <Spinner />
1156                       ) : (
1157                         i18n.t("unban_from_site")
1158                       )}
1159                     </button>
1160                   )}
1161                   <button
1162                     className="btn btn-link btn-animate text-muted py-0"
1163                     onClick={linkEvent(this, this.handlePurgePersonShow)}
1164                     aria-label={i18n.t("purge_user")}
1165                   >
1166                     {i18n.t("purge_user")}
1167                   </button>
1168                   <button
1169                     className="btn btn-link btn-animate text-muted py-0"
1170                     onClick={linkEvent(this, this.handlePurgePostShow)}
1171                     aria-label={i18n.t("purge_post")}
1172                   >
1173                     {i18n.t("purge_post")}
1174                   </button>
1175                 </>
1176               )}
1177               {!isBanned(post_view.creator) && post_view.creator.local && (
1178                 <button
1179                   className="btn btn-link btn-animate text-muted py-0"
1180                   onClick={linkEvent(this, this.handleAddAdmin)}
1181                   aria-label={
1182                     this.creatorIsAdmin_
1183                       ? i18n.t("remove_as_admin")
1184                       : i18n.t("appoint_as_admin")
1185                   }
1186                 >
1187                   {this.state.addAdminLoading ? (
1188                     <Spinner />
1189                   ) : this.creatorIsAdmin_ ? (
1190                     i18n.t("remove_as_admin")
1191                   ) : (
1192                     i18n.t("appoint_as_admin")
1193                   )}
1194                 </button>
1195               )}
1196             </>
1197           )}
1198         </>
1199       )
1200     );
1201   }
1202
1203   removeAndBanDialogs() {
1204     const post = this.postView;
1205     const purgeTypeText =
1206       this.state.purgeType == PurgeType.Post
1207         ? i18n.t("purge_post")
1208         : `${i18n.t("purge")} ${post.creator.name}`;
1209     return (
1210       <>
1211         {this.state.showRemoveDialog && (
1212           <form
1213             className="form-inline"
1214             onSubmit={linkEvent(this, this.handleModRemoveSubmit)}
1215           >
1216             <label className="sr-only" htmlFor="post-listing-remove-reason">
1217               {i18n.t("reason")}
1218             </label>
1219             <input
1220               type="text"
1221               id="post-listing-remove-reason"
1222               className="form-control mr-2"
1223               placeholder={i18n.t("reason")}
1224               value={this.state.removeReason}
1225               onInput={linkEvent(this, this.handleModRemoveReasonChange)}
1226             />
1227             <button
1228               type="submit"
1229               className="btn btn-secondary"
1230               aria-label={i18n.t("remove_post")}
1231             >
1232               {this.state.removeLoading ? <Spinner /> : i18n.t("remove_post")}
1233             </button>
1234           </form>
1235         )}
1236         {this.state.showBanDialog && (
1237           <form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
1238             <div className="form-group row col-12">
1239               <label
1240                 className="col-form-label"
1241                 htmlFor="post-listing-ban-reason"
1242               >
1243                 {i18n.t("reason")}
1244               </label>
1245               <input
1246                 type="text"
1247                 id="post-listing-ban-reason"
1248                 className="form-control mr-2"
1249                 placeholder={i18n.t("reason")}
1250                 value={this.state.banReason}
1251                 onInput={linkEvent(this, this.handleModBanReasonChange)}
1252               />
1253               <label className="col-form-label" htmlFor={`mod-ban-expires`}>
1254                 {i18n.t("expires")}
1255               </label>
1256               <input
1257                 type="number"
1258                 id={`mod-ban-expires`}
1259                 className="form-control mr-2"
1260                 placeholder={i18n.t("number_of_days")}
1261                 value={this.state.banExpireDays}
1262                 onInput={linkEvent(this, this.handleModBanExpireDaysChange)}
1263               />
1264               <div className="form-group">
1265                 <div className="form-check">
1266                   <input
1267                     className="form-check-input"
1268                     id="mod-ban-remove-data"
1269                     type="checkbox"
1270                     checked={this.state.removeData}
1271                     onChange={linkEvent(this, this.handleModRemoveDataChange)}
1272                   />
1273                   <label
1274                     className="form-check-label"
1275                     htmlFor="mod-ban-remove-data"
1276                     title={i18n.t("remove_content_more")}
1277                   >
1278                     {i18n.t("remove_content")}
1279                   </label>
1280                 </div>
1281               </div>
1282             </div>
1283             {/* TODO hold off on expires until later */}
1284             {/* <div class="form-group row"> */}
1285             {/*   <label class="col-form-label">Expires</label> */}
1286             {/*   <input type="date" class="form-control mr-2" placeholder={i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
1287             {/* </div> */}
1288             <div className="form-group row">
1289               <button
1290                 type="submit"
1291                 className="btn btn-secondary"
1292                 aria-label={i18n.t("ban")}
1293               >
1294                 {this.state.banLoading ? (
1295                   <Spinner />
1296                 ) : (
1297                   <span>
1298                     {i18n.t("ban")} {post.creator.name}
1299                   </span>
1300                 )}
1301               </button>
1302             </div>
1303           </form>
1304         )}
1305         {this.state.showReportDialog && (
1306           <form
1307             className="form-inline"
1308             onSubmit={linkEvent(this, this.handleReportSubmit)}
1309           >
1310             <label className="sr-only" htmlFor="post-report-reason">
1311               {i18n.t("reason")}
1312             </label>
1313             <input
1314               type="text"
1315               id="post-report-reason"
1316               className="form-control mr-2"
1317               placeholder={i18n.t("reason")}
1318               required
1319               value={this.state.reportReason}
1320               onInput={linkEvent(this, this.handleReportReasonChange)}
1321             />
1322             <button
1323               type="submit"
1324               className="btn btn-secondary"
1325               aria-label={i18n.t("create_report")}
1326             >
1327               {this.state.reportLoading ? <Spinner /> : i18n.t("create_report")}
1328             </button>
1329           </form>
1330         )}
1331         {this.state.showPurgeDialog && (
1332           <form
1333             className="form-inline"
1334             onSubmit={linkEvent(this, this.handlePurgeSubmit)}
1335           >
1336             <PurgeWarning />
1337             <label className="sr-only" htmlFor="purge-reason">
1338               {i18n.t("reason")}
1339             </label>
1340             <input
1341               type="text"
1342               id="purge-reason"
1343               className="form-control mr-2"
1344               placeholder={i18n.t("reason")}
1345               value={this.state.purgeReason}
1346               onInput={linkEvent(this, this.handlePurgeReasonChange)}
1347             />
1348             {this.state.purgeLoading ? (
1349               <Spinner />
1350             ) : (
1351               <button
1352                 type="submit"
1353                 className="btn btn-secondary"
1354                 aria-label={purgeTypeText}
1355               >
1356                 {this.state.purgeLoading ? <Spinner /> : { purgeTypeText }}
1357               </button>
1358             )}
1359           </form>
1360         )}
1361       </>
1362     );
1363   }
1364
1365   mobileThumbnail() {
1366     const post = this.postView.post;
1367     return post.thumbnail_url || (post.url && isImage(post.url)) ? (
1368       <div className="row">
1369         <div className={`${this.state.imageExpanded ? "col-12" : "col-8"}`}>
1370           {this.postTitleLine()}
1371         </div>
1372         <div className="col-4">
1373           {/* Post body prev or thumbnail */}
1374           {!this.state.imageExpanded && this.thumbnail()}
1375         </div>
1376       </div>
1377     ) : (
1378       this.postTitleLine()
1379     );
1380   }
1381
1382   showMobilePreview() {
1383     const body = this.postView.post.body;
1384     return !this.showBody && body ? (
1385       <div className="md-div mb-1 preview-lines">{body}</div>
1386     ) : (
1387       <></>
1388     );
1389   }
1390
1391   listing() {
1392     return (
1393       <>
1394         {/* The mobile view*/}
1395         <div className="d-block d-sm-none">
1396           <div className="row">
1397             <div className="col-12">
1398               {this.createdLine()}
1399
1400               {/* If it has a thumbnail, do a right aligned thumbnail */}
1401               {this.mobileThumbnail()}
1402
1403               {/* Show a preview of the post body */}
1404               {this.showMobilePreview()}
1405
1406               {this.commentsLine(true)}
1407               {this.userActionsLine()}
1408               {this.duplicatesLine()}
1409               {this.removeAndBanDialogs()}
1410             </div>
1411           </div>
1412         </div>
1413
1414         {/* The larger view*/}
1415         <div className="d-none d-sm-block">
1416           <div className="row">
1417             {!this.props.viewOnly && this.voteBar()}
1418             <div className="col-sm-2 pr-0">
1419               <div className="">{this.thumbnail()}</div>
1420             </div>
1421             <div className="col-12 col-sm-9">
1422               <div className="row">
1423                 <div className="col-12">
1424                   {this.postTitleLine()}
1425                   {this.createdLine()}
1426                   {this.commentsLine()}
1427                   {this.duplicatesLine()}
1428                   {this.userActionsLine()}
1429                   {this.removeAndBanDialogs()}
1430                 </div>
1431               </div>
1432             </div>
1433           </div>
1434         </div>
1435       </>
1436     );
1437   }
1438
1439   private get myPost(): boolean {
1440     return (
1441       this.postView.creator.id ==
1442       UserService.Instance.myUserInfo?.local_user_view.person.id
1443     );
1444   }
1445   handleEditClick(i: PostListing) {
1446     i.setState({ showEdit: true });
1447   }
1448
1449   handleEditCancel() {
1450     this.setState({ showEdit: false });
1451   }
1452
1453   // The actual editing is done in the receive for post
1454   handleEditPost(form: EditPost) {
1455     this.setState({ showEdit: false });
1456     this.props.onPostEdit(form);
1457   }
1458
1459   handleShare(i: PostListing) {
1460     const { name, body, id } = i.props.post_view.post;
1461     share({
1462       title: name,
1463       text: body?.slice(0, 50),
1464       url: `${getHttpBase()}/post/${id}`,
1465     });
1466   }
1467
1468   handleShowReportDialog(i: PostListing) {
1469     i.setState({ showReportDialog: !i.state.showReportDialog });
1470   }
1471
1472   handleReportReasonChange(i: PostListing, event: any) {
1473     i.setState({ reportReason: event.target.value });
1474   }
1475
1476   handleReportSubmit(i: PostListing, event: any) {
1477     event.preventDefault();
1478     i.setState({ reportLoading: true });
1479     i.props.onPostReport({
1480       post_id: i.postView.post.id,
1481       reason: i.state.reportReason ?? "",
1482       auth: myAuthRequired(),
1483     });
1484   }
1485
1486   handleBlockPersonClick(i: PostListing) {
1487     i.setState({ blockLoading: true });
1488     i.props.onBlockPerson({
1489       person_id: i.postView.creator.id,
1490       block: true,
1491       auth: myAuthRequired(),
1492     });
1493   }
1494
1495   handleDeleteClick(i: PostListing) {
1496     i.setState({ deleteLoading: true });
1497     i.props.onDeletePost({
1498       post_id: i.postView.post.id,
1499       deleted: !i.postView.post.deleted,
1500       auth: myAuthRequired(),
1501     });
1502   }
1503
1504   handleSavePostClick(i: PostListing) {
1505     i.setState({ saveLoading: true });
1506     i.props.onSavePost({
1507       post_id: i.postView.post.id,
1508       save: !i.postView.saved,
1509       auth: myAuthRequired(),
1510     });
1511   }
1512
1513   get crossPostParams(): PostFormParams {
1514     const queryParams: PostFormParams = {};
1515     const { name, url } = this.postView.post;
1516
1517     queryParams.name = name;
1518
1519     if (url) {
1520       queryParams.url = url;
1521     }
1522
1523     const crossPostBody = this.crossPostBody();
1524     if (crossPostBody) {
1525       queryParams.body = crossPostBody;
1526     }
1527
1528     return queryParams;
1529   }
1530
1531   crossPostBody(): string | undefined {
1532     const post = this.postView.post;
1533     const body = post.body;
1534
1535     return body
1536       ? `${i18n.t("cross_posted_from")} ${post.ap_id}\n\n${body.replace(
1537           /^/gm,
1538           "> "
1539         )}`
1540       : undefined;
1541   }
1542
1543   get showBody(): boolean {
1544     return this.props.showBody || this.state.showBody;
1545   }
1546
1547   handleModRemoveShow(i: PostListing) {
1548     i.setState({
1549       showRemoveDialog: !i.state.showRemoveDialog,
1550       showBanDialog: false,
1551     });
1552   }
1553
1554   handleModRemoveReasonChange(i: PostListing, event: any) {
1555     i.setState({ removeReason: event.target.value });
1556   }
1557
1558   handleModRemoveDataChange(i: PostListing, event: any) {
1559     i.setState({ removeData: event.target.checked });
1560   }
1561
1562   handleModRemoveSubmit(i: PostListing, event: any) {
1563     event.preventDefault();
1564     i.setState({ removeLoading: true });
1565     i.props.onRemovePost({
1566       post_id: i.postView.post.id,
1567       removed: !i.postView.post.removed,
1568       auth: myAuthRequired(),
1569     });
1570   }
1571
1572   handleModLock(i: PostListing) {
1573     i.setState({ lockLoading: true });
1574     i.props.onLockPost({
1575       post_id: i.postView.post.id,
1576       locked: !i.postView.post.locked,
1577       auth: myAuthRequired(),
1578     });
1579   }
1580
1581   handleModFeaturePostLocal(i: PostListing) {
1582     i.setState({ featureLocalLoading: true });
1583     i.props.onFeaturePost({
1584       post_id: i.postView.post.id,
1585       featured: !i.postView.post.featured_local,
1586       feature_type: "Local",
1587       auth: myAuthRequired(),
1588     });
1589   }
1590
1591   handleModFeaturePostCommunity(i: PostListing) {
1592     i.setState({ featureCommunityLoading: true });
1593     i.props.onFeaturePost({
1594       post_id: i.postView.post.id,
1595       featured: !i.postView.post.featured_community,
1596       feature_type: "Community",
1597       auth: myAuthRequired(),
1598     });
1599   }
1600
1601   handleModBanFromCommunityShow(i: PostListing) {
1602     i.setState({
1603       showBanDialog: true,
1604       banType: BanType.Community,
1605       showRemoveDialog: false,
1606     });
1607   }
1608
1609   handleModBanShow(i: PostListing) {
1610     i.setState({
1611       showBanDialog: true,
1612       banType: BanType.Site,
1613       showRemoveDialog: false,
1614     });
1615   }
1616
1617   handlePurgePersonShow(i: PostListing) {
1618     i.setState({
1619       showPurgeDialog: true,
1620       purgeType: PurgeType.Person,
1621       showRemoveDialog: false,
1622     });
1623   }
1624
1625   handlePurgePostShow(i: PostListing) {
1626     i.setState({
1627       showPurgeDialog: true,
1628       purgeType: PurgeType.Post,
1629       showRemoveDialog: false,
1630     });
1631   }
1632
1633   handlePurgeReasonChange(i: PostListing, event: any) {
1634     i.setState({ purgeReason: event.target.value });
1635   }
1636
1637   handlePurgeSubmit(i: PostListing, event: any) {
1638     event.preventDefault();
1639     i.setState({ purgeLoading: true });
1640     if (i.state.purgeType == PurgeType.Person) {
1641       i.props.onPurgePerson({
1642         person_id: i.postView.creator.id,
1643         reason: i.state.purgeReason,
1644         auth: myAuthRequired(),
1645       });
1646     } else if (i.state.purgeType == PurgeType.Post) {
1647       i.props.onPurgePost({
1648         post_id: i.postView.post.id,
1649         reason: i.state.purgeReason,
1650         auth: myAuthRequired(),
1651       });
1652     }
1653   }
1654
1655   handleModBanReasonChange(i: PostListing, event: any) {
1656     i.setState({ banReason: event.target.value });
1657   }
1658
1659   handleModBanExpireDaysChange(i: PostListing, event: any) {
1660     i.setState({ banExpireDays: event.target.value });
1661   }
1662
1663   handleModBanFromCommunitySubmit(i: PostListing, event: any) {
1664     i.setState({ banType: BanType.Community });
1665     i.handleModBanBothSubmit(i, event);
1666   }
1667
1668   handleModBanSubmit(i: PostListing, event: any) {
1669     i.setState({ banType: BanType.Site });
1670     i.handleModBanBothSubmit(i, event);
1671   }
1672
1673   handleModBanBothSubmit(i: PostListing, event: any) {
1674     event.preventDefault();
1675     i.setState({ banLoading: true });
1676
1677     const ban = !i.props.post_view.creator_banned_from_community;
1678     // If its an unban, restore all their data
1679     if (ban == false) {
1680       i.setState({ removeData: false });
1681     }
1682     const person_id = i.props.post_view.creator.id;
1683     const remove_data = i.state.removeData;
1684     const reason = i.state.banReason;
1685     const expires = futureDaysToUnixTime(i.state.banExpireDays);
1686
1687     if (i.state.banType == BanType.Community) {
1688       const community_id = i.postView.community.id;
1689       i.props.onBanPersonFromCommunity({
1690         community_id,
1691         person_id,
1692         ban,
1693         remove_data,
1694         reason,
1695         expires,
1696         auth: myAuthRequired(),
1697       });
1698     } else {
1699       i.props.onBanPerson({
1700         person_id,
1701         ban,
1702         remove_data,
1703         reason,
1704         expires,
1705         auth: myAuthRequired(),
1706       });
1707     }
1708   }
1709
1710   handleAddModToCommunity(i: PostListing) {
1711     i.setState({ addModLoading: true });
1712     i.props.onAddModToCommunity({
1713       community_id: i.postView.community.id,
1714       person_id: i.postView.creator.id,
1715       added: !i.creatorIsMod_,
1716       auth: myAuthRequired(),
1717     });
1718   }
1719
1720   handleAddAdmin(i: PostListing) {
1721     i.setState({ addAdminLoading: true });
1722     i.props.onAddAdmin({
1723       person_id: i.postView.creator.id,
1724       added: !i.creatorIsAdmin_,
1725       auth: myAuthRequired(),
1726     });
1727   }
1728
1729   handleShowConfirmTransferCommunity(i: PostListing) {
1730     i.setState({ showConfirmTransferCommunity: true });
1731   }
1732
1733   handleCancelShowConfirmTransferCommunity(i: PostListing) {
1734     i.setState({ showConfirmTransferCommunity: false });
1735   }
1736
1737   handleTransferCommunity(i: PostListing) {
1738     i.setState({ transferLoading: true });
1739     i.props.onTransferCommunity({
1740       community_id: i.postView.community.id,
1741       person_id: i.postView.creator.id,
1742       auth: myAuthRequired(),
1743     });
1744   }
1745
1746   handleShowConfirmTransferSite(i: PostListing) {
1747     i.setState({ showConfirmTransferSite: true });
1748   }
1749
1750   handleCancelShowConfirmTransferSite(i: PostListing) {
1751     i.setState({ showConfirmTransferSite: false });
1752   }
1753
1754   handleImageExpandClick(i: PostListing, event: any) {
1755     event.preventDefault();
1756     i.setState({ imageExpanded: !i.state.imageExpanded });
1757     setupTippy();
1758   }
1759
1760   handleViewSource(i: PostListing) {
1761     i.setState({ viewSource: !i.state.viewSource });
1762   }
1763
1764   handleShowAdvanced(i: PostListing) {
1765     i.setState({ showAdvanced: !i.state.showAdvanced });
1766     setupTippy();
1767   }
1768
1769   handleShowMoreMobile(i: PostListing) {
1770     i.setState({
1771       showMoreMobile: !i.state.showMoreMobile,
1772       showAdvanced: !i.state.showAdvanced,
1773     });
1774     setupTippy();
1775   }
1776
1777   handleShowBody(i: PostListing) {
1778     i.setState({ showBody: !i.state.showBody });
1779     setupTippy();
1780   }
1781
1782   handleUpvote(i: PostListing) {
1783     i.setState({ upvoteLoading: true });
1784     i.props.onPostVote({
1785       post_id: i.postView.post.id,
1786       score: newVote(VoteType.Upvote, i.props.post_view.my_vote),
1787       auth: myAuthRequired(),
1788     });
1789   }
1790
1791   handleDownvote(i: PostListing) {
1792     i.setState({ downvoteLoading: true });
1793     i.props.onPostVote({
1794       post_id: i.postView.post.id,
1795       score: newVote(VoteType.Downvote, i.props.post_view.my_vote),
1796       auth: myAuthRequired(),
1797     });
1798   }
1799
1800   get pointsTippy(): string {
1801     const points = i18n.t("number_of_points", {
1802       count: Number(this.postView.counts.score),
1803       formattedCount: Number(this.postView.counts.score),
1804     });
1805
1806     const upvotes = i18n.t("number_of_upvotes", {
1807       count: Number(this.postView.counts.upvotes),
1808       formattedCount: Number(this.postView.counts.upvotes),
1809     });
1810
1811     const downvotes = i18n.t("number_of_downvotes", {
1812       count: Number(this.postView.counts.downvotes),
1813       formattedCount: Number(this.postView.counts.downvotes),
1814     });
1815
1816     return `${points} • ${upvotes} • ${downvotes}`;
1817   }
1818
1819   get canModOnSelf_(): boolean {
1820     return canMod(
1821       this.postView.creator.id,
1822       this.props.moderators,
1823       this.props.admins,
1824       undefined,
1825       true
1826     );
1827   }
1828
1829   get canMod_(): boolean {
1830     return canMod(
1831       this.postView.creator.id,
1832       this.props.moderators,
1833       this.props.admins
1834     );
1835   }
1836
1837   get canAdmin_(): boolean {
1838     return canAdmin(this.postView.creator.id, this.props.admins);
1839   }
1840
1841   get creatorIsMod_(): boolean {
1842     return isMod(this.postView.creator.id, this.props.moderators);
1843   }
1844
1845   get creatorIsAdmin_(): boolean {
1846     return isAdmin(this.postView.creator.id, this.props.admins);
1847   }
1848 }