]> Untitled Git - lemmy-ui.git/blob - src/shared/components/post/post-form.tsx
fix: Fix heading levels
[lemmy-ui.git] / src / shared / components / post / post-form.tsx
1 import {
2   communityToChoice,
3   fetchCommunities,
4   myAuth,
5   myAuthRequired,
6 } from "@utils/app";
7 import {
8   capitalizeFirstLetter,
9   debounce,
10   getIdFromString,
11   validTitle,
12   validURL,
13 } from "@utils/helpers";
14 import { isImage } from "@utils/media";
15 import { Choice } from "@utils/types";
16 import autosize from "autosize";
17 import { Component, InfernoNode, linkEvent } from "inferno";
18 import {
19   CommunityView,
20   CreatePost,
21   EditPost,
22   GetSiteMetadataResponse,
23   Language,
24   PostView,
25   SearchResponse,
26 } from "lemmy-js-client";
27 import {
28   archiveTodayUrl,
29   ghostArchiveUrl,
30   relTags,
31   trendingFetchLimit,
32   webArchiveUrl,
33 } from "../../config";
34 import { PostFormParams } from "../../interfaces";
35 import { I18NextService, UserService } from "../../services";
36 import { HttpService, RequestState } from "../../services/HttpService";
37 import { setupTippy } from "../../tippy";
38 import { toast } from "../../toast";
39 import { Icon, Spinner } from "../common/icon";
40 import { LanguageSelect } from "../common/language-select";
41 import { MarkdownTextArea } from "../common/markdown-textarea";
42 import NavigationPrompt from "../common/navigation-prompt";
43 import { SearchableSelect } from "../common/searchable-select";
44 import { PostListings } from "./post-listings";
45
46 const MAX_POST_TITLE_LENGTH = 200;
47
48 interface PostFormProps {
49   post_view?: PostView; // If a post is given, that means this is an edit
50   crossPosts?: PostView[];
51   allLanguages: Language[];
52   siteLanguages: number[];
53   params?: PostFormParams;
54   onCancel?(): void;
55   onCreate?(form: CreatePost): void;
56   onEdit?(form: EditPost): void;
57   enableNsfw?: boolean;
58   enableDownvotes?: boolean;
59   selectedCommunityChoice?: Choice;
60   onSelectCommunity?: (choice: Choice) => void;
61   initialCommunities?: CommunityView[];
62 }
63
64 interface PostFormState {
65   form: {
66     name?: string;
67     url?: string;
68     body?: string;
69     nsfw?: boolean;
70     language_id?: number;
71     community_id?: number;
72     honeypot?: string;
73   };
74   loading: boolean;
75   suggestedPostsRes: RequestState<SearchResponse>;
76   metadataRes: RequestState<GetSiteMetadataResponse>;
77   imageLoading: boolean;
78   imageDeleteUrl: string;
79   communitySearchLoading: boolean;
80   communitySearchOptions: Choice[];
81   previewMode: boolean;
82   submitted: boolean;
83 }
84
85 function handlePostSubmit(i: PostForm, event: any) {
86   event.preventDefault();
87   // Coerce empty url string to undefined
88   if ((i.state.form.url ?? "") === "") {
89     i.setState(s => ((s.form.url = undefined), s));
90   }
91   i.setState({ loading: true, submitted: true });
92   const auth = myAuthRequired();
93
94   const pForm = i.state.form;
95   const pv = i.props.post_view;
96
97   if (pv) {
98     i.props.onEdit?.({
99       name: pForm.name,
100       url: pForm.url,
101       body: pForm.body,
102       nsfw: pForm.nsfw,
103       post_id: pv.post.id,
104       language_id: pForm.language_id,
105       auth,
106     });
107   } else if (pForm.name && pForm.community_id) {
108     i.props.onCreate?.({
109       name: pForm.name,
110       community_id: pForm.community_id,
111       url: pForm.url,
112       body: pForm.body,
113       nsfw: pForm.nsfw,
114       language_id: pForm.language_id,
115       honeypot: pForm.honeypot,
116       auth,
117     });
118   }
119 }
120
121 function copySuggestedTitle(d: { i: PostForm; suggestedTitle?: string }) {
122   const sTitle = d.suggestedTitle;
123   if (sTitle) {
124     d.i.setState(
125       s => ((s.form.name = sTitle?.substring(0, MAX_POST_TITLE_LENGTH)), s)
126     );
127     d.i.setState({ suggestedPostsRes: { state: "empty" } });
128     setTimeout(() => {
129       const textarea: any = document.getElementById("post-title");
130       autosize.update(textarea);
131     }, 10);
132   }
133 }
134
135 function handlePostUrlChange(i: PostForm, event: any) {
136   const url = event.target.value;
137
138   i.setState(prev => ({
139     ...prev,
140     form: {
141       ...prev.form,
142       url,
143     },
144     imageDeleteUrl: "",
145   }));
146
147   i.fetchPageTitle();
148 }
149
150 function handlePostNsfwChange(i: PostForm, event: any) {
151   i.setState(s => ((s.form.nsfw = event.target.checked), s));
152 }
153
154 function handleHoneyPotChange(i: PostForm, event: any) {
155   i.setState(s => ((s.form.honeypot = event.target.value), s));
156 }
157
158 function handleCancel(i: PostForm) {
159   i.props.onCancel?.();
160 }
161
162 function handleImageUploadPaste(i: PostForm, event: any) {
163   const image = event.clipboardData.files[0];
164   if (image) {
165     handleImageUpload(i, image);
166   }
167 }
168
169 function handleImageUpload(i: PostForm, event: any) {
170   let file: any;
171   if (event.target) {
172     event.preventDefault();
173     file = event.target.files[0];
174   } else {
175     file = event;
176   }
177
178   i.setState({ imageLoading: true });
179
180   HttpService.client.uploadImage({ image: file }).then(res => {
181     console.log("pictrs upload:");
182     console.log(res);
183     if (res.state === "success") {
184       if (res.data.msg === "ok") {
185         i.state.form.url = res.data.url;
186         i.setState({
187           imageLoading: false,
188           imageDeleteUrl: res.data.delete_url as string,
189         });
190       } else if (res.data.msg === "too_large") {
191         toast(I18NextService.i18n.t("upload_too_large"), "danger");
192       } else {
193         toast(JSON.stringify(res), "danger");
194       }
195     } else if (res.state === "failed") {
196       console.error(res.msg);
197       toast(res.msg, "danger");
198       i.setState({ imageLoading: false });
199     }
200   });
201 }
202
203 function handlePostNameChange(i: PostForm, event: any) {
204   i.setState(s => ((s.form.name = event.target.value), s));
205   i.fetchSimilarPosts();
206 }
207
208 function handleImageDelete(i: PostForm) {
209   const { imageDeleteUrl } = i.state;
210
211   fetch(imageDeleteUrl);
212
213   i.setState(prev => ({
214     ...prev,
215     imageDeleteUrl: "",
216     imageLoading: false,
217     form: {
218       ...prev.form,
219       url: "",
220     },
221   }));
222 }
223
224 export class PostForm extends Component<PostFormProps, PostFormState> {
225   state: PostFormState = {
226     suggestedPostsRes: { state: "empty" },
227     metadataRes: { state: "empty" },
228     form: {},
229     loading: false,
230     imageLoading: false,
231     imageDeleteUrl: "",
232     communitySearchLoading: false,
233     previewMode: false,
234     communitySearchOptions: [],
235     submitted: false,
236   };
237
238   constructor(props: PostFormProps, context: any) {
239     super(props, context);
240     this.fetchSimilarPosts = debounce(this.fetchSimilarPosts.bind(this));
241     this.fetchPageTitle = debounce(this.fetchPageTitle.bind(this));
242     this.handlePostBodyChange = this.handlePostBodyChange.bind(this);
243     this.handleLanguageChange = this.handleLanguageChange.bind(this);
244     this.handleCommunitySelect = this.handleCommunitySelect.bind(this);
245
246     const { post_view, selectedCommunityChoice, params } = this.props;
247
248     // Means its an edit
249     if (post_view) {
250       this.state = {
251         ...this.state,
252         form: {
253           body: post_view.post.body,
254           name: post_view.post.name,
255           community_id: post_view.community.id,
256           url: post_view.post.url,
257           nsfw: post_view.post.nsfw,
258           language_id: post_view.post.language_id,
259         },
260       };
261     } else if (selectedCommunityChoice) {
262       this.state = {
263         ...this.state,
264         form: {
265           ...this.state.form,
266           community_id: getIdFromString(selectedCommunityChoice.value),
267         },
268         communitySearchOptions: [selectedCommunityChoice].concat(
269           (
270             this.props.initialCommunities?.map(
271               ({ community: { id, title } }) => ({
272                 label: title,
273                 value: id.toString(),
274               })
275             ) ?? []
276           ).filter(option => option.value !== selectedCommunityChoice.value)
277         ),
278       };
279     } else {
280       this.state = {
281         ...this.state,
282         communitySearchOptions:
283           this.props.initialCommunities?.map(
284             ({ community: { id, title } }) => ({
285               label: title,
286               value: id.toString(),
287             })
288           ) ?? [],
289       };
290     }
291
292     if (params) {
293       this.state = {
294         ...this.state,
295         form: {
296           ...this.state.form,
297           ...params,
298         },
299       };
300     }
301   }
302
303   componentDidMount() {
304     setupTippy();
305     const textarea: any = document.getElementById("post-title");
306
307     if (textarea) {
308       autosize(textarea);
309     }
310   }
311
312   componentWillReceiveProps(
313     nextProps: Readonly<{ children?: InfernoNode } & PostFormProps>
314   ): void {
315     if (this.props != nextProps) {
316       this.setState(
317         s => (
318           (s.form.community_id = getIdFromString(
319             nextProps.selectedCommunityChoice?.value
320           )),
321           s
322         )
323       );
324     }
325   }
326
327   render() {
328     const firstLang = this.state.form.language_id;
329     const selectedLangs = firstLang ? Array.of(firstLang) : undefined;
330
331     const url = this.state.form.url;
332
333     return (
334       <form className="post-form" onSubmit={linkEvent(this, handlePostSubmit)}>
335         <NavigationPrompt
336           when={
337             !!(
338               this.state.form.name ||
339               this.state.form.url ||
340               this.state.form.body
341             ) && !this.state.submitted
342           }
343         />
344         <div className="mb-3 row">
345           <label className="col-sm-2 col-form-label" htmlFor="post-url">
346             {I18NextService.i18n.t("url")}
347           </label>
348           <div className="col-sm-10">
349             <input
350               type="url"
351               id="post-url"
352               className="form-control"
353               value={url}
354               onInput={linkEvent(this, handlePostUrlChange)}
355               onPaste={linkEvent(this, handleImageUploadPaste)}
356             />
357             {this.renderSuggestedTitleCopy()}
358             <form>
359               <label
360                 htmlFor="file-upload"
361                 className={`${
362                   UserService.Instance.myUserInfo && "pointer"
363                 } d-inline-block float-right text-muted fw-bold`}
364                 data-tippy-content={I18NextService.i18n.t("upload_image")}
365               >
366                 <Icon icon="image" classes="icon-inline" />
367               </label>
368               <input
369                 id="file-upload"
370                 type="file"
371                 accept="image/*,video/*"
372                 name="file"
373                 className="d-none"
374                 disabled={!UserService.Instance.myUserInfo}
375                 onChange={linkEvent(this, handleImageUpload)}
376               />
377             </form>
378             {url && validURL(url) && (
379               <div>
380                 <a
381                   href={`${webArchiveUrl}/save/${encodeURIComponent(url)}`}
382                   className="me-2 d-inline-block float-right text-muted small fw-bold"
383                   rel={relTags}
384                 >
385                   archive.org {I18NextService.i18n.t("archive_link")}
386                 </a>
387                 <a
388                   href={`${ghostArchiveUrl}/search?term=${encodeURIComponent(
389                     url
390                   )}`}
391                   className="me-2 d-inline-block float-right text-muted small fw-bold"
392                   rel={relTags}
393                 >
394                   ghostarchive.org {I18NextService.i18n.t("archive_link")}
395                 </a>
396                 <a
397                   href={`${archiveTodayUrl}/?run=1&url=${encodeURIComponent(
398                     url
399                   )}`}
400                   className="me-2 d-inline-block float-right text-muted small fw-bold"
401                   rel={relTags}
402                 >
403                   archive.today {I18NextService.i18n.t("archive_link")}
404                 </a>
405               </div>
406             )}
407             {this.state.imageLoading && <Spinner />}
408             {url && isImage(url) && (
409               <img src={url} className="img-fluid" alt="" />
410             )}
411             {this.state.imageDeleteUrl && (
412               <button
413                 className="btn btn-danger btn-sm mt-2"
414                 onClick={linkEvent(this, handleImageDelete)}
415                 aria-label={I18NextService.i18n.t("delete")}
416                 data-tippy-content={I18NextService.i18n.t("delete")}
417               >
418                 <Icon icon="x" classes="icon-inline me-1" />
419                 {capitalizeFirstLetter(I18NextService.i18n.t("delete"))}
420               </button>
421             )}
422             {this.props.crossPosts && this.props.crossPosts.length > 0 && (
423               <>
424                 <div className="my-1 text-muted small fw-bold">
425                   {I18NextService.i18n.t("cross_posts")}
426                 </div>
427                 <PostListings
428                   showCommunity
429                   posts={this.props.crossPosts}
430                   enableDownvotes={this.props.enableDownvotes}
431                   enableNsfw={this.props.enableNsfw}
432                   allLanguages={this.props.allLanguages}
433                   siteLanguages={this.props.siteLanguages}
434                   viewOnly
435                   // All of these are unused, since its view only
436                   onPostEdit={() => {}}
437                   onPostVote={() => {}}
438                   onPostReport={() => {}}
439                   onBlockPerson={() => {}}
440                   onLockPost={() => {}}
441                   onDeletePost={() => {}}
442                   onRemovePost={() => {}}
443                   onSavePost={() => {}}
444                   onFeaturePost={() => {}}
445                   onPurgePerson={() => {}}
446                   onPurgePost={() => {}}
447                   onBanPersonFromCommunity={() => {}}
448                   onBanPerson={() => {}}
449                   onAddModToCommunity={() => {}}
450                   onAddAdmin={() => {}}
451                   onTransferCommunity={() => {}}
452                 />
453               </>
454             )}
455           </div>
456         </div>
457         <div className="mb-3 row">
458           <label className="col-sm-2 col-form-label" htmlFor="post-title">
459             {I18NextService.i18n.t("title")}
460           </label>
461           <div className="col-sm-10">
462             <textarea
463               value={this.state.form.name}
464               id="post-title"
465               onInput={linkEvent(this, handlePostNameChange)}
466               className={`form-control ${
467                 !validTitle(this.state.form.name) && "is-invalid"
468               }`}
469               required
470               rows={1}
471               minLength={3}
472               maxLength={MAX_POST_TITLE_LENGTH}
473             />
474             {!validTitle(this.state.form.name) && (
475               <div className="invalid-feedback">
476                 {I18NextService.i18n.t("invalid_post_title")}
477               </div>
478             )}
479             {this.renderSuggestedPosts()}
480           </div>
481         </div>
482
483         <div className="mb-3 row">
484           <label className="col-sm-2 col-form-label">
485             {I18NextService.i18n.t("body")}
486           </label>
487           <div className="col-sm-10">
488             <MarkdownTextArea
489               initialContent={this.state.form.body}
490               onContentChange={this.handlePostBodyChange}
491               allLanguages={this.props.allLanguages}
492               siteLanguages={this.props.siteLanguages}
493               hideNavigationWarnings
494             />
495           </div>
496         </div>
497         <LanguageSelect
498           allLanguages={this.props.allLanguages}
499           siteLanguages={this.props.siteLanguages}
500           selectedLanguageIds={selectedLangs}
501           multiple={false}
502           onChange={this.handleLanguageChange}
503         />
504         {!this.props.post_view && (
505           <div className="mb-3 row">
506             <label className="col-sm-2 col-form-label" htmlFor="post-community">
507               {I18NextService.i18n.t("community")}
508             </label>
509             <div className="col-sm-10">
510               <SearchableSelect
511                 id="post-community"
512                 value={this.state.form.community_id}
513                 options={[
514                   {
515                     label: I18NextService.i18n.t("select_a_community"),
516                     value: "",
517                     disabled: true,
518                   } as Choice,
519                 ].concat(this.state.communitySearchOptions)}
520                 loading={this.state.communitySearchLoading}
521                 onChange={this.handleCommunitySelect}
522                 onSearch={this.handleCommunitySearch}
523               />
524             </div>
525           </div>
526         )}
527         {this.props.enableNsfw && (
528           <div className="form-check mb-3">
529             <input
530               className="form-check-input"
531               id="post-nsfw"
532               type="checkbox"
533               checked={this.state.form.nsfw}
534               onChange={linkEvent(this, handlePostNsfwChange)}
535             />
536             <label className="form-check-label" htmlFor="post-nsfw">
537               {I18NextService.i18n.t("nsfw")}
538             </label>
539           </div>
540         )}
541         <input
542           tabIndex={-1}
543           autoComplete="false"
544           name="a_password"
545           type="text"
546           className="form-control honeypot"
547           id="register-honey"
548           value={this.state.form.honeypot}
549           onInput={linkEvent(this, handleHoneyPotChange)}
550         />
551         <div className="mb-3 row">
552           <div className="col-sm-10">
553             <button
554               disabled={!this.state.form.community_id || this.state.loading}
555               type="submit"
556               className="btn btn-secondary me-2"
557             >
558               {this.state.loading ? (
559                 <Spinner />
560               ) : this.props.post_view ? (
561                 capitalizeFirstLetter(I18NextService.i18n.t("save"))
562               ) : (
563                 capitalizeFirstLetter(I18NextService.i18n.t("create"))
564               )}
565             </button>
566             {this.props.post_view && (
567               <button
568                 type="button"
569                 className="btn btn-secondary"
570                 onClick={linkEvent(this, handleCancel)}
571               >
572                 {I18NextService.i18n.t("cancel")}
573               </button>
574             )}
575           </div>
576         </div>
577       </form>
578     );
579   }
580
581   renderSuggestedTitleCopy() {
582     switch (this.state.metadataRes.state) {
583       case "loading":
584         return <Spinner />;
585       case "success": {
586         const suggestedTitle = this.state.metadataRes.data.metadata.title;
587
588         return (
589           suggestedTitle && (
590             <button
591               type="button"
592               className="mt-1 small border-0 bg-transparent p-0 d-block text-muted fw-bold pointer"
593               onClick={linkEvent(
594                 { i: this, suggestedTitle },
595                 copySuggestedTitle
596               )}
597             >
598               {I18NextService.i18n.t("copy_suggested_title", { title: "" })}{" "}
599               {suggestedTitle}
600             </button>
601           )
602         );
603       }
604     }
605   }
606
607   renderSuggestedPosts() {
608     switch (this.state.suggestedPostsRes.state) {
609       case "loading":
610         return <Spinner />;
611       case "success": {
612         const suggestedPosts = this.state.suggestedPostsRes.data.posts;
613
614         return (
615           suggestedPosts &&
616           suggestedPosts.length > 0 && (
617             <>
618               <div className="my-1 text-muted small fw-bold">
619                 {I18NextService.i18n.t("related_posts")}
620               </div>
621               <PostListings
622                 showCommunity
623                 posts={suggestedPosts}
624                 enableDownvotes={this.props.enableDownvotes}
625                 enableNsfw={this.props.enableNsfw}
626                 allLanguages={this.props.allLanguages}
627                 siteLanguages={this.props.siteLanguages}
628                 viewOnly
629                 // All of these are unused, since its view only
630                 onPostEdit={() => {}}
631                 onPostVote={() => {}}
632                 onPostReport={() => {}}
633                 onBlockPerson={() => {}}
634                 onLockPost={() => {}}
635                 onDeletePost={() => {}}
636                 onRemovePost={() => {}}
637                 onSavePost={() => {}}
638                 onFeaturePost={() => {}}
639                 onPurgePerson={() => {}}
640                 onPurgePost={() => {}}
641                 onBanPersonFromCommunity={() => {}}
642                 onBanPerson={() => {}}
643                 onAddModToCommunity={() => {}}
644                 onAddAdmin={() => {}}
645                 onTransferCommunity={() => {}}
646               />
647             </>
648           )
649         );
650       }
651     }
652   }
653
654   async fetchPageTitle() {
655     const url = this.state.form.url;
656     if (url && validURL(url)) {
657       this.setState({ metadataRes: { state: "loading" } });
658       this.setState({
659         metadataRes: await HttpService.client.getSiteMetadata({ url }),
660       });
661     }
662   }
663
664   async fetchSimilarPosts() {
665     const q = this.state.form.name;
666     if (q && q !== "") {
667       this.setState({ suggestedPostsRes: { state: "loading" } });
668       this.setState({
669         suggestedPostsRes: await HttpService.client.search({
670           q,
671           type_: "Posts",
672           sort: "TopAll",
673           listing_type: "All",
674           community_id: this.state.form.community_id,
675           page: 1,
676           limit: trendingFetchLimit,
677           auth: myAuth(),
678         }),
679       });
680     }
681   }
682
683   handlePostBodyChange(val: string) {
684     this.setState(s => ((s.form.body = val), s));
685   }
686
687   handleLanguageChange(val: number[]) {
688     this.setState(s => ((s.form.language_id = val.at(0)), s));
689   }
690
691   handleCommunitySearch = debounce(async (text: string) => {
692     const { selectedCommunityChoice } = this.props;
693     this.setState({ communitySearchLoading: true });
694
695     const newOptions: Choice[] = [];
696
697     if (selectedCommunityChoice) {
698       newOptions.push(selectedCommunityChoice);
699     }
700
701     if (text.length > 0) {
702       newOptions.push(...(await fetchCommunities(text)).map(communityToChoice));
703
704       this.setState({
705         communitySearchOptions: newOptions,
706       });
707     }
708
709     this.setState({
710       communitySearchLoading: false,
711     });
712   });
713
714   handleCommunitySelect(choice: Choice) {
715     if (this.props.onSelectCommunity) {
716       this.props.onSelectCommunity(choice);
717     }
718   }
719 }