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