2019-08-26 21:42:53 +00:00
|
|
|
import 'moment/locale/es';
|
|
|
|
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';
|
2019-08-29 18:20:21 +00:00
|
|
|
import 'moment/locale/nl';
|
2019-08-26 21:42:53 +00:00
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
import { UserOperation, Comment, User, SortType, ListingType, SearchType } from './interfaces';
|
2019-03-30 07:11:44 +00:00
|
|
|
import * as markdown_it from 'markdown-it';
|
2019-09-03 00:33:09 +00:00
|
|
|
import * as markdownitEmoji from 'markdown-it-emoji/light';
|
2019-04-29 17:16:43 +00:00
|
|
|
import * as markdown_it_container from 'markdown-it-container';
|
2019-08-31 16:40:42 +00:00
|
|
|
import * as twemoji from 'twemoji';
|
2019-09-04 22:22:31 +00:00
|
|
|
import * as emojiShortName from 'emoji-short-name';
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-08-31 00:40:59 +00:00
|
|
|
export const repoUrl = 'https://github.com/dessalines/lemmy';
|
2019-09-01 04:10:48 +00:00
|
|
|
export const markdownHelpUrl = 'https://commonmark.org/help/';
|
|
|
|
|
|
|
|
export const fetchLimit: number = 20;
|
|
|
|
export const mentionDropdownFetchLimit = 6;
|
|
|
|
|
|
|
|
export function randomStr() {return Math.random().toString(36).replace(/[^a-z]+/g, '').substr(2, 10)}
|
2019-03-23 01:42:57 +00:00
|
|
|
|
|
|
|
export function msgOp(msg: any): UserOperation {
|
|
|
|
let opStr: string = msg.op;
|
|
|
|
return UserOperation[opStr];
|
|
|
|
}
|
2019-03-27 19:54:55 +00:00
|
|
|
|
2019-08-31 00:40:59 +00:00
|
|
|
export const md = new markdown_it({
|
2019-08-22 19:09:17 +00:00
|
|
|
html: false,
|
2019-03-30 07:11:44 +00:00
|
|
|
linkify: true,
|
|
|
|
typographer: true
|
2019-04-29 17:16:43 +00:00
|
|
|
}).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';
|
|
|
|
}
|
|
|
|
}
|
2019-09-02 22:55:50 +00:00
|
|
|
}).use(markdownitEmoji, {
|
2019-09-04 22:22:31 +00:00
|
|
|
defs: objectFlip(emojiShortName)
|
2019-09-02 22:55:50 +00:00
|
|
|
});
|
2019-03-30 07:11:44 +00:00
|
|
|
|
2019-08-31 16:40:42 +00:00
|
|
|
md.renderer.rules.emoji = function(token, idx) {
|
|
|
|
return twemoji.parse(token[idx].content);
|
|
|
|
};
|
|
|
|
|
2019-03-30 06:08:02 +00:00
|
|
|
export function hotRank(comment: Comment): number {
|
|
|
|
// Rank = ScaleFactor * sign(Score) * log(1 + abs(Score)) / (Time + 2)^Gravity
|
|
|
|
|
|
|
|
let date: Date = new Date(comment.published + 'Z'); // Add Z to convert from UTC date
|
|
|
|
let now: Date = new Date();
|
|
|
|
let hoursElapsed: number = (now.getTime() - date.getTime()) / 36e5;
|
|
|
|
|
2019-04-21 17:15:40 +00:00
|
|
|
let rank = (10000 * Math.log10(Math.max(1, 3 + comment.score))) / Math.pow(hoursElapsed + 2, 1.8);
|
2019-03-30 06:08:02 +00:00
|
|
|
|
|
|
|
// console.log(`Comment: ${comment.content}\nRank: ${rank}\nScore: ${comment.score}\nHours: ${hoursElapsed}`);
|
|
|
|
|
|
|
|
return rank;
|
|
|
|
}
|
2019-03-30 07:11:44 +00:00
|
|
|
|
|
|
|
export function mdToHtml(text: string) {
|
|
|
|
return {__html: md.render(text)};
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
export function getUnixTime(text: string): number {
|
|
|
|
return text ? new Date(text).getTime()/1000 : undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function addTypeInfo<T>(arr: Array<T>, name: string): Array<{type_: string, data: T}> {
|
|
|
|
return arr.map(e => {return {type_: name, data: e}});
|
|
|
|
}
|
2019-04-17 18:30:13 +00:00
|
|
|
|
2019-09-09 19:58:04 +00:00
|
|
|
export function canMod(user: User, modIds: Array<number>, creator_id: number, onSelf: boolean = false): boolean {
|
2019-04-20 04:06:25 +00:00
|
|
|
// 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 {
|
2019-09-09 19:58:04 +00:00
|
|
|
// onSelf +1 on mod actions not for yourself, IE ban, remove, etc
|
|
|
|
modIds = modIds.slice(0, yourIndex+(onSelf ? 0 : 1));
|
2019-04-20 04:06:25 +00:00
|
|
|
return !modIds.includes(creator_id);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isMod(modIds: Array<number>, creator_id: number): boolean {
|
|
|
|
return modIds.includes(creator_id);
|
|
|
|
}
|
|
|
|
|
2019-04-24 16:28:20 +00:00
|
|
|
|
|
|
|
var imageRegex = new RegExp(`(http)?s?:?(\/\/[^"']*\.(?:png|jpg|jpeg|gif|png|svg))`);
|
2019-09-08 03:42:01 +00:00
|
|
|
var videoRegex = new RegExp(`(http)?s?:?(\/\/[^"']*\.(?:mp4))`);
|
2019-04-24 16:28:20 +00:00
|
|
|
|
|
|
|
export function isImage(url: string) {
|
|
|
|
return imageRegex.test(url);
|
|
|
|
}
|
|
|
|
|
2019-09-08 03:42:01 +00:00
|
|
|
export function isVideo(url: string) {
|
|
|
|
return videoRegex.test(url);
|
|
|
|
}
|
|
|
|
|
2019-08-17 01:46:39 +00:00
|
|
|
export function validURL(str: string) {
|
|
|
|
var pattern = new RegExp('^(https?:\\/\\/)?'+ // protocol
|
|
|
|
'((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|'+ // domain name
|
|
|
|
'((\\d{1,3}\\.){3}\\d{1,3}))'+ // OR ip (v4) address
|
|
|
|
'(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*'+ // port and path
|
|
|
|
'(\\?[;&a-z\\d%_.~+=-]*)?'+ // query string
|
|
|
|
'(\\#[-a-z\\d_]*)?$','i'); // fragment locator
|
|
|
|
return !!pattern.test(str);
|
|
|
|
}
|
|
|
|
|
2019-04-29 00:19:04 +00:00
|
|
|
export function capitalizeFirstLetter(str: string): string {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function routeSortTypeToEnum(sort: string): SortType {
|
|
|
|
if (sort == 'new') {
|
|
|
|
return SortType.New;
|
|
|
|
} else if (sort == 'hot') {
|
|
|
|
return SortType.Hot;
|
|
|
|
} else if (sort == 'topday') {
|
|
|
|
return SortType.TopDay;
|
|
|
|
} else if (sort == 'topweek') {
|
|
|
|
return SortType.TopWeek;
|
|
|
|
} else if (sort == 'topmonth') {
|
|
|
|
return SortType.TopMonth;
|
|
|
|
} else if (sort == 'topall') {
|
|
|
|
return SortType.TopAll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function routeListingTypeToEnum(type: string): ListingType {
|
|
|
|
return ListingType[capitalizeFirstLetter(type)];
|
|
|
|
}
|
|
|
|
|
2019-09-06 01:34:10 +00:00
|
|
|
export function routeSearchTypeToEnum(type: string): SearchType {
|
|
|
|
return SearchType[capitalizeFirstLetter(type)];
|
|
|
|
}
|
|
|
|
|
2019-04-30 14:45:50 +00:00
|
|
|
export async function getPageTitle(url: string) {
|
|
|
|
let res = await fetch(`https://textance.herokuapp.com/title/${url}`);
|
|
|
|
let data = await res.text();
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2019-08-03 20:26:20 +00:00
|
|
|
export function debounce(func: any, wait: number = 500, 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: number;
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
}
|
2019-08-10 00:14:43 +00:00
|
|
|
|
2019-08-17 17:22:38 +00:00
|
|
|
export function getLanguage(): string {
|
2019-08-10 00:14:43 +00:00
|
|
|
return (navigator.language || navigator.userLanguage);
|
|
|
|
}
|
2019-08-17 17:22:38 +00:00
|
|
|
|
2019-09-04 22:22:31 +00:00
|
|
|
export function objectFlip(obj: any) {
|
|
|
|
const ret = {};
|
|
|
|
Object.keys(obj).forEach((key) => {
|
|
|
|
ret[obj[key]] = key;
|
|
|
|
});
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-08-17 17:22:38 +00:00
|
|
|
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';
|
2019-08-17 20:32:59 +00:00
|
|
|
} else if (lang.startsWith('de')) {
|
|
|
|
lang = 'de';
|
2019-08-19 21:29:28 +00:00
|
|
|
} else if (lang.startsWith('ru')) {
|
|
|
|
lang = 'ru';
|
2019-08-23 01:34:24 +00:00
|
|
|
} else if (lang.startsWith('es')) {
|
|
|
|
lang = 'es';
|
2019-08-26 21:42:53 +00:00
|
|
|
} else if (lang.startsWith('eo')) {
|
|
|
|
lang = 'eo';
|
2019-08-29 18:20:21 +00:00
|
|
|
} else if (lang.startsWith('nl')) {
|
|
|
|
lang = 'nl';
|
2019-08-17 17:22:38 +00:00
|
|
|
} else {
|
|
|
|
lang = 'en';
|
|
|
|
}
|
|
|
|
return lang;
|
|
|
|
}
|