2019-04-29 00:19:04 +00:00
|
|
|
import { UserOperation, Comment, User, SortType, ListingType } from './interfaces';
|
2019-03-30 07:11:44 +00:00
|
|
|
import * as markdown_it from 'markdown-it';
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-04-06 05:29:20 +00:00
|
|
|
export let repoUrl = 'https://github.com/dessalines/lemmy';
|
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-03-30 07:11:44 +00:00
|
|
|
var md = new markdown_it({
|
|
|
|
html: true,
|
|
|
|
linkify: true,
|
|
|
|
typographer: true
|
|
|
|
});
|
|
|
|
|
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-04-20 04:06:25 +00:00
|
|
|
export function canMod(user: User, modIds: Array<number>, creator_id: number): 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 {
|
|
|
|
modIds = modIds.slice(0, yourIndex+1); // +1 cause you cant mod yourself
|
|
|
|
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))`);
|
|
|
|
|
|
|
|
export function isImage(url: string) {
|
|
|
|
return imageRegex.test(url);
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
export let fetchLimit: number = 20;
|
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)];
|
|
|
|
}
|
|
|
|
|