fchat-rising/electron/common.ts

50 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-01-06 16:14:21 +00:00
import * as electron from 'electron';
2017-09-02 01:50:31 +00:00
import * as fs from 'fs';
import * as path from 'path';
export const defaultHost = 'wss://chat.f-list.net:9799';
2018-01-06 16:14:21 +00:00
export class GeneralSettings {
account = '';
closeToTray = true;
profileViewer = true;
host = defaultHost;
2018-01-06 16:14:21 +00:00
logDirectory = path.join(electron.app.getPath('userData'), 'data');
2018-03-28 13:51:05 +00:00
spellcheckLang: string | undefined = 'en_GB';
2018-01-06 16:14:21 +00:00
theme = 'default';
version = electron.app.getVersion();
beta = false;
2018-01-06 16:14:21 +00:00
}
2017-09-02 01:50:31 +00:00
export function mkdir(dir: string): void {
try {
fs.mkdirSync(dir);
} catch(e) {
if(!(e instanceof Error)) throw e;
switch((<Error & {code: string}>e).code) {
case 'ENOENT':
2017-10-16 23:58:57 +00:00
const dirname = path.dirname(dir);
if(dirname === dir) throw e;
mkdir(dirname);
2017-09-02 01:50:31 +00:00
mkdir(dir);
break;
default:
try {
const stat = fs.statSync(dir);
if(stat.isDirectory()) return;
} catch(e) {
console.log(e);
}
throw e;
}
}
}
//tslint:disable
const Module = require('module');
2018-01-06 16:14:21 +00:00
2017-09-02 01:50:31 +00:00
export function nativeRequire<T>(module: string): T {
return Module.prototype.require.call({paths: Module._nodeModulePaths(__dirname)}, module);
}
2018-01-06 16:14:21 +00:00
2017-09-02 01:50:31 +00:00
//tslint:enable