2017-11-13 01:23:39 -05:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
export const DEBUG = localStorage.ffzDebugMode === 'true' && document.body.classList.contains('ffz-dev');
|
|
|
|
export const SERVER = DEBUG ? '//localhost:8000' : 'https://cdn.frankerfacez.com';
|
|
|
|
|
2017-11-15 21:59:13 -05:00
|
|
|
export const CLIENT_ID = 'a3bc9znoz6vi8ozsoca0inlcr4fcvkl';
|
2017-11-13 01:23:39 -05:00
|
|
|
export const API_SERVER = '//api.frankerfacez.com';
|
|
|
|
|
2018-04-06 21:12:12 -04:00
|
|
|
export const TWITCH_EMOTE_BASE = '//static-cdn.jtvnw.net/emoticons/v1/';
|
|
|
|
|
|
|
|
export const KNOWN_CODES = {
|
|
|
|
'#-?[\\\\/]': '#-/',
|
|
|
|
':-?(?:7|L)': ':-7',
|
|
|
|
'\\<\\;\\]': '<]',
|
|
|
|
'\\:-?(S|s)': ':-S',
|
|
|
|
'\\:-?\\\\': ':-\\',
|
|
|
|
'\\:\\>\\;': ':>',
|
|
|
|
'B-?\\)': 'B-)',
|
|
|
|
'\\:-?[z|Z|\\|]': ':-Z',
|
|
|
|
'\\:-?\\)': ':-)',
|
|
|
|
'\\:-?\\(': ':-(',
|
|
|
|
'\\:-?(p|P)': ':-P',
|
|
|
|
'\\;-?(p|P)': ';-P',
|
|
|
|
'\\<\\;3': '<3',
|
|
|
|
'\\:-?[\\\\/]': ':-/',
|
|
|
|
'\\;-?\\)': ';-)',
|
|
|
|
'R-?\\)': 'R-)',
|
|
|
|
'[oO](_|\\.)[oO]': 'O.o',
|
|
|
|
'[o|O](_|\\.)[o|O]': 'O.o',
|
|
|
|
'\\:-?D': ':-D',
|
|
|
|
'\\:-?(o|O)': ':-O',
|
|
|
|
'\\>\\;\\(': '>(',
|
|
|
|
'Gr(a|e)yFace': 'GrayFace'
|
|
|
|
};
|
|
|
|
|
2017-11-13 01:23:39 -05:00
|
|
|
export const WS_CLUSTERS = {
|
|
|
|
Production: [
|
|
|
|
['wss://catbag.frankerfacez.com/', 0.25],
|
|
|
|
['wss://andknuckles.frankerfacez.com/', 1],
|
2017-11-14 04:11:43 -05:00
|
|
|
['wss://tuturu.frankerfacez.com/', 1],
|
|
|
|
['wss://lilz.frankerfacez.com/', 1]
|
2017-11-13 01:23:39 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
Development: [
|
|
|
|
['wss://127.0.0.1:8003/', 1]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
export const IS_OSX = navigator.platform ? navigator.platform.indexOf('Mac') !== -1 : /OS X/.test(navigator.userAgent);
|
|
|
|
export const IS_WIN = navigator.platform ? navigator.platform.indexOf('Win') !== -1 : /Windows/.test(navigator.userAgent);
|
2017-11-28 02:03:59 -05:00
|
|
|
export const IS_WEBKIT = navigator.userAgent.indexOf('AppleWebKit/') !== -1 && navigator.userAgent.indexOf('Edge/') === -1;
|
|
|
|
|
|
|
|
export const WEBKIT_CSS = IS_WEBKIT ? '-webkit-' : '';
|