2020-09-06 16:15:25 +00:00
|
|
|
|
import 'moment/locale/es';
|
|
|
|
|
import 'moment/locale/el';
|
|
|
|
|
import 'moment/locale/eu';
|
|
|
|
|
import 'moment/locale/eo';
|
|
|
|
|
import 'moment/locale/de';
|
|
|
|
|
import 'moment/locale/zh-cn';
|
|
|
|
|
import 'moment/locale/fr';
|
|
|
|
|
import 'moment/locale/sv';
|
|
|
|
|
import 'moment/locale/ru';
|
|
|
|
|
import 'moment/locale/nl';
|
|
|
|
|
import 'moment/locale/it';
|
|
|
|
|
import 'moment/locale/fi';
|
|
|
|
|
import 'moment/locale/ca';
|
|
|
|
|
import 'moment/locale/fa';
|
|
|
|
|
import 'moment/locale/pl';
|
|
|
|
|
import 'moment/locale/pt-br';
|
|
|
|
|
import 'moment/locale/ja';
|
|
|
|
|
import 'moment/locale/ka';
|
|
|
|
|
import 'moment/locale/hi';
|
|
|
|
|
import 'moment/locale/gl';
|
|
|
|
|
import 'moment/locale/tr';
|
|
|
|
|
import 'moment/locale/hu';
|
|
|
|
|
import 'moment/locale/uk';
|
|
|
|
|
import 'moment/locale/sq';
|
|
|
|
|
import 'moment/locale/km';
|
|
|
|
|
import 'moment/locale/ga';
|
|
|
|
|
import 'moment/locale/sr';
|
2020-09-08 04:09:11 +00:00
|
|
|
|
import 'moment/locale/ko';
|
2020-12-09 15:15:53 +00:00
|
|
|
|
import 'moment/locale/da';
|
2021-02-05 18:13:39 +00:00
|
|
|
|
import 'moment/locale/hr';
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
UserOperation,
|
2020-12-24 01:58:27 +00:00
|
|
|
|
CommentView,
|
2021-01-18 22:42:41 +00:00
|
|
|
|
UserSafeSettings,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
SortType,
|
|
|
|
|
ListingType,
|
|
|
|
|
SearchType,
|
|
|
|
|
WebSocketResponse,
|
|
|
|
|
WebSocketJsonResponse,
|
2020-12-24 01:58:27 +00:00
|
|
|
|
Search,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
SearchResponse,
|
2020-12-24 01:58:27 +00:00
|
|
|
|
PostView,
|
|
|
|
|
PrivateMessageView,
|
2020-12-24 22:05:57 +00:00
|
|
|
|
LemmyWebsocket,
|
2021-01-23 22:07:46 +00:00
|
|
|
|
UserViewSafe,
|
|
|
|
|
CommunityView,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
} from 'lemmy-js-client';
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
import {
|
|
|
|
|
CommentSortType,
|
|
|
|
|
DataType,
|
|
|
|
|
IsoData,
|
|
|
|
|
CommentNode as CommentNodeI,
|
|
|
|
|
} from './interfaces';
|
2020-09-06 16:15:25 +00:00
|
|
|
|
import { UserService, WebSocketService } from './services';
|
|
|
|
|
|
2021-01-23 21:40:24 +00:00
|
|
|
|
var Tribute: any;
|
2020-09-07 22:24:48 +00:00
|
|
|
|
if (isBrowser()) {
|
|
|
|
|
Tribute = require('tributejs');
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
import markdown_it from 'markdown-it';
|
|
|
|
|
import markdown_it_sub from 'markdown-it-sub';
|
|
|
|
|
import markdown_it_sup from 'markdown-it-sup';
|
|
|
|
|
import markdownitEmoji from 'markdown-it-emoji/light';
|
|
|
|
|
import markdown_it_container from 'markdown-it-container';
|
|
|
|
|
import emojiShortName from 'emoji-short-name';
|
|
|
|
|
import Toastify from 'toastify-js';
|
|
|
|
|
import tippy from 'tippy.js';
|
|
|
|
|
import moment from 'moment';
|
2020-09-07 15:32:07 +00:00
|
|
|
|
import { Subscription } from 'rxjs';
|
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2020-12-24 22:05:57 +00:00
|
|
|
|
import { i18n } from './i18next';
|
|
|
|
|
|
|
|
|
|
export const wsClient = new LemmyWebsocket();
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
export const favIconUrl = '/static/assets/favicon.svg';
|
|
|
|
|
export const favIconPngUrl = '/static/assets/apple-touch-icon.png';
|
|
|
|
|
// TODO
|
|
|
|
|
// export const defaultFavIcon = `${window.location.protocol}//${window.location.host}${favIconPngUrl}`;
|
2020-09-22 19:09:16 +00:00
|
|
|
|
export const repoUrl = 'https://github.com/LemmyNet';
|
2020-10-24 15:48:27 +00:00
|
|
|
|
export const joinLemmyUrl = 'https://join.lemmy.ml';
|
2020-12-01 15:27:27 +00:00
|
|
|
|
export const supportLemmyUrl = 'https://join.lemmy.ml/sponsors';
|
2021-02-04 20:50:07 +00:00
|
|
|
|
export const docsUrl = 'https://join.lemmy.ml/docs/en/index.html';
|
|
|
|
|
export const helpGuideUrl = 'https://join.lemmy.ml/docs/en/about/guide.html'; // TODO find a way to redirect to the non-en folder
|
2020-09-06 16:15:25 +00:00
|
|
|
|
export const markdownHelpUrl = `${helpGuideUrl}#markdown-guide`;
|
|
|
|
|
export const sortingHelpUrl = `${helpGuideUrl}#sorting`;
|
|
|
|
|
export const archiveUrl = 'https://archive.is';
|
|
|
|
|
export const elementUrl = 'https://element.io/';
|
|
|
|
|
|
|
|
|
|
export const postRefetchSeconds: number = 60 * 1000;
|
|
|
|
|
export const fetchLimit: number = 20;
|
|
|
|
|
export const mentionDropdownFetchLimit = 10;
|
|
|
|
|
|
|
|
|
|
export const languages = [
|
|
|
|
|
{ code: 'ca', name: 'Català' },
|
|
|
|
|
{ code: 'en', name: 'English' },
|
|
|
|
|
{ code: 'el', name: 'Ελληνικά' },
|
|
|
|
|
{ code: 'eu', name: 'Euskara' },
|
|
|
|
|
{ code: 'eo', name: 'Esperanto' },
|
|
|
|
|
{ code: 'es', name: 'Español' },
|
2020-12-09 15:15:53 +00:00
|
|
|
|
{ code: 'da', name: 'Dansk' },
|
2020-09-06 16:15:25 +00:00
|
|
|
|
{ code: 'de', name: 'Deutsch' },
|
|
|
|
|
{ code: 'ga', name: 'Gaeilge' },
|
|
|
|
|
{ code: 'gl', name: 'Galego' },
|
2021-02-05 18:13:39 +00:00
|
|
|
|
{ code: 'hr', name: 'hrvatski' },
|
2020-09-06 16:15:25 +00:00
|
|
|
|
{ code: 'hu', name: 'Magyar Nyelv' },
|
|
|
|
|
{ code: 'ka', name: 'ქართული ენა' },
|
2020-09-08 04:09:11 +00:00
|
|
|
|
{ code: 'ko', name: '한국어' },
|
2020-09-06 16:15:25 +00:00
|
|
|
|
{ code: 'km', name: 'ភាសាខ្មែរ' },
|
|
|
|
|
{ code: 'hi', name: 'मानक हिन्दी' },
|
|
|
|
|
{ code: 'fa', name: 'فارسی' },
|
|
|
|
|
{ code: 'ja', name: '日本語' },
|
2021-01-15 21:57:45 +00:00
|
|
|
|
{ code: 'oc', name: 'Occitan' },
|
2020-09-06 16:15:25 +00:00
|
|
|
|
{ code: 'pl', name: 'Polski' },
|
|
|
|
|
{ code: 'pt_BR', name: 'Português Brasileiro' },
|
2020-09-22 15:23:22 +00:00
|
|
|
|
{ code: 'zh', name: '中文' },
|
2020-09-06 16:15:25 +00:00
|
|
|
|
{ code: 'fi', name: 'Suomi' },
|
|
|
|
|
{ code: 'fr', name: 'Français' },
|
|
|
|
|
{ code: 'sv', name: 'Svenska' },
|
|
|
|
|
{ code: 'sq', name: 'Shqip' },
|
|
|
|
|
{ code: 'sr_Latn', name: 'srpski' },
|
|
|
|
|
{ code: 'tr', name: 'Türkçe' },
|
|
|
|
|
{ code: 'uk', name: 'Українська Mова' },
|
|
|
|
|
{ code: 'ru', name: 'Русский' },
|
|
|
|
|
{ code: 'nl', name: 'Nederlands' },
|
|
|
|
|
{ code: 'it', name: 'Italiano' },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export const themes = [
|
|
|
|
|
'litera',
|
|
|
|
|
'materia',
|
|
|
|
|
'minty',
|
|
|
|
|
'solar',
|
|
|
|
|
'united',
|
|
|
|
|
'cyborg',
|
|
|
|
|
'darkly',
|
|
|
|
|
'journal',
|
|
|
|
|
'sketchy',
|
|
|
|
|
'vaporwave',
|
|
|
|
|
'vaporwave-dark',
|
|
|
|
|
'i386',
|
|
|
|
|
'litely',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const DEFAULT_ALPHABET =
|
|
|
|
|
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
|
|
|
|
|
|
|
|
function getRandomCharFromAlphabet(alphabet: string): string {
|
|
|
|
|
return alphabet.charAt(Math.floor(Math.random() * alphabet.length));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function randomStr(
|
|
|
|
|
idDesiredLength: number = 20,
|
|
|
|
|
alphabet = DEFAULT_ALPHABET
|
|
|
|
|
): string {
|
|
|
|
|
/**
|
|
|
|
|
* Create n-long array and map it to random chars from given alphabet.
|
|
|
|
|
* Then join individual chars as string
|
|
|
|
|
*/
|
|
|
|
|
return Array.from({ length: idDesiredLength })
|
|
|
|
|
.map(() => {
|
|
|
|
|
return getRandomCharFromAlphabet(alphabet);
|
|
|
|
|
})
|
|
|
|
|
.join('');
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function wsJsonToRes<ResponseType>(
|
|
|
|
|
msg: WebSocketJsonResponse<ResponseType>
|
|
|
|
|
): WebSocketResponse<ResponseType> {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
return {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
op: wsUserOp(msg),
|
2020-09-06 16:15:25 +00:00
|
|
|
|
data: msg.data,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function wsUserOp(msg: any): UserOperation {
|
|
|
|
|
let opStr: string = msg.op;
|
|
|
|
|
return UserOperation[opStr];
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
|
export const md = new markdown_it({
|
|
|
|
|
html: false,
|
|
|
|
|
linkify: true,
|
|
|
|
|
typographer: true,
|
|
|
|
|
})
|
|
|
|
|
.use(markdown_it_sub)
|
|
|
|
|
.use(markdown_it_sup)
|
|
|
|
|
.use(markdown_it_container, 'spoiler', {
|
|
|
|
|
validate: function (params: any) {
|
|
|
|
|
return params.trim().match(/^spoiler\s+(.*)$/);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
render: function (tokens: any, idx: any) {
|
|
|
|
|
var m = tokens[idx].info.trim().match(/^spoiler\s+(.*)$/);
|
|
|
|
|
|
|
|
|
|
if (tokens[idx].nesting === 1) {
|
|
|
|
|
// opening tag
|
|
|
|
|
return `<details><summary> ${md.utils.escapeHtml(m[1])} </summary>\n`;
|
|
|
|
|
} else {
|
|
|
|
|
// closing tag
|
|
|
|
|
return '</details>\n';
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
.use(markdownitEmoji, {
|
|
|
|
|
defs: objectFlip(emojiShortName),
|
|
|
|
|
});
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function hotRankComment(comment_view: CommentView): number {
|
|
|
|
|
return hotRank(comment_view.counts.score, comment_view.comment.published);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function hotRankActivePost(post_view: PostView): number {
|
|
|
|
|
return hotRank(post_view.counts.score, post_view.counts.newest_comment_time);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function hotRankPost(post_view: PostView): number {
|
|
|
|
|
return hotRank(post_view.counts.score, post_view.post.published);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function hotRank(score: number, timeStr: string): number {
|
|
|
|
|
// Rank = ScaleFactor * sign(Score) * log(1 + abs(Score)) / (Time + 2)^Gravity
|
|
|
|
|
let date: Date = new Date(timeStr + 'Z'); // Add Z to convert from UTC date
|
|
|
|
|
let now: Date = new Date();
|
|
|
|
|
let hoursElapsed: number = (now.getTime() - date.getTime()) / 36e5;
|
|
|
|
|
|
|
|
|
|
let rank =
|
|
|
|
|
(10000 * Math.log10(Math.max(1, 3 + score))) /
|
|
|
|
|
Math.pow(hoursElapsed + 2, 1.8);
|
|
|
|
|
|
|
|
|
|
// console.log(`Comment: ${comment.content}\nRank: ${rank}\nScore: ${comment.score}\nHours: ${hoursElapsed}`);
|
|
|
|
|
|
|
|
|
|
return rank;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function mdToHtml(text: string) {
|
|
|
|
|
return { __html: md.render(text) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getUnixTime(text: string): number {
|
|
|
|
|
return text ? new Date(text).getTime() / 1000 : undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function canMod(
|
2021-01-18 22:42:41 +00:00
|
|
|
|
user: UserSafeSettings,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
modIds: number[],
|
|
|
|
|
creator_id: number,
|
|
|
|
|
onSelf: boolean = false
|
|
|
|
|
): boolean {
|
|
|
|
|
// You can do moderator actions only on the mods added after you.
|
|
|
|
|
if (user) {
|
|
|
|
|
let yourIndex = modIds.findIndex(id => id == user.id);
|
|
|
|
|
if (yourIndex == -1) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
// onSelf +1 on mod actions not for yourself, IE ban, remove, etc
|
|
|
|
|
modIds = modIds.slice(0, yourIndex + (onSelf ? 0 : 1));
|
|
|
|
|
return !modIds.includes(creator_id);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isMod(modIds: number[], creator_id: number): boolean {
|
|
|
|
|
return modIds.includes(creator_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const imageRegex = new RegExp(
|
|
|
|
|
/(http)?s?:?(\/\/[^"']*\.(?:jpg|jpeg|gif|png|svg|webp))/
|
|
|
|
|
);
|
|
|
|
|
const videoRegex = new RegExp(`(http)?s?:?(\/\/[^"']*\.(?:mp4))`);
|
|
|
|
|
|
|
|
|
|
export function isImage(url: string) {
|
|
|
|
|
return imageRegex.test(url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isVideo(url: string) {
|
|
|
|
|
return videoRegex.test(url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function validURL(str: string) {
|
|
|
|
|
return !!new URL(str);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-13 21:04:44 +00:00
|
|
|
|
export function communityRSSUrl(actorId: string, sort: string): string {
|
|
|
|
|
let url = new URL(actorId);
|
|
|
|
|
return `${url.origin}/feeds${url.pathname}.xml?sort=${sort}`;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
|
export function validEmail(email: string) {
|
|
|
|
|
let re = /^(([^\s"(),.:;<>@[\\\]]+(\.[^\s"(),.:;<>@[\\\]]+)*)|(".+"))@((\[(?:\d{1,3}\.){3}\d{1,3}])|(([\dA-Za-z\-]+\.)+[A-Za-z]{2,}))$/;
|
|
|
|
|
return re.test(String(email).toLowerCase());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function capitalizeFirstLetter(str: string): string {
|
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function routeSortTypeToEnum(sort: string): SortType {
|
|
|
|
|
return SortType[sort];
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-26 03:28:05 +00:00
|
|
|
|
export function listingTypeFromNum(type_: number): ListingType {
|
|
|
|
|
return Object.values(ListingType)[type_];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function sortTypeFromNum(type_: number): SortType {
|
|
|
|
|
return Object.values(SortType)[type_];
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
|
export function routeListingTypeToEnum(type: string): ListingType {
|
|
|
|
|
return ListingType[type];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function routeDataTypeToEnum(type: string): DataType {
|
|
|
|
|
return DataType[capitalizeFirstLetter(type)];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function routeSearchTypeToEnum(type: string): SearchType {
|
2020-09-09 02:40:36 +00:00
|
|
|
|
return SearchType[type];
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function getPageTitle(url: string) {
|
|
|
|
|
let res = await fetch(`/iframely/oembed?url=${url}`).then(res => res.json());
|
|
|
|
|
let title = await res.title;
|
|
|
|
|
return title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function debounce(
|
|
|
|
|
func: any,
|
|
|
|
|
wait: number = 1000,
|
|
|
|
|
immediate: boolean = false
|
|
|
|
|
) {
|
|
|
|
|
// 'private' variable for instance
|
|
|
|
|
// The returned function will be able to reference this due to closure.
|
|
|
|
|
// Each call to the returned function will share this common timer.
|
|
|
|
|
let timeout: any;
|
|
|
|
|
|
|
|
|
|
// Calling debounce returns a new anonymous function
|
|
|
|
|
return function () {
|
|
|
|
|
// reference the context and args for the setTimeout function
|
|
|
|
|
var context = this,
|
|
|
|
|
args = arguments;
|
|
|
|
|
|
|
|
|
|
// Should the function be called now? If immediate is true
|
|
|
|
|
// and not already in a timeout then the answer is: Yes
|
|
|
|
|
var callNow = immediate && !timeout;
|
|
|
|
|
|
|
|
|
|
// This is the basic debounce behaviour where you can call this
|
|
|
|
|
// function several times, but it will only execute once
|
|
|
|
|
// [before or after imposing a delay].
|
|
|
|
|
// Each time the returned function is called, the timer starts over.
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
|
|
|
|
|
// Set the new timeout
|
|
|
|
|
timeout = setTimeout(function () {
|
|
|
|
|
// Inside the timeout function, clear the timeout variable
|
|
|
|
|
// which will let the next execution run when in 'immediate' mode
|
|
|
|
|
timeout = null;
|
|
|
|
|
|
|
|
|
|
// Check if the function already ran with the immediate flag
|
|
|
|
|
if (!immediate) {
|
|
|
|
|
// Call the original function with apply
|
|
|
|
|
// apply lets you define the 'this' object as well as the arguments
|
|
|
|
|
// (both captured before setTimeout)
|
|
|
|
|
func.apply(context, args);
|
|
|
|
|
}
|
|
|
|
|
}, wait);
|
|
|
|
|
|
|
|
|
|
// Immediate mode and no wait timer? Execute the function..
|
|
|
|
|
if (callNow) func.apply(context, args);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
export function getLanguage(override?: string): string {
|
2020-09-09 20:33:40 +00:00
|
|
|
|
let user = UserService.Instance.user;
|
|
|
|
|
let lang = override || (user && user.lang ? user.lang : 'browser');
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
2020-09-09 20:33:40 +00:00
|
|
|
|
if (lang == 'browser' && isBrowser()) {
|
|
|
|
|
return getBrowserLanguage();
|
|
|
|
|
} else {
|
|
|
|
|
return lang;
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
export function getBrowserLanguage(): string {
|
|
|
|
|
return navigator.language;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getMomentLanguage(): string {
|
|
|
|
|
let lang = getLanguage();
|
|
|
|
|
if (lang.startsWith('zh')) {
|
|
|
|
|
lang = 'zh-cn';
|
|
|
|
|
} else if (lang.startsWith('sv')) {
|
|
|
|
|
lang = 'sv';
|
|
|
|
|
} else if (lang.startsWith('fr')) {
|
|
|
|
|
lang = 'fr';
|
|
|
|
|
} else if (lang.startsWith('de')) {
|
|
|
|
|
lang = 'de';
|
|
|
|
|
} else if (lang.startsWith('ru')) {
|
|
|
|
|
lang = 'ru';
|
|
|
|
|
} else if (lang.startsWith('es')) {
|
|
|
|
|
lang = 'es';
|
|
|
|
|
} else if (lang.startsWith('eo')) {
|
|
|
|
|
lang = 'eo';
|
|
|
|
|
} else if (lang.startsWith('nl')) {
|
|
|
|
|
lang = 'nl';
|
|
|
|
|
} else if (lang.startsWith('it')) {
|
|
|
|
|
lang = 'it';
|
|
|
|
|
} else if (lang.startsWith('fi')) {
|
|
|
|
|
lang = 'fi';
|
|
|
|
|
} else if (lang.startsWith('ca')) {
|
|
|
|
|
lang = 'ca';
|
|
|
|
|
} else if (lang.startsWith('fa')) {
|
|
|
|
|
lang = 'fa';
|
|
|
|
|
} else if (lang.startsWith('pl')) {
|
|
|
|
|
lang = 'pl';
|
|
|
|
|
} else if (lang.startsWith('pt')) {
|
|
|
|
|
lang = 'pt-br';
|
|
|
|
|
} else if (lang.startsWith('ja')) {
|
|
|
|
|
lang = 'ja';
|
|
|
|
|
} else if (lang.startsWith('ka')) {
|
|
|
|
|
lang = 'ka';
|
|
|
|
|
} else if (lang.startsWith('hi')) {
|
|
|
|
|
lang = 'hi';
|
|
|
|
|
} else if (lang.startsWith('el')) {
|
|
|
|
|
lang = 'el';
|
|
|
|
|
} else if (lang.startsWith('eu')) {
|
|
|
|
|
lang = 'eu';
|
|
|
|
|
} else if (lang.startsWith('gl')) {
|
|
|
|
|
lang = 'gl';
|
|
|
|
|
} else if (lang.startsWith('tr')) {
|
|
|
|
|
lang = 'tr';
|
|
|
|
|
} else if (lang.startsWith('hu')) {
|
|
|
|
|
lang = 'hu';
|
|
|
|
|
} else if (lang.startsWith('uk')) {
|
|
|
|
|
lang = 'uk';
|
|
|
|
|
} else if (lang.startsWith('sq')) {
|
|
|
|
|
lang = 'sq';
|
|
|
|
|
} else if (lang.startsWith('km')) {
|
|
|
|
|
lang = 'km';
|
|
|
|
|
} else if (lang.startsWith('ga')) {
|
|
|
|
|
lang = 'ga';
|
|
|
|
|
} else if (lang.startsWith('sr')) {
|
|
|
|
|
lang = 'sr';
|
2020-09-08 04:09:11 +00:00
|
|
|
|
} else if (lang.startsWith('ko')) {
|
|
|
|
|
lang = 'ko';
|
2020-12-09 15:15:53 +00:00
|
|
|
|
} else if (lang.startsWith('da')) {
|
|
|
|
|
lang = 'da';
|
2021-01-15 21:57:45 +00:00
|
|
|
|
} else if (lang.startsWith('oc')) {
|
|
|
|
|
lang = 'oc';
|
2021-02-05 18:13:39 +00:00
|
|
|
|
} else if (lang.startsWith('hr')) {
|
|
|
|
|
lang = 'hr';
|
2020-09-06 16:15:25 +00:00
|
|
|
|
} else {
|
|
|
|
|
lang = 'en';
|
|
|
|
|
}
|
|
|
|
|
return lang;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-11 02:40:41 +00:00
|
|
|
|
export function setTheme(theme: string, forceReload: boolean = false) {
|
2020-10-26 07:09:44 +00:00
|
|
|
|
if (!isBrowser()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (theme === 'browser' && !forceReload) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// This is only run on a force reload
|
|
|
|
|
if (theme == 'browser') {
|
|
|
|
|
theme = 'darkly';
|
|
|
|
|
}
|
2020-09-24 22:03:03 +00:00
|
|
|
|
|
2020-10-26 07:09:44 +00:00
|
|
|
|
// Unload all the other themes
|
|
|
|
|
for (var i = 0; i < themes.length; i++) {
|
|
|
|
|
let styleSheet = document.getElementById(themes[i]);
|
|
|
|
|
if (styleSheet) {
|
|
|
|
|
styleSheet.setAttribute('disabled', 'disabled');
|
2020-09-11 02:40:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-26 07:09:44 +00:00
|
|
|
|
|
|
|
|
|
document
|
|
|
|
|
.getElementById('default-light')
|
|
|
|
|
?.setAttribute('disabled', 'disabled');
|
|
|
|
|
document.getElementById('default-dark')?.setAttribute('disabled', 'disabled');
|
|
|
|
|
|
|
|
|
|
// Load the theme dynamically
|
|
|
|
|
let cssLoc = `/static/assets/css/themes/${theme}.min.css`;
|
|
|
|
|
loadCss(theme, cssLoc);
|
|
|
|
|
document.getElementById(theme).removeAttribute('disabled');
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-11 02:40:41 +00:00
|
|
|
|
export function loadCss(id: string, loc: string) {
|
|
|
|
|
if (!document.getElementById(id)) {
|
|
|
|
|
var head = document.getElementsByTagName('head')[0];
|
|
|
|
|
var link = document.createElement('link');
|
|
|
|
|
link.id = id;
|
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
|
link.type = 'text/css';
|
|
|
|
|
link.href = loc;
|
|
|
|
|
link.media = 'all';
|
|
|
|
|
head.appendChild(link);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
export function objectFlip(obj: any) {
|
|
|
|
|
const ret = {};
|
|
|
|
|
Object.keys(obj).forEach(key => {
|
|
|
|
|
ret[obj[key]] = key;
|
|
|
|
|
});
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function showAvatars(): boolean {
|
|
|
|
|
return (
|
|
|
|
|
(UserService.Instance.user && UserService.Instance.user.show_avatars) ||
|
|
|
|
|
!UserService.Instance.user
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isCakeDay(published: string): boolean {
|
|
|
|
|
// moment(undefined) or moment.utc(undefined) returns the current date/time
|
|
|
|
|
// moment(null) or moment.utc(null) returns null
|
|
|
|
|
const userCreationDate = moment.utc(published || null).local();
|
|
|
|
|
const currentDate = moment(new Date());
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
userCreationDate.date() === currentDate.date() &&
|
|
|
|
|
userCreationDate.month() === currentDate.month() &&
|
|
|
|
|
userCreationDate.year() !== currentDate.year()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function toast(text: string, background: string = 'success') {
|
2020-12-06 02:26:01 +00:00
|
|
|
|
if (isBrowser()) {
|
|
|
|
|
let backgroundColor = `var(--${background})`;
|
|
|
|
|
Toastify({
|
|
|
|
|
text: text,
|
|
|
|
|
backgroundColor: backgroundColor,
|
|
|
|
|
gravity: 'bottom',
|
|
|
|
|
position: 'left',
|
|
|
|
|
}).showToast();
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function pictrsDeleteToast(
|
|
|
|
|
clickToDeleteText: string,
|
|
|
|
|
deletePictureText: string,
|
|
|
|
|
deleteUrl: string
|
|
|
|
|
) {
|
2020-12-06 02:26:01 +00:00
|
|
|
|
if (isBrowser()) {
|
|
|
|
|
let backgroundColor = `var(--light)`;
|
|
|
|
|
let toast = Toastify({
|
|
|
|
|
text: clickToDeleteText,
|
|
|
|
|
backgroundColor: backgroundColor,
|
|
|
|
|
gravity: 'top',
|
|
|
|
|
position: 'right',
|
|
|
|
|
duration: 10000,
|
|
|
|
|
onClick: () => {
|
|
|
|
|
if (toast) {
|
|
|
|
|
window.location.replace(deleteUrl);
|
|
|
|
|
alert(deletePictureText);
|
|
|
|
|
toast.hideToast();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
close: true,
|
|
|
|
|
}).showToast();
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface NotifyInfo {
|
|
|
|
|
name: string;
|
2021-01-06 21:06:42 +00:00
|
|
|
|
icon?: string;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
link: string;
|
|
|
|
|
body: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function messageToastify(info: NotifyInfo, router: any) {
|
2020-12-06 02:26:01 +00:00
|
|
|
|
if (isBrowser()) {
|
|
|
|
|
let htmlBody = info.body ? md.render(info.body) : '';
|
|
|
|
|
let backgroundColor = `var(--light)`;
|
|
|
|
|
|
|
|
|
|
let toast = Toastify({
|
|
|
|
|
text: `${htmlBody}<br />${info.name}`,
|
2021-01-06 21:06:42 +00:00
|
|
|
|
avatar: info.icon ? info.icon : null,
|
2020-12-06 02:26:01 +00:00
|
|
|
|
backgroundColor: backgroundColor,
|
|
|
|
|
className: 'text-dark',
|
|
|
|
|
close: true,
|
|
|
|
|
gravity: 'top',
|
|
|
|
|
position: 'right',
|
|
|
|
|
duration: 5000,
|
|
|
|
|
onClick: () => {
|
|
|
|
|
if (toast) {
|
|
|
|
|
toast.hideToast();
|
|
|
|
|
router.history.push(info.link);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}).showToast();
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function notifyPost(post_view: PostView, router: any) {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
let info: NotifyInfo = {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
name: post_view.community.name,
|
2021-01-06 21:06:42 +00:00
|
|
|
|
icon: post_view.community.icon,
|
2020-12-24 01:58:27 +00:00
|
|
|
|
link: `/post/${post_view.post.id}`,
|
|
|
|
|
body: post_view.post.name,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
|
|
|
|
notify(info, router);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function notifyComment(comment_view: CommentView, router: any) {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
let info: NotifyInfo = {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
name: comment_view.creator.name,
|
2021-01-06 21:06:42 +00:00
|
|
|
|
icon: comment_view.creator.avatar,
|
2020-12-24 01:58:27 +00:00
|
|
|
|
link: `/post/${comment_view.post.id}/comment/${comment_view.comment.id}`,
|
|
|
|
|
body: comment_view.comment.content,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
|
|
|
|
notify(info, router);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function notifyPrivateMessage(pmv: PrivateMessageView, router: any) {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
let info: NotifyInfo = {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
name: pmv.creator.name,
|
2021-01-06 21:06:42 +00:00
|
|
|
|
icon: pmv.creator.avatar,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
link: `/inbox`,
|
2020-12-24 01:58:27 +00:00
|
|
|
|
body: pmv.private_message.content,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
|
|
|
|
notify(info, router);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function notify(info: NotifyInfo, router: any) {
|
|
|
|
|
messageToastify(info, router);
|
|
|
|
|
|
|
|
|
|
if (Notification.permission !== 'granted') Notification.requestPermission();
|
|
|
|
|
else {
|
|
|
|
|
var notification = new Notification(info.name, {
|
|
|
|
|
icon: info.icon,
|
|
|
|
|
body: info.body,
|
|
|
|
|
});
|
|
|
|
|
|
2021-01-23 21:40:24 +00:00
|
|
|
|
notification.onclick = (ev: Event): any => {
|
|
|
|
|
ev.preventDefault();
|
2020-09-06 16:15:25 +00:00
|
|
|
|
router.history.push(info.link);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-07 22:24:48 +00:00
|
|
|
|
export function setupTribute() {
|
|
|
|
|
return new Tribute({
|
|
|
|
|
noMatchTemplate: function () {
|
|
|
|
|
return '';
|
|
|
|
|
},
|
|
|
|
|
collection: [
|
|
|
|
|
// Emojis
|
|
|
|
|
{
|
|
|
|
|
trigger: ':',
|
|
|
|
|
menuItemTemplate: (item: any) => {
|
|
|
|
|
let shortName = `:${item.original.key}:`;
|
|
|
|
|
return `${item.original.val} ${shortName}`;
|
|
|
|
|
},
|
|
|
|
|
selectTemplate: (item: any) => {
|
|
|
|
|
return `:${item.original.key}:`;
|
|
|
|
|
},
|
|
|
|
|
values: Object.entries(emojiShortName).map(e => {
|
|
|
|
|
return { key: e[1], val: e[0] };
|
|
|
|
|
}),
|
|
|
|
|
allowSpaces: false,
|
|
|
|
|
autocompleteMode: true,
|
|
|
|
|
// TODO
|
|
|
|
|
// menuItemLimit: mentionDropdownFetchLimit,
|
|
|
|
|
menuShowMinLength: 2,
|
|
|
|
|
},
|
|
|
|
|
// Users
|
|
|
|
|
{
|
|
|
|
|
trigger: '@',
|
|
|
|
|
selectTemplate: (item: any) => {
|
2021-01-23 22:07:46 +00:00
|
|
|
|
let it: UserTribute = item.original;
|
|
|
|
|
return `[${it.key}](${it.view.user.actor_id})`;
|
2020-09-07 22:24:48 +00:00
|
|
|
|
},
|
2021-01-23 22:07:46 +00:00
|
|
|
|
values: (text: string, cb: (users: UserTribute[]) => any) => {
|
|
|
|
|
userSearch(text, (users: UserTribute[]) => cb(users));
|
2020-09-07 22:24:48 +00:00
|
|
|
|
},
|
|
|
|
|
allowSpaces: false,
|
|
|
|
|
autocompleteMode: true,
|
|
|
|
|
// TODO
|
|
|
|
|
// menuItemLimit: mentionDropdownFetchLimit,
|
|
|
|
|
menuShowMinLength: 2,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Communities
|
|
|
|
|
{
|
|
|
|
|
trigger: '!',
|
|
|
|
|
selectTemplate: (item: any) => {
|
2021-01-23 22:07:46 +00:00
|
|
|
|
let it: CommunityTribute = item.original;
|
|
|
|
|
return `[${it.key}](${it.view.community.actor_id})`;
|
2020-09-07 22:24:48 +00:00
|
|
|
|
},
|
|
|
|
|
values: (text: string, cb: any) => {
|
2021-01-23 22:07:46 +00:00
|
|
|
|
communitySearch(text, (communities: CommunityTribute[]) =>
|
|
|
|
|
cb(communities)
|
|
|
|
|
);
|
2020-09-07 22:24:48 +00:00
|
|
|
|
},
|
|
|
|
|
allowSpaces: false,
|
|
|
|
|
autocompleteMode: true,
|
|
|
|
|
// TODO
|
|
|
|
|
// menuItemLimit: mentionDropdownFetchLimit,
|
|
|
|
|
menuShowMinLength: 2,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
2021-01-23 21:40:24 +00:00
|
|
|
|
var tippyInstance: any;
|
2020-09-08 04:09:11 +00:00
|
|
|
|
if (isBrowser()) {
|
|
|
|
|
tippyInstance = tippy('[data-tippy-content]');
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
export function setupTippy() {
|
2020-09-08 04:09:11 +00:00
|
|
|
|
if (isBrowser()) {
|
2021-01-23 21:40:24 +00:00
|
|
|
|
tippyInstance.forEach((e: any) => e.destroy());
|
2020-09-08 04:09:11 +00:00
|
|
|
|
tippyInstance = tippy('[data-tippy-content]', {
|
|
|
|
|
delay: [500, 0],
|
|
|
|
|
// Display on "long press"
|
|
|
|
|
touch: ['hold', 500],
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-23 22:07:46 +00:00
|
|
|
|
interface UserTribute {
|
|
|
|
|
key: string;
|
|
|
|
|
view: UserViewSafe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function userSearch(text: string, cb: (users: UserTribute[]) => any) {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (text) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
let form: Search = {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
q: text,
|
|
|
|
|
type_: SearchType.Users,
|
|
|
|
|
sort: SortType.TopAll,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: mentionDropdownFetchLimit,
|
2020-12-24 22:05:57 +00:00
|
|
|
|
auth: authField(false),
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-12-24 22:05:57 +00:00
|
|
|
|
WebSocketService.Instance.send(wsClient.search(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
let userSub = WebSocketService.Instance.subject.subscribe(
|
|
|
|
|
msg => {
|
|
|
|
|
let res = wsJsonToRes(msg);
|
|
|
|
|
if (res.op == UserOperation.Search) {
|
|
|
|
|
let data = res.data as SearchResponse;
|
2021-01-23 22:07:46 +00:00
|
|
|
|
let users: UserTribute[] = data.users.map(uv => {
|
|
|
|
|
let tribute: UserTribute = {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
key: `@${uv.user.name}@${hostname(uv.user.actor_id)}`,
|
2021-01-23 22:07:46 +00:00
|
|
|
|
view: uv,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
2021-01-23 22:07:46 +00:00
|
|
|
|
return tribute;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
});
|
|
|
|
|
cb(users);
|
|
|
|
|
userSub.unsubscribe();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
err => console.error(err),
|
|
|
|
|
() => console.log('complete')
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
cb([]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-23 22:07:46 +00:00
|
|
|
|
interface CommunityTribute {
|
|
|
|
|
key: string;
|
|
|
|
|
view: CommunityView;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function communitySearch(
|
|
|
|
|
text: string,
|
|
|
|
|
cb: (communities: CommunityTribute[]) => any
|
|
|
|
|
) {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (text) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
let form: Search = {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
q: text,
|
|
|
|
|
type_: SearchType.Communities,
|
|
|
|
|
sort: SortType.TopAll,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: mentionDropdownFetchLimit,
|
2020-12-24 22:05:57 +00:00
|
|
|
|
auth: authField(false),
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-12-24 22:05:57 +00:00
|
|
|
|
WebSocketService.Instance.send(wsClient.search(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
let communitySub = WebSocketService.Instance.subject.subscribe(
|
|
|
|
|
msg => {
|
|
|
|
|
let res = wsJsonToRes(msg);
|
|
|
|
|
if (res.op == UserOperation.Search) {
|
|
|
|
|
let data = res.data as SearchResponse;
|
2021-01-23 22:07:46 +00:00
|
|
|
|
let communities: CommunityTribute[] = data.communities.map(cv => {
|
|
|
|
|
let tribute: CommunityTribute = {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
key: `!${cv.community.name}@${hostname(cv.community.actor_id)}`,
|
2021-01-23 22:07:46 +00:00
|
|
|
|
view: cv,
|
2020-09-06 16:15:25 +00:00
|
|
|
|
};
|
2021-01-23 22:07:46 +00:00
|
|
|
|
return tribute;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
});
|
|
|
|
|
cb(communities);
|
|
|
|
|
communitySub.unsubscribe();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
err => console.error(err),
|
|
|
|
|
() => console.log('complete')
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
cb([]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getListingTypeFromProps(props: any): ListingType {
|
2020-09-08 04:09:11 +00:00
|
|
|
|
return props.match.params.listing_type
|
|
|
|
|
? routeListingTypeToEnum(props.match.params.listing_type)
|
|
|
|
|
: UserService.Instance.user
|
|
|
|
|
? Object.values(ListingType)[UserService.Instance.user.default_listing_type]
|
2020-10-05 02:11:48 +00:00
|
|
|
|
: ListingType.Local;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO might need to add a user setting for this too
|
|
|
|
|
export function getDataTypeFromProps(props: any): DataType {
|
2020-09-08 04:09:11 +00:00
|
|
|
|
return props.match.params.data_type
|
|
|
|
|
? routeDataTypeToEnum(props.match.params.data_type)
|
|
|
|
|
: DataType.Post;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getSortTypeFromProps(props: any): SortType {
|
2020-09-08 04:09:11 +00:00
|
|
|
|
return props.match.params.sort
|
|
|
|
|
? routeSortTypeToEnum(props.match.params.sort)
|
|
|
|
|
: UserService.Instance.user
|
|
|
|
|
? Object.values(SortType)[UserService.Instance.user.default_sort_type]
|
|
|
|
|
: SortType.Active;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getPageFromProps(props: any): number {
|
2020-09-07 15:32:07 +00:00
|
|
|
|
return props.match.params.page ? Number(props.match.params.page) : 1;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-08 18:44:55 +00:00
|
|
|
|
export function getRecipientIdFromProps(props: any): number {
|
|
|
|
|
return props.match.params.recipient_id
|
|
|
|
|
? Number(props.match.params.recipient_id)
|
|
|
|
|
: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 00:48:17 +00:00
|
|
|
|
export function getIdFromProps(props: any): number {
|
|
|
|
|
return Number(props.match.params.id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getCommentIdFromProps(props: any): number {
|
|
|
|
|
return Number(props.match.params.comment_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getUsernameFromProps(props: any): string {
|
|
|
|
|
return props.match.params.username;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function editCommentRes(data: CommentView, comments: CommentView[]) {
|
|
|
|
|
let found = comments.find(c => c.comment.id == data.comment.id);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (found) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
found.comment.content = data.comment.content;
|
|
|
|
|
found.comment.updated = data.comment.updated;
|
|
|
|
|
found.comment.removed = data.comment.removed;
|
|
|
|
|
found.comment.deleted = data.comment.deleted;
|
|
|
|
|
found.counts.upvotes = data.counts.upvotes;
|
|
|
|
|
found.counts.downvotes = data.counts.downvotes;
|
|
|
|
|
found.counts.score = data.counts.score;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function saveCommentRes(data: CommentView, comments: CommentView[]) {
|
|
|
|
|
let found = comments.find(c => c.comment.id == data.comment.id);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (found) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
found.saved = data.saved;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function createCommentLikeRes(
|
2020-12-24 01:58:27 +00:00
|
|
|
|
data: CommentView,
|
|
|
|
|
comments: CommentView[]
|
2020-09-06 16:15:25 +00:00
|
|
|
|
) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
let found = comments.find(c => c.comment.id === data.comment.id);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (found) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
found.counts.score = data.counts.score;
|
|
|
|
|
found.counts.upvotes = data.counts.upvotes;
|
|
|
|
|
found.counts.downvotes = data.counts.downvotes;
|
|
|
|
|
if (data.my_vote !== null) {
|
|
|
|
|
found.my_vote = data.my_vote;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function createPostLikeFindRes(data: PostView, posts: PostView[]) {
|
|
|
|
|
let found = posts.find(p => p.post.id == data.post.id);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (found) {
|
|
|
|
|
createPostLikeRes(data, found);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function createPostLikeRes(data: PostView, post_view: PostView) {
|
|
|
|
|
if (post_view) {
|
|
|
|
|
post_view.counts.score = data.counts.score;
|
|
|
|
|
post_view.counts.upvotes = data.counts.upvotes;
|
|
|
|
|
post_view.counts.downvotes = data.counts.downvotes;
|
|
|
|
|
if (data.my_vote !== null) {
|
|
|
|
|
post_view.my_vote = data.my_vote;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function editPostFindRes(data: PostView, posts: PostView[]) {
|
|
|
|
|
let found = posts.find(p => p.post.id == data.post.id);
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (found) {
|
|
|
|
|
editPostRes(data, found);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function editPostRes(data: PostView, post: PostView) {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
if (post) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
post.post.url = data.post.url;
|
|
|
|
|
post.post.name = data.post.name;
|
|
|
|
|
post.post.nsfw = data.post.nsfw;
|
|
|
|
|
post.post.deleted = data.post.deleted;
|
|
|
|
|
post.post.removed = data.post.removed;
|
|
|
|
|
post.post.stickied = data.post.stickied;
|
|
|
|
|
post.post.body = data.post.body;
|
|
|
|
|
post.post.locked = data.post.locked;
|
|
|
|
|
post.saved = data.saved;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
|
export function commentsToFlatNodes(comments: CommentView[]): CommentNodeI[] {
|
2020-09-06 16:15:25 +00:00
|
|
|
|
let nodes: CommentNodeI[] = [];
|
|
|
|
|
for (let comment of comments) {
|
2020-12-24 01:58:27 +00:00
|
|
|
|
nodes.push({ comment_view: comment });
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
return nodes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function commentSort(tree: CommentNodeI[], sort: CommentSortType) {
|
|
|
|
|
// First, put removed and deleted comments at the bottom, then do your other sorts
|
|
|
|
|
if (sort == CommentSortType.Top) {
|
|
|
|
|
tree.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.comment_view.comment.removed - +b.comment_view.comment.removed ||
|
|
|
|
|
+a.comment_view.comment.deleted - +b.comment_view.comment.deleted ||
|
|
|
|
|
b.comment_view.counts.score - a.comment_view.counts.score
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
} else if (sort == CommentSortType.New) {
|
|
|
|
|
tree.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.comment_view.comment.removed - +b.comment_view.comment.removed ||
|
|
|
|
|
+a.comment_view.comment.deleted - +b.comment_view.comment.deleted ||
|
|
|
|
|
b.comment_view.comment.published.localeCompare(
|
|
|
|
|
a.comment_view.comment.published
|
|
|
|
|
)
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
} else if (sort == CommentSortType.Old) {
|
|
|
|
|
tree.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.comment_view.comment.removed - +b.comment_view.comment.removed ||
|
|
|
|
|
+a.comment_view.comment.deleted - +b.comment_view.comment.deleted ||
|
|
|
|
|
a.comment_view.comment.published.localeCompare(
|
|
|
|
|
b.comment_view.comment.published
|
|
|
|
|
)
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
} else if (sort == CommentSortType.Hot) {
|
|
|
|
|
tree.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.comment_view.comment.removed - +b.comment_view.comment.removed ||
|
|
|
|
|
+a.comment_view.comment.deleted - +b.comment_view.comment.deleted ||
|
|
|
|
|
hotRankComment(b.comment_view) - hotRankComment(a.comment_view)
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Go through the children recursively
|
|
|
|
|
for (let node of tree) {
|
|
|
|
|
if (node.children) {
|
|
|
|
|
commentSort(node.children, sort);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function commentSortSortType(tree: CommentNodeI[], sort: SortType) {
|
|
|
|
|
commentSort(tree, convertCommentSortType(sort));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function convertCommentSortType(sort: SortType): CommentSortType {
|
|
|
|
|
if (
|
|
|
|
|
sort == SortType.TopAll ||
|
|
|
|
|
sort == SortType.TopDay ||
|
|
|
|
|
sort == SortType.TopWeek ||
|
|
|
|
|
sort == SortType.TopMonth ||
|
|
|
|
|
sort == SortType.TopYear
|
|
|
|
|
) {
|
|
|
|
|
return CommentSortType.Top;
|
|
|
|
|
} else if (sort == SortType.New) {
|
|
|
|
|
return CommentSortType.New;
|
|
|
|
|
} else if (sort == SortType.Hot || sort == SortType.Active) {
|
|
|
|
|
return CommentSortType.Hot;
|
|
|
|
|
} else {
|
|
|
|
|
return CommentSortType.Hot;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function postSort(
|
2020-12-24 01:58:27 +00:00
|
|
|
|
posts: PostView[],
|
2020-09-06 16:15:25 +00:00
|
|
|
|
sort: SortType,
|
|
|
|
|
communityType: boolean
|
|
|
|
|
) {
|
|
|
|
|
// First, put removed and deleted comments at the bottom, then do your other sorts
|
|
|
|
|
if (
|
|
|
|
|
sort == SortType.TopAll ||
|
|
|
|
|
sort == SortType.TopDay ||
|
|
|
|
|
sort == SortType.TopWeek ||
|
|
|
|
|
sort == SortType.TopMonth ||
|
|
|
|
|
sort == SortType.TopYear
|
|
|
|
|
) {
|
|
|
|
|
posts.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.post.removed - +b.post.removed ||
|
|
|
|
|
+a.post.deleted - +b.post.deleted ||
|
|
|
|
|
(communityType && +b.post.stickied - +a.post.stickied) ||
|
|
|
|
|
b.counts.score - a.counts.score
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
} else if (sort == SortType.New) {
|
|
|
|
|
posts.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.post.removed - +b.post.removed ||
|
|
|
|
|
+a.post.deleted - +b.post.deleted ||
|
|
|
|
|
(communityType && +b.post.stickied - +a.post.stickied) ||
|
|
|
|
|
b.post.published.localeCompare(a.post.published)
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
} else if (sort == SortType.Hot) {
|
|
|
|
|
posts.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.post.removed - +b.post.removed ||
|
|
|
|
|
+a.post.deleted - +b.post.deleted ||
|
|
|
|
|
(communityType && +b.post.stickied - +a.post.stickied) ||
|
|
|
|
|
hotRankPost(b) - hotRankPost(a)
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
} else if (sort == SortType.Active) {
|
|
|
|
|
posts.sort(
|
|
|
|
|
(a, b) =>
|
2020-12-24 01:58:27 +00:00
|
|
|
|
+a.post.removed - +b.post.removed ||
|
|
|
|
|
+a.post.deleted - +b.post.deleted ||
|
|
|
|
|
(communityType && +b.post.stickied - +a.post.stickied) ||
|
|
|
|
|
hotRankActivePost(b) - hotRankActivePost(a)
|
2020-09-06 16:15:25 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const colorList: string[] = [
|
|
|
|
|
hsl(0),
|
|
|
|
|
hsl(100),
|
|
|
|
|
hsl(150),
|
|
|
|
|
hsl(200),
|
|
|
|
|
hsl(250),
|
|
|
|
|
hsl(300),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
function hsl(num: number) {
|
|
|
|
|
return `hsla(${num}, 35%, 50%, 1)`;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-14 15:26:24 +00:00
|
|
|
|
// function randomHsl() {
|
|
|
|
|
// return `hsla(${Math.random() * 360}, 100%, 50%, 1)`;
|
|
|
|
|
// }
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
|
|
export function previewLines(
|
|
|
|
|
text: string,
|
|
|
|
|
maxChars: number = 300,
|
|
|
|
|
maxLines: number = 1
|
|
|
|
|
): string {
|
|
|
|
|
return (
|
|
|
|
|
text
|
|
|
|
|
.slice(0, maxChars)
|
|
|
|
|
.split('\n')
|
|
|
|
|
// Use lines * 2 because markdown requires 2 lines
|
|
|
|
|
.slice(0, maxLines * 2)
|
|
|
|
|
.join('\n') + '...'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function hostname(url: string): string {
|
|
|
|
|
let cUrl = new URL(url);
|
2020-09-11 18:09:21 +00:00
|
|
|
|
return cUrl.port ? `${cUrl.hostname}:${cUrl.port}` : `${cUrl.hostname}`;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function validTitle(title?: string): boolean {
|
|
|
|
|
// Initial title is null, minimum length is taken care of by textarea's minLength={3}
|
|
|
|
|
if (title === null || title.length < 3) return true;
|
|
|
|
|
|
|
|
|
|
const regex = new RegExp(/.*\S.*/, 'g');
|
|
|
|
|
|
|
|
|
|
return regex.test(title);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function siteBannerCss(banner: string): string {
|
|
|
|
|
return ` \
|
|
|
|
|
background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ) ,url("${banner}"); \
|
|
|
|
|
background-attachment: fixed; \
|
|
|
|
|
background-position: top; \
|
|
|
|
|
background-repeat: no-repeat; \
|
|
|
|
|
background-size: 100% cover; \
|
|
|
|
|
|
|
|
|
|
width: 100%; \
|
|
|
|
|
max-height: 100vh; \
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isBrowser() {
|
|
|
|
|
return typeof window !== 'undefined';
|
|
|
|
|
}
|
2020-09-07 03:41:46 +00:00
|
|
|
|
|
2020-09-07 15:32:07 +00:00
|
|
|
|
export function setIsoData(context: any): IsoData {
|
2020-09-09 20:33:40 +00:00
|
|
|
|
let isoData: IsoData = isBrowser()
|
|
|
|
|
? window.isoData
|
|
|
|
|
: context.router.staticContext;
|
|
|
|
|
return isoData;
|
2020-09-07 15:32:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function wsSubscribe(parseMessage: any): Subscription {
|
|
|
|
|
if (isBrowser()) {
|
|
|
|
|
return WebSocketService.Instance.subject
|
|
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
|
.subscribe(
|
|
|
|
|
msg => parseMessage(msg),
|
|
|
|
|
err => console.error(err),
|
|
|
|
|
() => console.log('complete')
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-09-25 21:16:41 +00:00
|
|
|
|
|
2020-12-24 22:05:57 +00:00
|
|
|
|
export function setOptionalAuth(obj: any, auth = UserService.Instance.auth) {
|
|
|
|
|
if (auth) {
|
|
|
|
|
obj.auth = auth;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function authField(
|
|
|
|
|
throwErr: boolean = true,
|
|
|
|
|
auth = UserService.Instance.auth
|
|
|
|
|
): string {
|
|
|
|
|
if (auth == null && throwErr) {
|
|
|
|
|
toast(i18n.t('not_logged_in'), 'danger');
|
|
|
|
|
throw 'Not logged in';
|
|
|
|
|
} else {
|
|
|
|
|
return auth;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-25 21:16:41 +00:00
|
|
|
|
moment.updateLocale('en', {
|
|
|
|
|
relativeTime: {
|
|
|
|
|
future: 'in %s',
|
|
|
|
|
past: '%s ago',
|
|
|
|
|
s: '<1m',
|
|
|
|
|
ss: '%ds',
|
|
|
|
|
m: '1m',
|
|
|
|
|
mm: '%dm',
|
|
|
|
|
h: '1h',
|
|
|
|
|
hh: '%dh',
|
|
|
|
|
d: '1d',
|
|
|
|
|
dd: '%dd',
|
|
|
|
|
w: '1w',
|
|
|
|
|
ww: '%dw',
|
2020-10-05 00:14:23 +00:00
|
|
|
|
M: '1M',
|
|
|
|
|
MM: '%dM',
|
|
|
|
|
y: '1Y',
|
|
|
|
|
yy: '%dY',
|
2020-09-25 21:16:41 +00:00
|
|
|
|
},
|
|
|
|
|
});
|
2021-02-02 18:36:59 +00:00
|
|
|
|
|
|
|
|
|
export function saveScrollPosition(context: any) {
|
|
|
|
|
let path: string = context.router.route.location.pathname;
|
|
|
|
|
let y = window.scrollY;
|
|
|
|
|
sessionStorage.setItem(`scrollPosition_${path}`, y.toString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function restoreScrollPosition(context: any) {
|
|
|
|
|
let path: string = context.router.route.location.pathname;
|
|
|
|
|
let y = Number(sessionStorage.getItem(`scrollPosition_${path}`));
|
|
|
|
|
window.scrollTo(0, y);
|
|
|
|
|
}
|