import Axios, {AxiosError, AxiosResponse} from 'axios'; import {InlineDisplayMode} from '../bbcode/interfaces'; interface Dictionary { [key: string]: T | undefined; } type flashMessageType = 'info' | 'success' | 'warning' | 'danger'; type flashMessageImpl = (type: flashMessageType, message: string) => void; let flashImpl: flashMessageImpl = (type: flashMessageType, message: string) => { console.log(`${type}: ${message}`); }; export function setFlashMessageImplementation(impl: flashMessageImpl): void { flashImpl = impl; } export function avatarURL(name: string): string { const uregex = /^[a-zA-Z0-9_\-\s]+$/; if(!uregex.test(name)) return '#'; return `${staticDomain}images/avatar/${name.toLowerCase()}.png`; } export function characterURL(name: string): string { const uregex = /^[a-zA-Z0-9_\-\s]+$/; if(!uregex.test(name)) return '#'; return `${siteDomain}c/${name}`; } export function groupObjectBy(obj: Dictionary, key: K): Dictionary { const newObject: Dictionary = {}; for(const objkey in obj) { if(!(objkey in obj)) continue; const realItem = obj[objkey]; const newKey = realItem[key]; if(newObject[newKey] === undefined) newObject[newKey] = []; newObject[newKey]!.push(realItem); } return newObject; } export function groupArrayBy(arr: T[], key: K): Dictionary { const newObject: Dictionary = {}; arr.map((item) => { const newKey = item[key]; if(newObject[newKey] === undefined) newObject[newKey] = []; newObject[newKey]!.push(item); }); return newObject; } export function filterOut(arr: ReadonlyArray, field: K, value: V): T[] { return arr.filter((item) => item[field] !== value); } //tslint:disable-next-line:no-any export function isJSONError(error: any): error is Error & {response: AxiosResponse<{[key: string]: object | string | number}>} { return (error).response !== undefined && typeof (error).response!.data === 'object'; } export function ajaxError(error: any, prefix: string, showFlashMessage: boolean = true): void { //tslint:disable-line:no-any let message: string | undefined; if(error instanceof Error) { if(Axios.isCancel(error)) return; if(isJSONError(error)) { const data = <{error?: string | string[]}>error.response.data; if(typeof (data.error) === 'string') message = data.error; else if(typeof (data.error) === 'object' && data.error.length > 0) message = data.error[0]; } if(message === undefined) message = (error).response !== undefined ? (error).response.statusText : error.name; } else message = error; if(showFlashMessage) flashError(`[ERROR] ${prefix}: ${message}`); } export function flashError(message: string): void { flashMessage('danger', message); } export function flashSuccess(message: string): void { flashMessage('success', message); } export function flashMessage(type: flashMessageType, message: string): void { flashImpl(type, message); } export let siteDomain = ''; export let staticDomain = ''; interface Settings { animatedIcons: boolean inlineDisplayMode: InlineDisplayMode defaultCharacter: number fuzzyDates: boolean } export let Settings: Settings = { animatedIcons: false, inlineDisplayMode: InlineDisplayMode.DISPLAY_ALL, defaultCharacter: -1, fuzzyDates: true }; export function setDomains(site: string, stat: string): void { siteDomain = site; staticDomain = stat; } export function copySettings(settings: Settings): void { Settings.animatedIcons = settings.animatedIcons; Settings.inlineDisplayMode = settings.inlineDisplayMode; Settings.defaultCharacter = settings.defaultCharacter; Settings.fuzzyDates = settings.fuzzyDates; }