]> Untitled Git - lemmy-ui.git/blob - src/shared/utils.ts
Merge branch 'fix/notif_new_fetch_bug' of https://github.com/ernestwisniewski/lemmy...
[lemmy-ui.git] / src / shared / utils.ts
1 import { None, Option, Result, Some } from "@sniptt/monads";
2 import { ClassConstructor, deserialize, serialize } from "class-transformer";
3 import emojiShortName from "emoji-short-name";
4 import {
5   BlockCommunityResponse,
6   BlockPersonResponse,
7   Comment as CommentI,
8   CommentNode as CommentNodeI,
9   CommentReportView,
10   CommentSortType,
11   CommentView,
12   CommunityBlockView,
13   CommunityModeratorView,
14   CommunityView,
15   GetSiteMetadata,
16   GetSiteResponse,
17   LemmyHttp,
18   LemmyWebsocket,
19   ListingType,
20   MyUserInfo,
21   PersonBlockView,
22   PersonSafe,
23   PersonViewSafe,
24   PostReportView,
25   PostView,
26   PrivateMessageView,
27   RegistrationApplicationView,
28   Search,
29   SearchType,
30   SortType,
31 } from "lemmy-js-client";
32 import markdown_it from "markdown-it";
33 import markdown_it_container from "markdown-it-container";
34 import markdown_it_footnote from "markdown-it-footnote";
35 import markdown_it_html5_embed from "markdown-it-html5-embed";
36 import markdown_it_sub from "markdown-it-sub";
37 import markdown_it_sup from "markdown-it-sup";
38 import moment from "moment";
39 import { Subscription } from "rxjs";
40 import { delay, retryWhen, take } from "rxjs/operators";
41 import tippy from "tippy.js";
42 import Toastify from "toastify-js";
43 import { httpBase } from "./env";
44 import { i18n, languages } from "./i18next";
45 import { DataType, IsoData } from "./interfaces";
46 import { UserService, WebSocketService } from "./services";
47
48 var Tribute: any;
49 if (isBrowser()) {
50   Tribute = require("tributejs");
51 }
52
53 export const wsClient = new LemmyWebsocket();
54
55 export const favIconUrl = "/static/assets/icons/favicon.svg";
56 export const favIconPngUrl = "/static/assets/icons/apple-touch-icon.png";
57 // TODO
58 // export const defaultFavIcon = `${window.location.protocol}//${window.location.host}${favIconPngUrl}`;
59 export const repoUrl = "https://github.com/LemmyNet";
60 export const joinLemmyUrl = "https://join-lemmy.org";
61 export const donateLemmyUrl = `${joinLemmyUrl}/donate`;
62 export const docsUrl = `${joinLemmyUrl}/docs/en/index.html`;
63 export const helpGuideUrl = `${joinLemmyUrl}/docs/en/about/guide.html`; // TODO find a way to redirect to the non-en folder
64 export const markdownHelpUrl = `${helpGuideUrl}#using-markdown`;
65 export const sortingHelpUrl = `${helpGuideUrl}#sorting`;
66 export const archiveTodayUrl = "https://archive.today";
67 export const ghostArchiveUrl = "https://ghostarchive.org";
68 export const webArchiveUrl = "https://web.archive.org";
69 export const elementUrl = "https://element.io";
70
71 export const postRefetchSeconds: number = 60 * 1000;
72 export const fetchLimit = 40;
73 export const trendingFetchLimit = 6;
74 export const mentionDropdownFetchLimit = 10;
75 export const commentTreeMaxDepth = 8;
76
77 export const relTags = "noopener nofollow";
78
79 const DEFAULT_ALPHABET =
80   "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
81
82 function getRandomCharFromAlphabet(alphabet: string): string {
83   return alphabet.charAt(Math.floor(Math.random() * alphabet.length));
84 }
85
86 export function randomStr(
87   idDesiredLength = 20,
88   alphabet = DEFAULT_ALPHABET
89 ): string {
90   /**
91    * Create n-long array and map it to random chars from given alphabet.
92    * Then join individual chars as string
93    */
94   return Array.from({ length: idDesiredLength })
95     .map(() => {
96       return getRandomCharFromAlphabet(alphabet);
97     })
98     .join("");
99 }
100
101 export const md = new markdown_it({
102   html: false,
103   linkify: true,
104   typographer: true,
105 })
106   .use(markdown_it_sub)
107   .use(markdown_it_sup)
108   .use(markdown_it_footnote)
109   .use(markdown_it_html5_embed, {
110     html5embed: {
111       useImageSyntax: true, // Enables video/audio embed with ![]() syntax (default)
112       attributes: {
113         audio: 'controls preload="metadata"',
114         video:
115           'width="100%" max-height="100%" controls loop preload="metadata"',
116       },
117     },
118   })
119   .use(markdown_it_container, "spoiler", {
120     validate: function (params: any) {
121       return params.trim().match(/^spoiler\s+(.*)$/);
122     },
123
124     render: function (tokens: any, idx: any) {
125       var m = tokens[idx].info.trim().match(/^spoiler\s+(.*)$/);
126
127       if (tokens[idx].nesting === 1) {
128         // opening tag
129         return `<details><summary> ${md.utils.escapeHtml(m[1])} </summary>\n`;
130       } else {
131         // closing tag
132         return "</details>\n";
133       }
134     },
135   });
136
137 export function hotRankComment(comment_view: CommentView): number {
138   return hotRank(comment_view.counts.score, comment_view.comment.published);
139 }
140
141 export function hotRankActivePost(post_view: PostView): number {
142   return hotRank(post_view.counts.score, post_view.counts.newest_comment_time);
143 }
144
145 export function hotRankPost(post_view: PostView): number {
146   return hotRank(post_view.counts.score, post_view.post.published);
147 }
148
149 export function hotRank(score: number, timeStr: string): number {
150   // Rank = ScaleFactor * sign(Score) * log(1 + abs(Score)) / (Time + 2)^Gravity
151   let date: Date = new Date(timeStr + "Z"); // Add Z to convert from UTC date
152   let now: Date = new Date();
153   let hoursElapsed: number = (now.getTime() - date.getTime()) / 36e5;
154
155   let rank =
156     (10000 * Math.log10(Math.max(1, 3 + score))) /
157     Math.pow(hoursElapsed + 2, 1.8);
158
159   // console.log(`Comment: ${comment.content}\nRank: ${rank}\nScore: ${comment.score}\nHours: ${hoursElapsed}`);
160
161   return rank;
162 }
163
164 export function mdToHtml(text: string) {
165   return { __html: md.render(text) };
166 }
167
168 export function getUnixTime(text: string): number {
169   return text ? new Date(text).getTime() / 1000 : undefined;
170 }
171
172 export function futureDaysToUnixTime(days: number): number {
173   return days
174     ? Math.trunc(
175         new Date(Date.now() + 1000 * 60 * 60 * 24 * days).getTime() / 1000
176       )
177     : undefined;
178 }
179
180 export function canMod(
181   mods: Option<CommunityModeratorView[]>,
182   admins: Option<PersonViewSafe[]>,
183   creator_id: number,
184   myUserInfo = UserService.Instance.myUserInfo,
185   onSelf = false
186 ): boolean {
187   // You can do moderator actions only on the mods added after you.
188   let adminsThenMods = admins
189     .unwrapOr([])
190     .map(a => a.person.id)
191     .concat(mods.unwrapOr([]).map(m => m.moderator.id));
192
193   return myUserInfo.match({
194     some: me => {
195       let myIndex = adminsThenMods.findIndex(
196         id => id == me.local_user_view.person.id
197       );
198       if (myIndex == -1) {
199         return false;
200       } else {
201         // onSelf +1 on mod actions not for yourself, IE ban, remove, etc
202         adminsThenMods = adminsThenMods.slice(0, myIndex + (onSelf ? 0 : 1));
203         return !adminsThenMods.includes(creator_id);
204       }
205     },
206     none: false,
207   });
208 }
209
210 export function canAdmin(
211   admins: Option<PersonViewSafe[]>,
212   creator_id: number,
213   myUserInfo = UserService.Instance.myUserInfo,
214   onSelf = false
215 ): boolean {
216   return canMod(None, admins, creator_id, myUserInfo, onSelf);
217 }
218
219 export function isMod(
220   mods: Option<CommunityModeratorView[]>,
221   creator_id: number
222 ): boolean {
223   return mods.match({
224     some: mods => mods.map(m => m.moderator.id).includes(creator_id),
225     none: false,
226   });
227 }
228
229 export function amMod(
230   mods: Option<CommunityModeratorView[]>,
231   myUserInfo = UserService.Instance.myUserInfo
232 ): boolean {
233   return myUserInfo.match({
234     some: mui => isMod(mods, mui.local_user_view.person.id),
235     none: false,
236   });
237 }
238
239 export function isAdmin(
240   admins: Option<PersonViewSafe[]>,
241   creator_id: number
242 ): boolean {
243   return admins.match({
244     some: admins => admins.map(a => a.person.id).includes(creator_id),
245     none: false,
246   });
247 }
248
249 export function amAdmin(
250   admins: Option<PersonViewSafe[]>,
251   myUserInfo = UserService.Instance.myUserInfo
252 ): boolean {
253   return myUserInfo.match({
254     some: mui => isAdmin(admins, mui.local_user_view.person.id),
255     none: false,
256   });
257 }
258
259 export function amCommunityCreator(
260   mods: Option<CommunityModeratorView[]>,
261   creator_id: number,
262   myUserInfo = UserService.Instance.myUserInfo
263 ): boolean {
264   return mods.match({
265     some: mods =>
266       myUserInfo
267         .map(mui => mui.local_user_view.person.id)
268         .match({
269           some: myId =>
270             myId == mods[0].moderator.id &&
271             // Don't allow mod actions on yourself
272             myId != creator_id,
273           none: false,
274         }),
275     none: false,
276   });
277 }
278
279 export function amSiteCreator(
280   admins: Option<PersonViewSafe[]>,
281   creator_id: number,
282   myUserInfo = UserService.Instance.myUserInfo
283 ): boolean {
284   return admins.match({
285     some: admins =>
286       myUserInfo
287         .map(mui => mui.local_user_view.person.id)
288         .match({
289           some: myId =>
290             myId == admins[0].person.id &&
291             // Don't allow mod actions on yourself
292             myId != creator_id,
293           none: false,
294         }),
295     none: false,
296   });
297 }
298
299 export function amTopMod(
300   mods: Option<CommunityModeratorView[]>,
301   myUserInfo = UserService.Instance.myUserInfo
302 ): boolean {
303   return mods.match({
304     some: mods =>
305       myUserInfo.match({
306         some: mui => mods[0].moderator.id == mui.local_user_view.person.id,
307         none: false,
308       }),
309     none: false,
310   });
311 }
312
313 const imageRegex = /(http)?s?:?(\/\/[^"']*\.(?:jpg|jpeg|gif|png|svg|webp))/;
314 const videoRegex = /(http)?s?:?(\/\/[^"']*\.(?:mp4|webm))/;
315
316 export function isImage(url: string) {
317   return imageRegex.test(url);
318 }
319
320 export function isVideo(url: string) {
321   return videoRegex.test(url);
322 }
323
324 export function validURL(str: string) {
325   return !!new URL(str);
326 }
327
328 export function communityRSSUrl(actorId: string, sort: string): string {
329   let url = new URL(actorId);
330   return `${url.origin}/feeds${url.pathname}.xml?sort=${sort}`;
331 }
332
333 export function validEmail(email: string) {
334   let re =
335     /^(([^\s"(),.:;<>@[\\\]]+(\.[^\s"(),.:;<>@[\\\]]+)*)|(".+"))@((\[(?:\d{1,3}\.){3}\d{1,3}])|(([\dA-Za-z\-]+\.)+[A-Za-z]{2,}))$/;
336   return re.test(String(email).toLowerCase());
337 }
338
339 export function capitalizeFirstLetter(str: string): string {
340   return str.charAt(0).toUpperCase() + str.slice(1);
341 }
342
343 export function routeSortTypeToEnum(sort: string): SortType {
344   return SortType[sort];
345 }
346
347 export function listingTypeFromNum(type_: number): ListingType {
348   return Object.values(ListingType)[type_];
349 }
350
351 export function sortTypeFromNum(type_: number): SortType {
352   return Object.values(SortType)[type_];
353 }
354
355 export function routeListingTypeToEnum(type: string): ListingType {
356   return ListingType[type];
357 }
358
359 export function routeDataTypeToEnum(type: string): DataType {
360   return DataType[capitalizeFirstLetter(type)];
361 }
362
363 export function routeSearchTypeToEnum(type: string): SearchType {
364   return SearchType[type];
365 }
366
367 export async function getSiteMetadata(url: string) {
368   let form = new GetSiteMetadata({
369     url,
370   });
371   let client = new LemmyHttp(httpBase);
372   return client.getSiteMetadata(form);
373 }
374
375 export function debounce(func: any, wait = 1000, immediate = false) {
376   // 'private' variable for instance
377   // The returned function will be able to reference this due to closure.
378   // Each call to the returned function will share this common timer.
379   let timeout: any;
380
381   // Calling debounce returns a new anonymous function
382   return function () {
383     // reference the context and args for the setTimeout function
384     var args = arguments;
385
386     // Should the function be called now? If immediate is true
387     //   and not already in a timeout then the answer is: Yes
388     var callNow = immediate && !timeout;
389
390     // This is the basic debounce behaviour where you can call this
391     //   function several times, but it will only execute once
392     //   [before or after imposing a delay].
393     //   Each time the returned function is called, the timer starts over.
394     clearTimeout(timeout);
395
396     // Set the new timeout
397     timeout = setTimeout(function () {
398       // Inside the timeout function, clear the timeout variable
399       // which will let the next execution run when in 'immediate' mode
400       timeout = null;
401
402       // Check if the function already ran with the immediate flag
403       if (!immediate) {
404         // Call the original function with apply
405         // apply lets you define the 'this' object as well as the arguments
406         //    (both captured before setTimeout)
407         func.apply(this, args);
408       }
409     }, wait);
410
411     // Immediate mode and no wait timer? Execute the function..
412     if (callNow) func.apply(this, args);
413   };
414 }
415
416 export function getLanguages(
417   override?: string,
418   myUserInfo = UserService.Instance.myUserInfo
419 ): string[] {
420   let myLang = myUserInfo
421     .map(m => m.local_user_view.local_user.lang)
422     .unwrapOr("browser");
423   let lang = override || myLang;
424
425   if (lang == "browser" && isBrowser()) {
426     return getBrowserLanguages();
427   } else {
428     return [lang];
429   }
430 }
431
432 function getBrowserLanguages(): string[] {
433   // Intersect lemmy's langs, with the browser langs
434   let langs = languages ? languages.map(l => l.code) : ["en"];
435
436   // NOTE, mobile browsers seem to be missing this list, so append en
437   let allowedLangs = navigator.languages
438     .concat("en")
439     .filter(v => langs.includes(v));
440   return allowedLangs;
441 }
442
443 export async function fetchThemeList(): Promise<string[]> {
444   return fetch("/css/themelist").then(res => res.json());
445 }
446
447 export async function setTheme(theme: string, forceReload = false) {
448   if (!isBrowser()) {
449     return;
450   }
451   if (theme === "browser" && !forceReload) {
452     return;
453   }
454   // This is only run on a force reload
455   if (theme == "browser") {
456     theme = "darkly";
457   }
458
459   let themeList = await fetchThemeList();
460
461   // Unload all the other themes
462   for (var i = 0; i < themeList.length; i++) {
463     let styleSheet = document.getElementById(themeList[i]);
464     if (styleSheet) {
465       styleSheet.setAttribute("disabled", "disabled");
466     }
467   }
468
469   document
470     .getElementById("default-light")
471     ?.setAttribute("disabled", "disabled");
472   document.getElementById("default-dark")?.setAttribute("disabled", "disabled");
473
474   // Load the theme dynamically
475   let cssLoc = `/css/themes/${theme}.css`;
476
477   loadCss(theme, cssLoc);
478   document.getElementById(theme).removeAttribute("disabled");
479 }
480
481 export function loadCss(id: string, loc: string) {
482   if (!document.getElementById(id)) {
483     var head = document.getElementsByTagName("head")[0];
484     var link = document.createElement("link");
485     link.id = id;
486     link.rel = "stylesheet";
487     link.type = "text/css";
488     link.href = loc;
489     link.media = "all";
490     head.appendChild(link);
491   }
492 }
493
494 export function objectFlip(obj: any) {
495   const ret = {};
496   Object.keys(obj).forEach(key => {
497     ret[obj[key]] = key;
498   });
499   return ret;
500 }
501
502 export function showAvatars(
503   myUserInfo: Option<MyUserInfo> = UserService.Instance.myUserInfo
504 ): boolean {
505   return myUserInfo
506     .map(m => m.local_user_view.local_user.show_avatars)
507     .unwrapOr(true);
508 }
509
510 export function showScores(
511   myUserInfo: Option<MyUserInfo> = UserService.Instance.myUserInfo
512 ): boolean {
513   return myUserInfo
514     .map(m => m.local_user_view.local_user.show_scores)
515     .unwrapOr(true);
516 }
517
518 export function isCakeDay(published: string): boolean {
519   // moment(undefined) or moment.utc(undefined) returns the current date/time
520   // moment(null) or moment.utc(null) returns null
521   const createDate = moment.utc(published).local();
522   const currentDate = moment(new Date());
523
524   return (
525     createDate.date() === currentDate.date() &&
526     createDate.month() === currentDate.month() &&
527     createDate.year() !== currentDate.year()
528   );
529 }
530
531 export function toast(text: string, background = "success") {
532   if (isBrowser()) {
533     let backgroundColor = `var(--${background})`;
534     Toastify({
535       text: text,
536       backgroundColor: backgroundColor,
537       gravity: "bottom",
538       position: "left",
539     }).showToast();
540   }
541 }
542
543 export function pictrsDeleteToast(
544   clickToDeleteText: string,
545   deletePictureText: string,
546   deleteUrl: string
547 ) {
548   if (isBrowser()) {
549     let backgroundColor = `var(--light)`;
550     let toast = Toastify({
551       text: clickToDeleteText,
552       backgroundColor: backgroundColor,
553       gravity: "top",
554       position: "right",
555       duration: 10000,
556       onClick: () => {
557         if (toast) {
558           window.location.replace(deleteUrl);
559           alert(deletePictureText);
560           toast.hideToast();
561         }
562       },
563       close: true,
564     }).showToast();
565   }
566 }
567
568 interface NotifyInfo {
569   name: string;
570   icon: Option<string>;
571   link: string;
572   body: string;
573 }
574
575 export function messageToastify(info: NotifyInfo, router: any) {
576   if (isBrowser()) {
577     let htmlBody = info.body ? md.render(info.body) : "";
578     let backgroundColor = `var(--light)`;
579
580     let toast = Toastify({
581       text: `${htmlBody}<br />${info.name}`,
582       avatar: info.icon,
583       backgroundColor: backgroundColor,
584       className: "text-dark",
585       close: true,
586       gravity: "top",
587       position: "right",
588       duration: 5000,
589       escapeMarkup: false,
590       onClick: () => {
591         if (toast) {
592           toast.hideToast();
593           router.history.push(info.link);
594         }
595       },
596     }).showToast();
597   }
598 }
599
600 export function notifyPost(post_view: PostView, router: any) {
601   let info: NotifyInfo = {
602     name: post_view.community.name,
603     icon: post_view.community.icon,
604     link: `/post/${post_view.post.id}`,
605     body: post_view.post.name,
606   };
607   notify(info, router);
608 }
609
610 export function notifyComment(comment_view: CommentView, router: any) {
611   let info: NotifyInfo = {
612     name: comment_view.creator.name,
613     icon: comment_view.creator.avatar,
614     link: `/comment/${comment_view.comment.id}`,
615     body: comment_view.comment.content,
616   };
617   notify(info, router);
618 }
619
620 export function notifyPrivateMessage(pmv: PrivateMessageView, router: any) {
621   let info: NotifyInfo = {
622     name: pmv.creator.name,
623     icon: pmv.creator.avatar,
624     link: `/inbox`,
625     body: pmv.private_message.content,
626   };
627   notify(info, router);
628 }
629
630 function notify(info: NotifyInfo, router: any) {
631   messageToastify(info, router);
632
633   if (Notification.permission !== "granted") Notification.requestPermission();
634   else {
635     var notification = new Notification(info.name, {
636       ...{ body: info.body },
637       ...(info.icon.isSome() && { icon: info.icon.unwrap() }),
638     });
639
640     notification.onclick = (ev: Event): any => {
641       ev.preventDefault();
642       router.history.push(info.link);
643     };
644   }
645 }
646
647 export function setupTribute() {
648   return new Tribute({
649     noMatchTemplate: function () {
650       return "";
651     },
652     collection: [
653       // Emojis
654       {
655         trigger: ":",
656         menuItemTemplate: (item: any) => {
657           let shortName = `:${item.original.key}:`;
658           return `${item.original.val} ${shortName}`;
659         },
660         selectTemplate: (item: any) => {
661           return `${item.original.val}`;
662         },
663         values: Object.entries(emojiShortName).map(e => {
664           return { key: e[1], val: e[0] };
665         }),
666         allowSpaces: false,
667         autocompleteMode: true,
668         // TODO
669         // menuItemLimit: mentionDropdownFetchLimit,
670         menuShowMinLength: 2,
671       },
672       // Persons
673       {
674         trigger: "@",
675         selectTemplate: (item: any) => {
676           let it: PersonTribute = item.original;
677           return `[${it.key}](${it.view.person.actor_id})`;
678         },
679         values: debounce(async (text: string, cb: any) => {
680           cb(await personSearch(text));
681         }),
682         allowSpaces: false,
683         autocompleteMode: true,
684         // TODO
685         // menuItemLimit: mentionDropdownFetchLimit,
686         menuShowMinLength: 2,
687       },
688
689       // Communities
690       {
691         trigger: "!",
692         selectTemplate: (item: any) => {
693           let it: CommunityTribute = item.original;
694           return `[${it.key}](${it.view.community.actor_id})`;
695         },
696         values: debounce(async (text: string, cb: any) => {
697           cb(await communitySearch(text));
698         }),
699         allowSpaces: false,
700         autocompleteMode: true,
701         // TODO
702         // menuItemLimit: mentionDropdownFetchLimit,
703         menuShowMinLength: 2,
704       },
705     ],
706   });
707 }
708
709 var tippyInstance: any;
710 if (isBrowser()) {
711   tippyInstance = tippy("[data-tippy-content]");
712 }
713
714 export function setupTippy() {
715   if (isBrowser()) {
716     tippyInstance.forEach((e: any) => e.destroy());
717     tippyInstance = tippy("[data-tippy-content]", {
718       delay: [500, 0],
719       // Display on "long press"
720       touch: ["hold", 500],
721     });
722   }
723 }
724
725 interface PersonTribute {
726   key: string;
727   view: PersonViewSafe;
728 }
729
730 async function personSearch(text: string): Promise<PersonTribute[]> {
731   let users = (await fetchUsers(text)).users;
732   let persons: PersonTribute[] = users.map(pv => {
733     let tribute: PersonTribute = {
734       key: `@${pv.person.name}@${hostname(pv.person.actor_id)}`,
735       view: pv,
736     };
737     return tribute;
738   });
739   return persons;
740 }
741
742 interface CommunityTribute {
743   key: string;
744   view: CommunityView;
745 }
746
747 async function communitySearch(text: string): Promise<CommunityTribute[]> {
748   let comms = (await fetchCommunities(text)).communities;
749   let communities: CommunityTribute[] = comms.map(cv => {
750     let tribute: CommunityTribute = {
751       key: `!${cv.community.name}@${hostname(cv.community.actor_id)}`,
752       view: cv,
753     };
754     return tribute;
755   });
756   return communities;
757 }
758
759 export function getListingTypeFromProps(
760   props: any,
761   defaultListingType: ListingType,
762   myUserInfo = UserService.Instance.myUserInfo
763 ): ListingType {
764   return props.match.params.listing_type
765     ? routeListingTypeToEnum(props.match.params.listing_type)
766     : myUserInfo.match({
767         some: me =>
768           Object.values(ListingType)[
769             me.local_user_view.local_user.default_listing_type
770           ],
771         none: defaultListingType,
772       });
773 }
774
775 export function getListingTypeFromPropsNoDefault(props: any): ListingType {
776   return props.match.params.listing_type
777     ? routeListingTypeToEnum(props.match.params.listing_type)
778     : ListingType.Local;
779 }
780
781 // TODO might need to add a user setting for this too
782 export function getDataTypeFromProps(props: any): DataType {
783   return props.match.params.data_type
784     ? routeDataTypeToEnum(props.match.params.data_type)
785     : DataType.Post;
786 }
787
788 export function getSortTypeFromProps(
789   props: any,
790   myUserInfo = UserService.Instance.myUserInfo
791 ): SortType {
792   return props.match.params.sort
793     ? routeSortTypeToEnum(props.match.params.sort)
794     : myUserInfo.match({
795         some: mui =>
796           Object.values(SortType)[
797             mui.local_user_view.local_user.default_sort_type
798           ],
799         none: SortType.Active,
800       });
801 }
802
803 export function getPageFromProps(props: any): number {
804   return props.match.params.page ? Number(props.match.params.page) : 1;
805 }
806
807 export function getRecipientIdFromProps(props: any): number {
808   return props.match.params.recipient_id
809     ? Number(props.match.params.recipient_id)
810     : 1;
811 }
812
813 export function getIdFromProps(props: any): Option<number> {
814   let id: string = props.match.params.post_id;
815   return id ? Some(Number(id)) : None;
816 }
817
818 export function getCommentIdFromProps(props: any): Option<number> {
819   let id: string = props.match.params.comment_id;
820   return id ? Some(Number(id)) : None;
821 }
822
823 export function getUsernameFromProps(props: any): string {
824   return props.match.params.username;
825 }
826
827 export function editCommentRes(data: CommentView, comments: CommentView[]) {
828   let found = comments.find(c => c.comment.id == data.comment.id);
829   if (found) {
830     found.comment.content = data.comment.content;
831     found.comment.distinguished = data.comment.distinguished;
832     found.comment.updated = data.comment.updated;
833     found.comment.removed = data.comment.removed;
834     found.comment.deleted = data.comment.deleted;
835     found.counts.upvotes = data.counts.upvotes;
836     found.counts.downvotes = data.counts.downvotes;
837     found.counts.score = data.counts.score;
838   }
839 }
840
841 export function saveCommentRes(data: CommentView, comments: CommentView[]) {
842   let found = comments.find(c => c.comment.id == data.comment.id);
843   if (found) {
844     found.saved = data.saved;
845   }
846 }
847
848 // TODO Should only use the return now, no state?
849 export function updatePersonBlock(
850   data: BlockPersonResponse,
851   myUserInfo = UserService.Instance.myUserInfo
852 ): Option<PersonBlockView[]> {
853   return myUserInfo.match({
854     some: (mui: MyUserInfo) => {
855       if (data.blocked) {
856         mui.person_blocks.push({
857           person: mui.local_user_view.person,
858           target: data.person_view.person,
859         });
860         toast(`${i18n.t("blocked")} ${data.person_view.person.name}`);
861       } else {
862         mui.person_blocks = mui.person_blocks.filter(
863           i => i.target.id != data.person_view.person.id
864         );
865         toast(`${i18n.t("unblocked")} ${data.person_view.person.name}`);
866       }
867       return Some(mui.person_blocks);
868     },
869     none: None,
870   });
871 }
872
873 export function updateCommunityBlock(
874   data: BlockCommunityResponse,
875   myUserInfo = UserService.Instance.myUserInfo
876 ): Option<CommunityBlockView[]> {
877   return myUserInfo.match({
878     some: (mui: MyUserInfo) => {
879       if (data.blocked) {
880         mui.community_blocks.push({
881           person: mui.local_user_view.person,
882           community: data.community_view.community,
883         });
884         toast(`${i18n.t("blocked")} ${data.community_view.community.name}`);
885       } else {
886         mui.community_blocks = mui.community_blocks.filter(
887           i => i.community.id != data.community_view.community.id
888         );
889         toast(`${i18n.t("unblocked")} ${data.community_view.community.name}`);
890       }
891       return Some(mui.community_blocks);
892     },
893     none: None,
894   });
895 }
896
897 export function createCommentLikeRes(
898   data: CommentView,
899   comments: CommentView[]
900 ) {
901   let found = comments.find(c => c.comment.id === data.comment.id);
902   if (found) {
903     found.counts.score = data.counts.score;
904     found.counts.upvotes = data.counts.upvotes;
905     found.counts.downvotes = data.counts.downvotes;
906     if (data.my_vote !== null) {
907       found.my_vote = data.my_vote;
908     }
909   }
910 }
911
912 export function createPostLikeFindRes(data: PostView, posts: PostView[]) {
913   let found = posts.find(p => p.post.id == data.post.id);
914   if (found) {
915     createPostLikeRes(data, found);
916   }
917 }
918
919 export function createPostLikeRes(data: PostView, post_view: PostView) {
920   if (post_view) {
921     post_view.counts.score = data.counts.score;
922     post_view.counts.upvotes = data.counts.upvotes;
923     post_view.counts.downvotes = data.counts.downvotes;
924     if (data.my_vote !== null) {
925       post_view.my_vote = data.my_vote;
926     }
927   }
928 }
929
930 export function editPostFindRes(data: PostView, posts: PostView[]) {
931   let found = posts.find(p => p.post.id == data.post.id);
932   if (found) {
933     editPostRes(data, found);
934   }
935 }
936
937 export function editPostRes(data: PostView, post: PostView) {
938   if (post) {
939     post.post.url = data.post.url;
940     post.post.name = data.post.name;
941     post.post.nsfw = data.post.nsfw;
942     post.post.deleted = data.post.deleted;
943     post.post.removed = data.post.removed;
944     post.post.stickied = data.post.stickied;
945     post.post.body = data.post.body;
946     post.post.locked = data.post.locked;
947     post.saved = data.saved;
948   }
949 }
950
951 export function updatePostReportRes(
952   data: PostReportView,
953   reports: PostReportView[]
954 ) {
955   let found = reports.find(p => p.post_report.id == data.post_report.id);
956   if (found) {
957     found.post_report = data.post_report;
958   }
959 }
960
961 export function updateCommentReportRes(
962   data: CommentReportView,
963   reports: CommentReportView[]
964 ) {
965   let found = reports.find(c => c.comment_report.id == data.comment_report.id);
966   if (found) {
967     found.comment_report = data.comment_report;
968   }
969 }
970
971 export function updateRegistrationApplicationRes(
972   data: RegistrationApplicationView,
973   applications: RegistrationApplicationView[]
974 ) {
975   let found = applications.find(
976     ra => ra.registration_application.id == data.registration_application.id
977   );
978   if (found) {
979     found.registration_application = data.registration_application;
980     found.admin = data.admin;
981     found.creator_local_user = data.creator_local_user;
982   }
983 }
984
985 export function commentsToFlatNodes(comments: CommentView[]): CommentNodeI[] {
986   let nodes: CommentNodeI[] = [];
987   for (let comment of comments) {
988     nodes.push({ comment_view: comment, children: [], depth: 0 });
989   }
990   return nodes;
991 }
992
993 export function convertCommentSortType(sort: SortType): CommentSortType {
994   if (
995     sort == SortType.TopAll ||
996     sort == SortType.TopDay ||
997     sort == SortType.TopWeek ||
998     sort == SortType.TopMonth ||
999     sort == SortType.TopYear
1000   ) {
1001     return CommentSortType.Top;
1002   } else if (sort == SortType.New) {
1003     return CommentSortType.New;
1004   } else if (sort == SortType.Hot || sort == SortType.Active) {
1005     return CommentSortType.Hot;
1006   } else {
1007     return CommentSortType.Hot;
1008   }
1009 }
1010
1011 export function buildCommentsTree(
1012   comments: CommentView[],
1013   parentComment: boolean
1014 ): CommentNodeI[] {
1015   let map = new Map<number, CommentNodeI>();
1016   let depthOffset = !parentComment
1017     ? 0
1018     : getDepthFromComment(comments[0].comment);
1019
1020   for (let comment_view of comments) {
1021     let node: CommentNodeI = {
1022       comment_view: comment_view,
1023       children: [],
1024       depth: getDepthFromComment(comment_view.comment) - depthOffset,
1025     };
1026     map.set(comment_view.comment.id, { ...node });
1027   }
1028
1029   let tree: CommentNodeI[] = [];
1030
1031   // if its a parent comment fetch, then push the first comment to the top node.
1032   if (parentComment) {
1033     tree.push(map.get(comments[0].comment.id));
1034   }
1035
1036   for (let comment_view of comments) {
1037     let child = map.get(comment_view.comment.id);
1038     let parent_id = getCommentParentId(comment_view.comment);
1039     parent_id.match({
1040       some: parentId => {
1041         let parent = map.get(parentId);
1042         // Necessary because blocked comment might not exist
1043         if (parent) {
1044           parent.children.push(child);
1045         }
1046       },
1047       none: () => {
1048         if (!parentComment) {
1049           tree.push(child);
1050         }
1051       },
1052     });
1053   }
1054
1055   return tree;
1056 }
1057
1058 export function getCommentParentId(comment: CommentI): Option<number> {
1059   let split = comment.path.split(".");
1060   // remove the 0
1061   split.shift();
1062
1063   if (split.length > 1) {
1064     return Some(Number(split[split.length - 2]));
1065   } else {
1066     return None;
1067   }
1068 }
1069
1070 export function getDepthFromComment(comment: CommentI): number {
1071   return comment.path.split(".").length - 2;
1072 }
1073
1074 export function insertCommentIntoTree(
1075   tree: CommentNodeI[],
1076   cv: CommentView,
1077   parentComment: boolean
1078 ) {
1079   // Building a fake node to be used for later
1080   let node: CommentNodeI = {
1081     comment_view: cv,
1082     children: [],
1083     depth: 0,
1084   };
1085
1086   getCommentParentId(cv.comment).match({
1087     some: parentId => {
1088       let parentComment = searchCommentTree(tree, parentId);
1089       parentComment.match({
1090         some: pComment => {
1091           node.depth = pComment.depth + 1;
1092           pComment.children.unshift(node);
1093         },
1094         none: void 0,
1095       });
1096     },
1097     none: () => {
1098       if (!parentComment) {
1099         tree.unshift(node);
1100       }
1101     },
1102   });
1103 }
1104
1105 export function searchCommentTree(
1106   tree: CommentNodeI[],
1107   id: number
1108 ): Option<CommentNodeI> {
1109   for (let node of tree) {
1110     if (node.comment_view.comment.id === id) {
1111       return Some(node);
1112     }
1113
1114     for (const child of node.children) {
1115       let res = searchCommentTree([child], id);
1116
1117       if (res.isSome()) {
1118         return res;
1119       }
1120     }
1121   }
1122   return None;
1123 }
1124
1125 export const colorList: string[] = [
1126   hsl(0),
1127   hsl(50),
1128   hsl(100),
1129   hsl(150),
1130   hsl(200),
1131   hsl(250),
1132   hsl(300),
1133 ];
1134
1135 function hsl(num: number) {
1136   return `hsla(${num}, 35%, 50%, 1)`;
1137 }
1138
1139 export function hostname(url: string): string {
1140   let cUrl = new URL(url);
1141   return cUrl.port ? `${cUrl.hostname}:${cUrl.port}` : `${cUrl.hostname}`;
1142 }
1143
1144 export function validTitle(title?: string): boolean {
1145   // Initial title is null, minimum length is taken care of by textarea's minLength={3}
1146   if (!title || title.length < 3) return true;
1147
1148   const regex = new RegExp(/.*\S.*/, "g");
1149
1150   return regex.test(title);
1151 }
1152
1153 export function siteBannerCss(banner: string): string {
1154   return ` \
1155     background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ) ,url("${banner}"); \
1156     background-attachment: fixed; \
1157     background-position: top; \
1158     background-repeat: no-repeat; \
1159     background-size: 100% cover; \
1160
1161     width: 100%; \
1162     max-height: 100vh; \
1163     `;
1164 }
1165
1166 export function isBrowser() {
1167   return typeof window !== "undefined";
1168 }
1169
1170 export function setIsoData<Type1, Type2, Type3, Type4, Type5>(
1171   context: any,
1172   cls1?: ClassConstructor<Type1>,
1173   cls2?: ClassConstructor<Type2>,
1174   cls3?: ClassConstructor<Type3>,
1175   cls4?: ClassConstructor<Type4>,
1176   cls5?: ClassConstructor<Type5>
1177 ): IsoData {
1178   // If its the browser, you need to deserialize the data from the window
1179   if (isBrowser()) {
1180     let json = window.isoData;
1181     let routeData = json.routeData;
1182     let routeDataOut: any[] = [];
1183
1184     // Can't do array looping because of specific type constructor required
1185     if (routeData[0]) {
1186       routeDataOut[0] = convertWindowJson(cls1, routeData[0]);
1187     }
1188     if (routeData[1]) {
1189       routeDataOut[1] = convertWindowJson(cls2, routeData[1]);
1190     }
1191     if (routeData[2]) {
1192       routeDataOut[2] = convertWindowJson(cls3, routeData[2]);
1193     }
1194     if (routeData[3]) {
1195       routeDataOut[3] = convertWindowJson(cls4, routeData[3]);
1196     }
1197     if (routeData[4]) {
1198       routeDataOut[4] = convertWindowJson(cls5, routeData[4]);
1199     }
1200     let site_res = convertWindowJson(GetSiteResponse, json.site_res);
1201
1202     let isoData: IsoData = {
1203       path: json.path,
1204       site_res,
1205       routeData: routeDataOut,
1206     };
1207     return isoData;
1208   } else return context.router.staticContext;
1209 }
1210
1211 /**
1212  * Necessary since window ISOData can't store function types like Option
1213  */
1214 export function convertWindowJson<T>(cls: ClassConstructor<T>, data: any): T {
1215   return deserialize(cls, serialize(data));
1216 }
1217
1218 export function wsSubscribe(parseMessage: any): Subscription {
1219   if (isBrowser()) {
1220     return WebSocketService.Instance.subject
1221       .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
1222       .subscribe(
1223         msg => parseMessage(msg),
1224         err => console.error(err),
1225         () => console.log("complete")
1226       );
1227   } else {
1228     return null;
1229   }
1230 }
1231
1232 moment.updateLocale("en", {
1233   relativeTime: {
1234     future: "in %s",
1235     past: "%s ago",
1236     s: "<1m",
1237     ss: "%ds",
1238     m: "1m",
1239     mm: "%dm",
1240     h: "1h",
1241     hh: "%dh",
1242     d: "1d",
1243     dd: "%dd",
1244     w: "1w",
1245     ww: "%dw",
1246     M: "1M",
1247     MM: "%dM",
1248     y: "1Y",
1249     yy: "%dY",
1250   },
1251 });
1252
1253 export function saveScrollPosition(context: any) {
1254   let path: string = context.router.route.location.pathname;
1255   let y = window.scrollY;
1256   sessionStorage.setItem(`scrollPosition_${path}`, y.toString());
1257 }
1258
1259 export function restoreScrollPosition(context: any) {
1260   let path: string = context.router.route.location.pathname;
1261   let y = Number(sessionStorage.getItem(`scrollPosition_${path}`));
1262   window.scrollTo(0, y);
1263 }
1264
1265 export function showLocal(isoData: IsoData): boolean {
1266   return isoData.site_res.federated_instances
1267     .map(f => f.linked.length > 0)
1268     .unwrapOr(false);
1269 }
1270
1271 export interface ChoicesValue {
1272   value: string;
1273   label: string;
1274 }
1275
1276 export function communityToChoice(cv: CommunityView): ChoicesValue {
1277   let choice: ChoicesValue = {
1278     value: cv.community.id.toString(),
1279     label: communitySelectName(cv),
1280   };
1281   return choice;
1282 }
1283
1284 export function personToChoice(pvs: PersonViewSafe): ChoicesValue {
1285   let choice: ChoicesValue = {
1286     value: pvs.person.id.toString(),
1287     label: personSelectName(pvs),
1288   };
1289   return choice;
1290 }
1291
1292 export async function fetchCommunities(q: string) {
1293   let form = new Search({
1294     q,
1295     type_: Some(SearchType.Communities),
1296     sort: Some(SortType.TopAll),
1297     listing_type: Some(ListingType.All),
1298     page: Some(1),
1299     limit: Some(fetchLimit),
1300     community_id: None,
1301     community_name: None,
1302     creator_id: None,
1303     auth: auth(false).ok(),
1304   });
1305   let client = new LemmyHttp(httpBase);
1306   return client.search(form);
1307 }
1308
1309 export async function fetchUsers(q: string) {
1310   let form = new Search({
1311     q,
1312     type_: Some(SearchType.Users),
1313     sort: Some(SortType.TopAll),
1314     listing_type: Some(ListingType.All),
1315     page: Some(1),
1316     limit: Some(fetchLimit),
1317     community_id: None,
1318     community_name: None,
1319     creator_id: None,
1320     auth: auth(false).ok(),
1321   });
1322   let client = new LemmyHttp(httpBase);
1323   return client.search(form);
1324 }
1325
1326 export const choicesConfig = {
1327   shouldSort: false,
1328   searchResultLimit: fetchLimit,
1329   classNames: {
1330     containerOuter: "choices",
1331     containerInner: "choices__inner bg-secondary border-0",
1332     input: "form-control",
1333     inputCloned: "choices__input--cloned",
1334     list: "choices__list",
1335     listItems: "choices__list--multiple",
1336     listSingle: "choices__list--single",
1337     listDropdown: "choices__list--dropdown",
1338     item: "choices__item bg-secondary",
1339     itemSelectable: "choices__item--selectable",
1340     itemDisabled: "choices__item--disabled",
1341     itemChoice: "choices__item--choice",
1342     placeholder: "choices__placeholder",
1343     group: "choices__group",
1344     groupHeading: "choices__heading",
1345     button: "choices__button",
1346     activeState: "is-active",
1347     focusState: "is-focused",
1348     openState: "is-open",
1349     disabledState: "is-disabled",
1350     highlightedState: "text-info",
1351     selectedState: "text-info",
1352     flippedState: "is-flipped",
1353     loadingState: "is-loading",
1354     noResults: "has-no-results",
1355     noChoices: "has-no-choices",
1356   },
1357 };
1358
1359 export const choicesModLogConfig = {
1360   shouldSort: false,
1361   searchResultLimit: fetchLimit,
1362   classNames: {
1363     containerOuter: "choices mb-2 custom-select col-4 px-0",
1364     containerInner:
1365       "choices__inner bg-secondary border-0 py-0 modlog-choices-font-size",
1366     input: "form-control",
1367     inputCloned: "choices__input--cloned w-100",
1368     list: "choices__list",
1369     listItems: "choices__list--multiple",
1370     listSingle: "choices__list--single py-0",
1371     listDropdown: "choices__list--dropdown",
1372     item: "choices__item bg-secondary",
1373     itemSelectable: "choices__item--selectable",
1374     itemDisabled: "choices__item--disabled",
1375     itemChoice: "choices__item--choice",
1376     placeholder: "choices__placeholder",
1377     group: "choices__group",
1378     groupHeading: "choices__heading",
1379     button: "choices__button",
1380     activeState: "is-active",
1381     focusState: "is-focused",
1382     openState: "is-open",
1383     disabledState: "is-disabled",
1384     highlightedState: "text-info",
1385     selectedState: "text-info",
1386     flippedState: "is-flipped",
1387     loadingState: "is-loading",
1388     noResults: "has-no-results",
1389     noChoices: "has-no-choices",
1390   },
1391 };
1392
1393 export function communitySelectName(cv: CommunityView): string {
1394   return cv.community.local
1395     ? cv.community.title
1396     : `${hostname(cv.community.actor_id)}/${cv.community.title}`;
1397 }
1398
1399 export function personSelectName(pvs: PersonViewSafe): string {
1400   let pName = pvs.person.display_name.unwrapOr(pvs.person.name);
1401   return pvs.person.local ? pName : `${hostname(pvs.person.actor_id)}/${pName}`;
1402 }
1403
1404 export function initializeSite(site: GetSiteResponse) {
1405   UserService.Instance.myUserInfo = site.my_user;
1406   i18n.changeLanguage(getLanguages()[0]);
1407 }
1408
1409 const SHORTNUM_SI_FORMAT = new Intl.NumberFormat("en-US", {
1410   maximumSignificantDigits: 3,
1411   //@ts-ignore
1412   notation: "compact",
1413   compactDisplay: "short",
1414 });
1415
1416 export function numToSI(value: number): string {
1417   return SHORTNUM_SI_FORMAT.format(value);
1418 }
1419
1420 export function isBanned(ps: PersonSafe): boolean {
1421   let expires = ps.ban_expires;
1422   // Add Z to convert from UTC date
1423   // TODO this check probably isn't necessary anymore
1424   if (expires.isSome()) {
1425     if (ps.banned && new Date(expires.unwrap() + "Z") > new Date()) {
1426       return true;
1427     } else {
1428       return false;
1429     }
1430   } else {
1431     return ps.banned;
1432   }
1433 }
1434
1435 export function pushNotNull(array: any[], new_item?: any) {
1436   if (new_item) {
1437     array.push(...new_item);
1438   }
1439 }
1440
1441 export function auth(throwErr = true): Result<string, string> {
1442   return UserService.Instance.auth(throwErr);
1443 }
1444
1445 export function enableDownvotes(siteRes: GetSiteResponse): boolean {
1446   return siteRes.site_view.map(s => s.site.enable_downvotes).unwrapOr(true);
1447 }
1448
1449 export function enableNsfw(siteRes: GetSiteResponse): boolean {
1450   return siteRes.site_view.map(s => s.site.enable_nsfw).unwrapOr(false);
1451 }
1452
1453 export function postToCommentSortType(sort: SortType): CommentSortType {
1454   if ([SortType.Active, SortType.Hot].includes(sort)) {
1455     return CommentSortType.Hot;
1456   } else if ([SortType.New, SortType.NewComments].includes(sort)) {
1457     return CommentSortType.New;
1458   } else if (sort == SortType.Old) {
1459     return CommentSortType.Old;
1460   } else {
1461     return CommentSortType.Top;
1462   }
1463 }