]> Untitled Git - lemmy.git/blob - ui/src/components/post-form.tsx
Merge remote-tracking branch 'weblate/master'
[lemmy.git] / ui / src / components / post-form.tsx
1 import { Component, linkEvent } from 'inferno';
2 import { Prompt } from 'inferno-router';
3 import { PostListings } from './post-listings';
4 import { Subscription } from 'rxjs';
5 import { retryWhen, delay, take } from 'rxjs/operators';
6 import {
7   PostForm as PostFormI,
8   PostFormParams,
9   Post,
10   PostResponse,
11   UserOperation,
12   Community,
13   ListCommunitiesResponse,
14   ListCommunitiesForm,
15   SortType,
16   SearchForm,
17   SearchType,
18   SearchResponse,
19   GetSiteResponse,
20   WebSocketJsonResponse,
21 } from '../interfaces';
22 import { WebSocketService, UserService } from '../services';
23 import {
24   wsJsonToRes,
25   getPageTitle,
26   validURL,
27   capitalizeFirstLetter,
28   markdownHelpUrl,
29   archiveUrl,
30   mdToHtml,
31   debounce,
32   isImage,
33   toast,
34   randomStr,
35   setupTribute,
36   setupTippy,
37   emojiPicker,
38 } from '../utils';
39 import autosize from 'autosize';
40 import Tribute from 'tributejs/src/Tribute.js';
41 import emojiShortName from 'emoji-short-name';
42 import Selectr from 'mobius1-selectr';
43 import { i18n } from '../i18next';
44
45 const MAX_POST_TITLE_LENGTH = 200;
46
47 interface PostFormProps {
48   post?: Post; // If a post is given, that means this is an edit
49   params?: PostFormParams;
50   onCancel?(): any;
51   onCreate?(id: number): any;
52   onEdit?(post: Post): any;
53 }
54
55 interface PostFormState {
56   postForm: PostFormI;
57   communities: Array<Community>;
58   loading: boolean;
59   imageLoading: boolean;
60   previewMode: boolean;
61   suggestedTitle: string;
62   suggestedPosts: Array<Post>;
63   crossPosts: Array<Post>;
64   enable_nsfw: boolean;
65 }
66
67 export class PostForm extends Component<PostFormProps, PostFormState> {
68   private id = `post-form-${randomStr()}`;
69   private tribute: Tribute;
70   private subscription: Subscription;
71   private emptyState: PostFormState = {
72     postForm: {
73       name: null,
74       nsfw: false,
75       auth: null,
76       community_id: null,
77       creator_id: UserService.Instance.user
78         ? UserService.Instance.user.id
79         : null,
80     },
81     communities: [],
82     loading: false,
83     imageLoading: false,
84     previewMode: false,
85     suggestedTitle: undefined,
86     suggestedPosts: [],
87     crossPosts: [],
88     enable_nsfw: undefined,
89   };
90
91   constructor(props: any, context: any) {
92     super(props, context);
93     this.fetchSimilarPosts = debounce(this.fetchSimilarPosts).bind(this);
94     this.fetchPageTitle = debounce(this.fetchPageTitle).bind(this);
95
96     this.tribute = setupTribute();
97     this.setupEmojiPicker();
98
99     this.state = this.emptyState;
100
101     if (this.props.post) {
102       this.state.postForm = {
103         body: this.props.post.body,
104         // NOTE: debouncing breaks both these for some reason, unless you use defaultValue
105         name: this.props.post.name,
106         community_id: this.props.post.community_id,
107         edit_id: this.props.post.id,
108         creator_id: this.props.post.creator_id,
109         url: this.props.post.url,
110         nsfw: this.props.post.nsfw,
111         auth: null,
112       };
113     }
114
115     if (this.props.params) {
116       this.state.postForm.name = this.props.params.name;
117       if (this.props.params.url) {
118         this.state.postForm.url = this.props.params.url;
119       }
120       if (this.props.params.body) {
121         this.state.postForm.body = this.props.params.body;
122       }
123     }
124
125     this.subscription = WebSocketService.Instance.subject
126       .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
127       .subscribe(
128         msg => this.parseMessage(msg),
129         err => console.error(err),
130         () => console.log('complete')
131       );
132
133     let listCommunitiesForm: ListCommunitiesForm = {
134       sort: SortType[SortType.TopAll],
135       limit: 9999,
136     };
137
138     WebSocketService.Instance.listCommunities(listCommunitiesForm);
139     WebSocketService.Instance.getSite();
140   }
141
142   componentDidMount() {
143     var textarea: any = document.getElementById(this.id);
144     autosize(textarea);
145     this.tribute.attach(textarea);
146     textarea.addEventListener('tribute-replaced', () => {
147       this.state.postForm.body = textarea.value;
148       this.setState(this.state);
149       autosize.update(textarea);
150     });
151     setupTippy();
152   }
153
154   componentWillUnmount() {
155     this.subscription.unsubscribe();
156   }
157
158   render() {
159     return (
160       <div>
161         <Prompt
162           when={
163             !this.state.loading &&
164             (this.state.postForm.name ||
165               this.state.postForm.url ||
166               this.state.postForm.body)
167           }
168           message={i18n.t('block_leaving')}
169         />
170         <form onSubmit={linkEvent(this, this.handlePostSubmit)}>
171           <div class="form-group row">
172             <label class="col-sm-2 col-form-label" htmlFor="post-url">
173               {i18n.t('url')}
174             </label>
175             <div class="col-sm-10">
176               <input
177                 type="url"
178                 id="post-url"
179                 class="form-control"
180                 value={this.state.postForm.url}
181                 onInput={linkEvent(this, this.handlePostUrlChange)}
182                 onPaste={linkEvent(this, this.handleImageUploadPaste)}
183               />
184               {this.state.suggestedTitle && (
185                 <div
186                   class="mt-1 text-muted small font-weight-bold pointer"
187                   onClick={linkEvent(this, this.copySuggestedTitle)}
188                 >
189                   {i18n.t('copy_suggested_title', {
190                     title: this.state.suggestedTitle,
191                   })}
192                 </div>
193               )}
194               <form>
195                 <label
196                   htmlFor="file-upload"
197                   className={`${UserService.Instance.user &&
198                     'pointer'} d-inline-block float-right text-muted font-weight-bold`}
199                   data-tippy-content={i18n.t('upload_image')}
200                 >
201                   <svg class="icon icon-inline">
202                     <use xlinkHref="#icon-image"></use>
203                   </svg>
204                 </label>
205                 <input
206                   id="file-upload"
207                   type="file"
208                   accept="image/*,video/*"
209                   name="file"
210                   class="d-none"
211                   disabled={!UserService.Instance.user}
212                   onChange={linkEvent(this, this.handleImageUpload)}
213                 />
214               </form>
215               {validURL(this.state.postForm.url) && (
216                 <a
217                   href={`${archiveUrl}/?run=1&url=${encodeURIComponent(
218                     this.state.postForm.url
219                   )}`}
220                   target="_blank"
221                   class="mr-2 d-inline-block float-right text-muted small font-weight-bold"
222                 >
223                   {i18n.t('archive_link')}
224                 </a>
225               )}
226               {this.state.imageLoading && (
227                 <svg class="icon icon-spinner spin">
228                   <use xlinkHref="#icon-spinner"></use>
229                 </svg>
230               )}
231               {isImage(this.state.postForm.url) && (
232                 <img src={this.state.postForm.url} class="img-fluid" />
233               )}
234               {this.state.crossPosts.length > 0 && (
235                 <>
236                   <div class="my-1 text-muted small font-weight-bold">
237                     {i18n.t('cross_posts')}
238                   </div>
239                   <PostListings showCommunity posts={this.state.crossPosts} />
240                 </>
241               )}
242             </div>
243           </div>
244           <div class="form-group row">
245             <label class="col-sm-2 col-form-label" htmlFor="post-title">
246               {i18n.t('title')}
247             </label>
248             <div class="col-sm-10">
249               <textarea
250                 value={this.state.postForm.name}
251                 id="post-title"
252                 onInput={linkEvent(this, this.handlePostNameChange)}
253                 class="form-control"
254                 required
255                 rows={2}
256                 minLength={3}
257                 maxLength={MAX_POST_TITLE_LENGTH}
258               />
259               {this.state.suggestedPosts.length > 0 && (
260                 <>
261                   <div class="my-1 text-muted small font-weight-bold">
262                     {i18n.t('related_posts')}
263                   </div>
264                   <PostListings posts={this.state.suggestedPosts} />
265                 </>
266               )}
267             </div>
268           </div>
269
270           <div class="form-group row">
271             <label class="col-sm-2 col-form-label" htmlFor={this.id}>
272               {i18n.t('body')}
273             </label>
274             <div class="col-sm-10">
275               <textarea
276                 id={this.id}
277                 value={this.state.postForm.body}
278                 onInput={linkEvent(this, this.handlePostBodyChange)}
279                 className={`form-control ${this.state.previewMode && 'd-none'}`}
280                 rows={4}
281                 maxLength={10000}
282               />
283               {this.state.previewMode && (
284                 <div
285                   className="md-div"
286                   dangerouslySetInnerHTML={mdToHtml(this.state.postForm.body)}
287                 />
288               )}
289               {this.state.postForm.body && (
290                 <button
291                   className={`mt-1 mr-2 btn btn-sm btn-secondary ${this.state
292                     .previewMode && 'active'}`}
293                   onClick={linkEvent(this, this.handlePreviewToggle)}
294                 >
295                   {i18n.t('preview')}
296                 </button>
297               )}
298               <a
299                 href={markdownHelpUrl}
300                 target="_blank"
301                 class="d-inline-block float-right text-muted font-weight-bold"
302                 title={i18n.t('formatting_help')}
303               >
304                 <svg class="icon icon-inline">
305                   <use xlinkHref="#icon-help-circle"></use>
306                 </svg>
307               </a>
308               <span
309                 onClick={linkEvent(this, this.handleEmojiPickerClick)}
310                 class="pointer unselectable d-inline-block mr-3 float-right text-muted font-weight-bold"
311                 data-tippy-content={i18n.t('emoji_picker')}
312               >
313                 <svg class="icon icon-inline">
314                   <use xlinkHref="#icon-smile"></use>
315                 </svg>
316               </span>
317             </div>
318           </div>
319           {!this.props.post && (
320             <div class="form-group row">
321               <label class="col-sm-2 col-form-label" htmlFor="post-community">
322                 {i18n.t('community')}
323               </label>
324               <div class="col-sm-10">
325                 <select
326                   class="form-control"
327                   id="post-community"
328                   value={this.state.postForm.community_id}
329                   onInput={linkEvent(this, this.handlePostCommunityChange)}
330                 >
331                   {this.state.communities.map(community => (
332                     <option value={community.id}>{community.name}</option>
333                   ))}
334                 </select>
335               </div>
336             </div>
337           )}
338           {this.state.enable_nsfw && (
339             <div class="form-group row">
340               <div class="col-sm-10">
341                 <div class="form-check">
342                   <input
343                     class="form-check-input"
344                     id="post-nsfw"
345                     type="checkbox"
346                     checked={this.state.postForm.nsfw}
347                     onChange={linkEvent(this, this.handlePostNsfwChange)}
348                   />
349                   <label class="form-check-label" htmlFor="post-nsfw">
350                     {i18n.t('nsfw')}
351                   </label>
352                 </div>
353               </div>
354             </div>
355           )}
356           <div class="form-group row">
357             <div class="col-sm-10">
358               <button type="submit" class="btn btn-secondary mr-2">
359                 {this.state.loading ? (
360                   <svg class="icon icon-spinner spin">
361                     <use xlinkHref="#icon-spinner"></use>
362                   </svg>
363                 ) : this.props.post ? (
364                   capitalizeFirstLetter(i18n.t('save'))
365                 ) : (
366                   capitalizeFirstLetter(i18n.t('create'))
367                 )}
368               </button>
369               {this.props.post && (
370                 <button
371                   type="button"
372                   class="btn btn-secondary"
373                   onClick={linkEvent(this, this.handleCancel)}
374                 >
375                   {i18n.t('cancel')}
376                 </button>
377               )}
378             </div>
379           </div>
380         </form>
381       </div>
382     );
383   }
384
385   setupEmojiPicker() {
386     emojiPicker.on('emoji', emoji => {
387       if (this.state.postForm.body == null) {
388         this.state.postForm.body = '';
389       }
390       let shortName = `:${emojiShortName[emoji]}:`;
391       this.state.postForm.body += shortName;
392       this.setState(this.state);
393     });
394   }
395
396   handlePostSubmit(i: PostForm, event: any) {
397     event.preventDefault();
398     if (i.props.post) {
399       WebSocketService.Instance.editPost(i.state.postForm);
400     } else {
401       WebSocketService.Instance.createPost(i.state.postForm);
402     }
403     i.state.loading = true;
404     i.setState(i.state);
405   }
406
407   copySuggestedTitle(i: PostForm) {
408     i.state.postForm.name = i.state.suggestedTitle.substring(
409       0,
410       MAX_POST_TITLE_LENGTH
411     );
412     i.state.suggestedTitle = undefined;
413     i.setState(i.state);
414   }
415
416   handlePostUrlChange(i: PostForm, event: any) {
417     i.state.postForm.url = event.target.value;
418     i.setState(i.state);
419     i.fetchPageTitle();
420   }
421
422   fetchPageTitle() {
423     if (validURL(this.state.postForm.url)) {
424       let form: SearchForm = {
425         q: this.state.postForm.url,
426         type_: SearchType[SearchType.Url],
427         sort: SortType[SortType.TopAll],
428         page: 1,
429         limit: 6,
430       };
431
432       WebSocketService.Instance.search(form);
433
434       // Fetch the page title
435       getPageTitle(this.state.postForm.url).then(d => {
436         this.state.suggestedTitle = d;
437         this.setState(this.state);
438       });
439     } else {
440       this.state.suggestedTitle = undefined;
441       this.state.crossPosts = [];
442     }
443   }
444
445   handlePostNameChange(i: PostForm, event: any) {
446     i.state.postForm.name = event.target.value;
447     i.setState(i.state);
448     i.fetchSimilarPosts();
449   }
450
451   fetchSimilarPosts() {
452     let form: SearchForm = {
453       q: this.state.postForm.name,
454       type_: SearchType[SearchType.Posts],
455       sort: SortType[SortType.TopAll],
456       community_id: this.state.postForm.community_id,
457       page: 1,
458       limit: 6,
459     };
460
461     if (this.state.postForm.name !== '') {
462       WebSocketService.Instance.search(form);
463     } else {
464       this.state.suggestedPosts = [];
465     }
466
467     this.setState(this.state);
468   }
469
470   handlePostBodyChange(i: PostForm, event: any) {
471     i.state.postForm.body = event.target.value;
472     i.setState(i.state);
473   }
474
475   handlePostCommunityChange(i: PostForm, event: any) {
476     i.state.postForm.community_id = Number(event.target.value);
477     i.setState(i.state);
478   }
479
480   handlePostNsfwChange(i: PostForm, event: any) {
481     i.state.postForm.nsfw = event.target.checked;
482     i.setState(i.state);
483   }
484
485   handleCancel(i: PostForm) {
486     i.props.onCancel();
487   }
488
489   handlePreviewToggle(i: PostForm, event: any) {
490     event.preventDefault();
491     i.state.previewMode = !i.state.previewMode;
492     i.setState(i.state);
493   }
494
495   handleImageUploadPaste(i: PostForm, event: any) {
496     let image = event.clipboardData.files[0];
497     if (image) {
498       i.handleImageUpload(i, image);
499     }
500   }
501
502   handleImageUpload(i: PostForm, event: any) {
503     let file: any;
504     if (event.target) {
505       event.preventDefault();
506       file = event.target.files[0];
507     } else {
508       file = event;
509     }
510
511     const imageUploadUrl = `/pictshare/api/upload.php`;
512     const formData = new FormData();
513     formData.append('file', file);
514
515     i.state.imageLoading = true;
516     i.setState(i.state);
517
518     fetch(imageUploadUrl, {
519       method: 'POST',
520       body: formData,
521     })
522       .then(res => res.json())
523       .then(res => {
524         let url = `${window.location.origin}/pictshare/${encodeURI(res.url)}`;
525         if (res.filetype == 'mp4') {
526           url += '/raw';
527         }
528         i.state.postForm.url = url;
529         i.state.imageLoading = false;
530         i.setState(i.state);
531       })
532       .catch(error => {
533         i.state.imageLoading = false;
534         i.setState(i.state);
535         toast(error, 'danger');
536       });
537   }
538
539   handleEmojiPickerClick(_i: PostForm, event: any) {
540     emojiPicker.togglePicker(event.target);
541   }
542
543   parseMessage(msg: WebSocketJsonResponse) {
544     let res = wsJsonToRes(msg);
545     if (msg.error) {
546       toast(i18n.t(msg.error), 'danger');
547       this.state.loading = false;
548       this.setState(this.state);
549       return;
550     } else if (res.op == UserOperation.ListCommunities) {
551       let data = res.data as ListCommunitiesResponse;
552       this.state.communities = data.communities;
553       if (this.props.post) {
554         this.state.postForm.community_id = this.props.post.community_id;
555       } else if (this.props.params && this.props.params.community) {
556         let foundCommunityId = data.communities.find(
557           r => r.name == this.props.params.community
558         ).id;
559         this.state.postForm.community_id = foundCommunityId;
560       } else {
561         this.state.postForm.community_id = data.communities[0].id;
562       }
563       this.setState(this.state);
564
565       // Set up select searching
566       let selectId: any = document.getElementById('post-community');
567       if (selectId) {
568         let selector = new Selectr(selectId, { nativeDropdown: false });
569         selector.on('selectr.select', option => {
570           this.state.postForm.community_id = Number(option.value);
571         });
572       }
573     } else if (res.op == UserOperation.CreatePost) {
574       let data = res.data as PostResponse;
575       if (data.post.creator_id == UserService.Instance.user.id) {
576         this.state.loading = false;
577         this.props.onCreate(data.post.id);
578       }
579     } else if (res.op == UserOperation.EditPost) {
580       let data = res.data as PostResponse;
581       if (data.post.creator_id == UserService.Instance.user.id) {
582         this.state.loading = false;
583         this.props.onEdit(data.post);
584       }
585     } else if (res.op == UserOperation.Search) {
586       let data = res.data as SearchResponse;
587
588       if (data.type_ == SearchType[SearchType.Posts]) {
589         this.state.suggestedPosts = data.posts;
590       } else if (data.type_ == SearchType[SearchType.Url]) {
591         this.state.crossPosts = data.posts;
592       }
593       this.setState(this.state);
594     } else if (res.op == UserOperation.GetSite) {
595       let data = res.data as GetSiteResponse;
596       this.state.enable_nsfw = data.site.enable_nsfw;
597       this.setState(this.state);
598     }
599   }
600 }