]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/app/index.ts
Merge pull request #1762 from jsit/fix/h1-page-titles
[lemmy-ui.git] / src / shared / utils / app / index.ts
1 import buildCommentsTree from "./build-comments-tree";
2 import { colorList } from "./color-list";
3 import commentsToFlatNodes from "./comments-to-flat-nodes";
4 import communityRSSUrl from "./community-rss-url";
5 import communitySearch from "./community-search";
6 import communitySelectName from "./community-select-name";
7 import communityToChoice from "./community-to-choice";
8 import convertCommentSortType from "./convert-comment-sort-type";
9 import editComment from "./edit-comment";
10 import editCommentReply from "./edit-comment-reply";
11 import editCommentReport from "./edit-comment-report";
12 import editCommunity from "./edit-community";
13 import editMention from "./edit-mention";
14 import editPost from "./edit-post";
15 import editPostReport from "./edit-post-report";
16 import editPrivateMessage from "./edit-private-message";
17 import editPrivateMessageReport from "./edit-private-message-report";
18 import editRegistrationApplication from "./edit-registration-application";
19 import editWith from "./edit-with";
20 import enableDownvotes from "./enable-downvotes";
21 import enableNsfw from "./enable-nsfw";
22 import fetchCommunities from "./fetch-communities";
23 import fetchSearchResults from "./fetch-search-results";
24 import fetchThemeList from "./fetch-theme-list";
25 import fetchUsers from "./fetch-users";
26 import getCommentIdFromProps from "./get-comment-id-from-props";
27 import getCommentParentId from "./get-comment-parent-id";
28 import getDataTypeString from "./get-data-type-string";
29 import getDepthFromComment from "./get-depth-from-comment";
30 import getIdFromProps from "./get-id-from-props";
31 import getRecipientIdFromProps from "./get-recipient-id-from-props";
32 import getRoleLabelPill from "./get-role-label-pill";
33 import getUpdatedSearchId from "./get-updated-search-id";
34 import initializeSite from "./initialize-site";
35 import insertCommentIntoTree from "./insert-comment-into-tree";
36 import isAuthPath from "./is-auth-path";
37 import isPostBlocked from "./is-post-blocked";
38 import myAuth from "./my-auth";
39 import myAuthRequired from "./my-auth-required";
40 import newVote from "./new-vote";
41 import nsfwCheck from "./nsfw-check";
42 import personSearch from "./person-search";
43 import personSelectName from "./person-select-name";
44 import personToChoice from "./person-to-choice";
45 import postToCommentSortType from "./post-to-comment-sort-type";
46 import searchCommentTree from "./search-comment-tree";
47 import selectableLanguages from "./selectable-languages";
48 import setIsoData from "./set-iso-data";
49 import setTheme from "./set-theme";
50 import setupDateFns from "./setup-date-fns";
51 import showAvatars from "./show-avatars";
52 import showLocal from "./show-local";
53 import showScores from "./show-scores";
54 import siteBannerCss from "./site-banner-css";
55 import updateCommunityBlock from "./update-community-block";
56 import updatePersonBlock from "./update-person-block";
57
58 export {
59   buildCommentsTree,
60   colorList,
61   commentsToFlatNodes,
62   communityRSSUrl,
63   communitySearch,
64   communitySelectName,
65   communityToChoice,
66   convertCommentSortType,
67   editComment,
68   editCommentReply,
69   editCommentReport,
70   editCommunity,
71   editMention,
72   editPost,
73   editPostReport,
74   editPrivateMessage,
75   editPrivateMessageReport,
76   editRegistrationApplication,
77   editWith,
78   enableDownvotes,
79   enableNsfw,
80   fetchCommunities,
81   fetchSearchResults,
82   fetchThemeList,
83   fetchUsers,
84   getCommentIdFromProps,
85   getCommentParentId,
86   getDataTypeString,
87   getDepthFromComment,
88   getIdFromProps,
89   getRecipientIdFromProps,
90   getRoleLabelPill,
91   getUpdatedSearchId,
92   initializeSite,
93   insertCommentIntoTree,
94   isAuthPath,
95   isPostBlocked,
96   myAuth,
97   myAuthRequired,
98   newVote,
99   nsfwCheck,
100   personSearch,
101   personSelectName,
102   personToChoice,
103   postToCommentSortType,
104   searchCommentTree,
105   selectableLanguages,
106   setIsoData,
107   setTheme,
108   setupDateFns,
109   showAvatars,
110   showLocal,
111   showScores,
112   siteBannerCss,
113   updateCommunityBlock,
114   updatePersonBlock,
115 };